/* ===== Variables ===== */
:root {
  --red: #961519;
  --red-dark: #6e0f12;
  --red-light: #f5d0d1;
  --cream: #FFF8EF;
  --cream-2: #F6E8D8;
  --pasture: #1e5c29;
  --charcoal: #171311;
  --hide: #4A2A1C;
  --bone: #E8D8C8;
  --gray-light: #FAF4EC;
  --gray: #E6D8CA;
  --text: #333333;
  --text-light: #6b6b6b;
  --white: #FFFFFF;
  --green-wa: #25D366;
  --shadow: 0 8px 28px rgba(48, 24, 17, 0.08);
  --radius: 8px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--cream); }
h1, h2, h3, .nav-logo, .modal-name { font-family: 'Montserrat', system-ui, sans-serif; font-weight: 700; letter-spacing: -0.3px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
  background: var(--white); border-bottom: 1px solid var(--gray);
  box-shadow: var(--shadow);
}
.nav-logo { font-size: 1.4rem; font-weight: 700; color: var(--red); letter-spacing: -0.5px; display: flex; align-items: center; gap: .5rem; }
.nav-logo-img { height: 36px; width: auto; object-fit: contain; }
.footer-logo-img { height: 32px; width: auto; object-fit: contain; vertical-align: middle; margin-right: .4rem; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; margin-left: auto; order: 2; }
.nav-links a { font-weight: 500; color: var(--text-light); transition: color .2s; }
.nav-links a:hover { color: var(--red); }
.cart-link { position: relative; display: flex; align-items: center; gap: .45rem; }
.cart-badge {
  background: var(--red); color: var(--white);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.navbar-cart-fixed {
  display: flex; align-items: center; position: relative; order: 3;
  min-height: 42px; color: var(--red); margin-left: 1rem; padding: .35rem .85rem .35rem .45rem;
  background: #fff7f2; border: 1px solid #ead2c4; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(150, 21, 25, .08);
  transition: color .2s, background .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.navbar-cart-fixed:hover,
.navbar-cart-fixed:focus-visible {
  color: var(--red-dark); background: var(--white); border-color: var(--red-light);
  box-shadow: 0 8px 22px rgba(150, 21, 25, .16); transform: translateY(-1px);
  outline: none;
}
.cart-icon {
  width: 32px; height: 32px; display: grid; place-items: center;
  background: var(--red); color: var(--white); border-radius: 50%;
}
.cart-label {
  font-weight: 800; font-size: .92rem; color: var(--charcoal);
}
.navbar-cart-fixed .cart-badge {
  position: absolute; top: -7px; right: -7px;
  width: 22px; height: 22px; font-size: .72rem;
  border: 2px solid var(--white); box-shadow: 0 3px 8px rgba(0,0,0,.18);
}
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--text); padding: .2rem .4rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block; padding: .6rem 1.4rem;
  border-radius: 6px; font-weight: 600; font-size: .9rem;
  cursor: pointer; border: none; transition: background .2s, transform .1s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-hero {
  background: var(--white); color: var(--red);
  font-size: 1.05rem; padding: .85rem 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-hero:hover { background: var(--red-light); }
.btn-hero-wa { background: var(--green-wa); color: var(--white); font-size: 1.05rem; padding: .85rem 2rem; }
.btn-hero-wa:hover { background: #1da851; }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red-light); }
.btn-add { background: var(--red); color: var(--white); padding: .4rem 1rem; font-size: .85rem; white-space: nowrap; }
.btn-add:hover { background: var(--red-dark); }
.btn-whatsapp { background: var(--green-wa); color: var(--white); font-size: 1rem; padding: .8rem 2rem; }
.btn-whatsapp:hover { background: #1da851; }
.btn-card { background: #1a1a2e; color: var(--white); font-size: 1rem; padding: .8rem 2rem; width: 100%; }
.btn-card:hover { background: #16213e; }
.payment-methods { font-size: .8rem; color: var(--text-light); margin-top: .5rem; text-align: right; }

/* ===== Container ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== Hero ===== */
.hero {
  background: #2a0608;
  color: var(--white); padding: 6rem 2rem;
  display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden;
}

/* Video de fondo */
.hero-video {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  animation: videoFadeIn 1.4s ease forwards;
}
@keyframes videoFadeIn {
  to { opacity: 1; }
}

/* Overlay con tinte oscuro-rojizo de marca */
.hero-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(
    160deg,
    rgba(74, 11, 13, 0.72) 0%,
    rgba(0, 0, 0, 0.58) 100%
  );
  z-index: 1;
}

/* En móvil oscurecer un poco más para legibilidad */
@media (max-width: 600px) {
  .hero-overlay {
    background: linear-gradient(
      160deg,
      rgba(74, 11, 13, 0.80) 0%,
      rgba(0, 0, 0, 0.68) 100%
    );
  }
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.05) 0%, transparent 70%);
  z-index: 2;
}
.hero-tag {
  display: inline-block; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3); border-radius: 20px;
  padding: .35rem 1rem; font-size: .85rem; font-weight: 600;
  margin-bottom: 1.5rem; letter-spacing: .5px;
}
.hero-content h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.2rem; }
.hero-content h1 em { font-style: italic; color: #ffd6cc; }
.hero-content p { font-size: 1.1rem; opacity: .88; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* Stats bar */
.stats-bar { background: var(--red-dark); color: var(--white); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-item { padding: 1rem; }
.stat-n { font-family: 'Montserrat', system-ui, sans-serif; font-size: 2.8rem; font-weight: 700; }
.stat-unit { font-size: 1.6rem; font-weight: 700; }
.stat-lbl { display: block; font-size: .8rem; opacity: .8; margin-top: .3rem; text-transform: uppercase; letter-spacing: .5px; }

/* ===== Propuesta de valor ===== */
.valor-section { background: var(--white); border-bottom: 1px solid var(--gray); padding: 1.5rem 0; }
.valor-banners { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.valor-banner {
  display: flex; align-items: center; gap: .8rem;
  padding: 1rem 1.5rem; border-radius: var(--radius);
  background: var(--gray-light); flex: 1; min-width: 200px; max-width: 260px;
}
.vb-icon { font-size: 2rem; flex-shrink: 0; }
.valor-banner strong { display: block; font-size: .95rem; color: var(--text); margin-bottom: .2rem; }
.valor-banner p { font-size: .8rem; color: var(--text-light); line-height: 1.4; margin: 0; }

/* ===== Featured / Catalog ===== */
.featured { padding: 4rem 0; background: var(--gray-light); }
.section-title, .page-title {
  font-size: 1.8rem; font-weight: 700; color: var(--text);
  margin-bottom: 2rem; text-align: center;
}
.page-title { margin-top: 2rem; text-align: left; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.product-emoji {
  background: var(--gray-light); text-align: center;
  font-size: 4rem; padding: 1.5rem;
}
.product-img { width: 100%; height: 200px; object-fit: cover; }
.product-info { padding: 1.2rem; display: flex; flex-direction: column; flex: 1; }
.product-category { font-size: .75rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .5px; }
.product-name { font-size: 1.1rem; font-weight: 700; margin: .3rem 0 .5rem; }
.product-desc { font-size: .85rem; color: var(--text-light); flex: 1; margin-bottom: 1rem; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--red); }

/* Selector cantidad en tarjeta */
.add-form { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
#modal-form.add-form { flex-direction: column; align-items: stretch; gap: .6rem; }
.qty-input {
  width: 52px; padding: .35rem .4rem; border: 1px solid var(--gray);
  border-radius: 6px; font-size: .9rem; text-align: center; color: var(--text);
}
.qty-input:focus { outline: none; border-color: var(--red); }
.qty-select {
  min-width: 92px; padding: .5rem .7rem; border: 1px solid var(--gray);
  border-radius: 8px; font-size: .88rem; font-weight: 700; color: var(--text);
  background: #fff; cursor: pointer;
}
.qty-select:focus { outline: none; border-color: var(--red); }
.qty-select-lg { min-width: 110px; padding: .58rem .75rem; }

/* Observaciones del corte — modal */
.obs-input {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid var(--gray); border-radius: 8px;
  padding: .55rem .75rem; font-size: .88rem; color: var(--text);
  resize: none; font-family: inherit; line-height: 1.4;
  transition: border-color .18s;
}
.obs-input:focus { outline: none; border-color: var(--red); }
.obs-input::placeholder { color: #aaa; }

/* Nota del corte — carrito */
.nota-item-form { margin: .25rem 0 .1rem; }
.nota-item-input {
  width: 100%; box-sizing: border-box;
  border: 1px solid rgba(255,248,239,.22); border-radius: 8px;
  padding: .42rem .6rem; font-size: .82rem; color: var(--cream);
  font-family: inherit; background: rgba(255,248,239,.08);
  transition: border-color .18s, background .18s;
}
.nota-item-input:focus {
  outline: none;
  border-color: rgba(255,248,239,.55);
  background: rgba(255,248,239,.14);
}
.nota-item-input::placeholder { color: rgba(255,248,239,.45); font-style: italic; }

/* Stepper +/- */
.qty-control {
  display: inline-flex; align-items: center; gap: .45rem;
  flex: 0 0 auto;
}
.qty-stepper {
  display: inline-flex; align-items: center; height: 38px;
  border: 1.5px solid var(--gray); border-radius: 8px;
  overflow: hidden; background: var(--white);
}
.qty-stepper .qty-btn {
  background: var(--white); border: none; width: 32px; height: 100%;
  font-size: 1.05rem; font-weight: 800; cursor: pointer; color: var(--red);
  transition: background .15s; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; line-height: 1;
}
.qty-stepper .qty-btn:hover { background: var(--gray-light); }
.qty-stepper .qty-btn:active { background: var(--red-light); }
.qty-stepper .qty-btn:focus-visible { outline: 2px solid rgba(158,47,36,.25); outline-offset: -2px; }
.qty-stepper .qty-num {
  width: 36px; height: 100%; border: none;
  border-left: 1.5px solid var(--gray); border-right: 1.5px solid var(--gray);
  padding: 0; font-size: .9rem; font-weight: 800; text-align: center; color: var(--text);
  background: #fff; -moz-appearance: textfield;
}
.qty-stepper .qty-num:focus { outline: none; }
.qty-stepper .qty-num::-webkit-outer-spin-button,
.qty-stepper .qty-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-weight {
  min-width: 46px; color: var(--text-light);
  font-size: .82rem; font-weight: 700; white-space: nowrap;
}
.qty-control-lg .qty-stepper { height: 42px; }
.qty-control-lg .qty-stepper .qty-btn { width: 38px; }
.qty-control-lg .qty-stepper .qty-num { width: 42px; font-size: .98rem; }
.qty-control-lg .qty-weight { color: var(--text); font-size: .9rem; }

/* Card hover overlay */
.card-img-wrap { position: relative; overflow: hidden; }
.card-overlay {
  position: absolute; inset: 0; background: rgba(192,57,43,.7);
  color: var(--white); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.product-card:hover .card-overlay { opacity: 1; }

/* Categorías rápidas */
.quick-cats { padding: 2rem 0; background: var(--white); }
.quick-grid { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.quick-card {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  background: var(--gray-light); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; font-weight: 600; font-size: .9rem;
  color: var(--text); transition: all .2s; min-width: 90px;
  border: 2px solid transparent;
}
.quick-card:hover { border-color: var(--red); color: var(--red); background: var(--red-light); transform: translateY(-3px); }
.quick-card span:first-child { font-size: 1.8rem; }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 199;
  background: var(--red); color: var(--white);
  width: 40px; height: 40px; border-radius: 50%; border: none;
  font-size: 1.1rem; cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s; box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

.see-all { text-align: center; margin-top: 2.5rem; }

/* ===== Search bar ===== */
.search-bar {
  display: flex; align-items: center; gap: .6rem;
  background: var(--gray-light); border: 1px solid var(--gray);
  border-radius: 8px; padding: .6rem 1rem; margin-bottom: 1.5rem;
}
.search-icon { font-size: 1.1rem; }
.search-bar input {
  border: none; background: transparent; font-size: .95rem;
  flex: 1; color: var(--text);
}
.search-bar input:focus { outline: none; }

/* ===== Category Tabs ===== */
.catalog-container { padding-top: 2rem; padding-bottom: 3rem; }
.category-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tab {
  padding: .45rem 1.1rem; border-radius: 20px;
  border: 2px solid var(--gray); color: var(--text-light);
  font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .2s;
}
.tab:hover { border-color: var(--red); color: var(--red); }
.tab.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ===== Cart ===== */
.cart-container { padding: 2rem 1.5rem 4rem; max-width: 860px; }
.cart-table-wrapper { overflow-x: auto; margin-bottom: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); }
.cart-table th {
  background: var(--gray-light); padding: .9rem 1rem;
  text-align: left; font-size: .85rem; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: .5px;
}
.cart-table td { padding: 1rem; border-bottom: 1px solid var(--gray); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-product { display: flex; align-items: center; gap: .7rem; }
.cart-emoji { font-size: 1.8rem; }
.cart-qty { display: flex; align-items: center; gap: .5rem; }
.qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--gray); background: var(--white);
  font-size: 1.1rem; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { border-color: var(--red); color: var(--red); }
.qty-num { font-weight: 700; min-width: 24px; text-align: center; }
.cart-subtotal { font-weight: 700; color: var(--red); }
.remove-btn {
  background: none; border: none; color: var(--text-light);
  cursor: pointer; font-size: 1rem; transition: color .2s;
}
.remove-btn:hover { color: var(--red); }
.cart-summary { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.cart-total { font-size: 1.4rem; font-weight: 700; }
.cart-total strong { color: var(--red); }
.cart-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.clear-cart { margin-top: .5rem; }
.delivery-form { background: var(--gray-light); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; width: 100%; }
.delivery-form h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.delivery-fields { display: flex; flex-direction: column; gap: .8rem; }
.delivery-fields input { padding: .7rem 1rem; border: 1px solid var(--gray); border-radius: 6px; font-size: .95rem; width: 100%; }
.delivery-fields input:focus { outline: none; border-color: var(--red); }
.clear-btn {
  background: none; border: none; color: var(--text-light);
  cursor: pointer; font-size: .85rem; text-decoration: underline;
}
.clear-btn:hover { color: var(--red); }
.empty-cart { text-align: center; padding: 4rem 1rem; }
.empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.empty-cart p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 1.1rem; }

/* ===== Nosotros ===== */
.nosotros-container { padding: 3rem 1.5rem 5rem; max-width: 960px; }
.nosotros-hero { text-align: center; margin-bottom: 2.5rem; }
.nosotros-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 1rem; color: var(--text); }
.nosotros-intro { font-size: 1.1rem; color: var(--text-light); line-height: 1.8; max-width: 700px; margin: 0 auto; }

.nosotros-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem; margin-bottom: 3rem;
}
.stat-card { background: var(--red); color: var(--white); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.stat-num { display: block; font-size: 2.2rem; font-weight: 800; }
.stat-label { font-size: .85rem; opacity: .85; }

.nosotros-origen { margin-bottom: 3rem; }
.origen-content { display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.origen-text { flex: 1; min-width: 260px; }
.origen-text h2 { font-size: 1.5rem; font-weight: 700; color: var(--red); margin-bottom: 1rem; }
.origen-text p { line-height: 1.8; font-size: 1.05rem; color: var(--text-light); }
.origen-badges { display: flex; flex-direction: column; gap: .8rem; }
.origen-badge { display: flex; align-items: center; gap: .8rem; background: var(--gray-light); border-radius: 8px; padding: .8rem 1.2rem; font-weight: 600; }
.origen-badge span { font-size: 1.6rem; }

.nosotros-valores { margin-bottom: 3rem; }
.nosotros-valores h2 { font-size: 1.5rem; font-weight: 700; color: var(--red); margin-bottom: 1.5rem; }
.valores-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.valor-card { background: var(--gray-light); border-radius: var(--radius); padding: 1.8rem; text-align: center; border-top: 4px solid var(--red); }
.valor-icon-box { font-size: 2.5rem; margin-bottom: 1rem; }
.valor-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.valor-card p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

.nosotros-mision { margin-bottom: 3rem; }
.mision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mision-card { background: var(--red); color: var(--white); border-radius: var(--radius); padding: 2rem; }
.mision-icon { font-size: 2rem; margin-bottom: .8rem; }
.mision-card h2 { font-size: 1.3rem; margin-bottom: 1rem; }
.mision-card p { line-height: 1.8; opacity: .92; }

.nosotros-cta { text-align: center; background: var(--gray-light); border-radius: var(--radius); padding: 3rem 2rem; }
.nosotros-cta h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: .8rem; }
.nosotros-cta p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 1.05rem; }

/* ===== Modal producto ===== */
.product-card { cursor: pointer; }
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.6); align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius);
  max-width: 780px; width: 100%; max-height: 90vh;
  overflow-y: auto; position: relative;
  display: flex; flex-direction: row;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalIn .2s ease;
}
@keyframes modalIn { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close {
  position: absolute; top: .8rem; right: .8rem;
  background: var(--gray-light); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; z-index: 10;
  transition: background .2s;
}
.modal-close:hover { background: var(--gray); }
.modal-img-wrap { width: 320px; flex-shrink: 0; }
.modal-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius) 0 0 var(--radius); min-height: 320px; }
.modal-emoji {
  width: 100%; min-height: 280px; background: var(--gray-light);
  font-size: 6rem; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius) 0 0 var(--radius);
}
.modal-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; gap: .8rem; }
.modal-name { font-size: 1.5rem; font-weight: 800; }
.modal-desc { color: var(--text-light); line-height: 1.7; font-size: .95rem; flex: 1; }
.modal-footer { display: flex; flex-direction: column; gap: .8rem; margin-top: auto; }
.modal-price { font-size: 1.6rem !important; }
.qty-input-lg { width: 64px; padding: .5rem; font-size: 1rem; }

@media (max-width: 600px) {
  .modal-box { flex-direction: column; }
  .modal-img-wrap { width: 100%; }
  .modal-img { min-height: 220px; border-radius: var(--radius) var(--radius) 0 0; }
  .modal-emoji { min-height: 180px; border-radius: var(--radius) var(--radius) 0 0; }
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  background: var(--green-wa); color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ===== Footer ===== */
.footer { background: var(--text); color: #aaa; padding: 3rem 2rem 1.5rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid #444;
}
.footer-logo { display: block; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: .8rem; }
.footer-col p { font-size: .9rem; line-height: 1.7; }
.footer-col strong { display: block; color: var(--white); margin-bottom: .8rem; font-size: .95rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .9rem; color: #aaa; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 1.5rem auto 0; text-align: center; font-size: .85rem; }
.footer-bottom strong { color: var(--white); }

/* ===== Cómo funciona ===== */
.how-section { padding: 4.5rem 0; background: var(--white); }
.how-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap; margin-top: 1rem;
}
.how-step {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center; flex: 1; min-width: 180px; max-width: 220px;
  border-top: 4px solid var(--red);
  transition: transform .2s, box-shadow .2s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.how-num {
  font-family: 'Montserrat', system-ui, sans-serif; font-size: 2.5rem; font-weight: 700;
  color: var(--red); opacity: .2; line-height: 1; margin-bottom: .5rem;
}
.how-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.how-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.how-step p { font-size: .85rem; color: var(--text-light); line-height: 1.5; }
.how-arrow {
  font-size: 1.8rem; color: var(--gray); align-self: center;
  padding: 0 .5rem; flex-shrink: 0;
}

/* ===== Combos ===== */
.combos-section { padding: 4rem 0; background: var(--white); }
.combos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.combo-card {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.combo-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), #e74c3c);
}
.combo-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.combo-badge-wrap { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: .9rem; }
.combo-badge {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #f39c12, #d35400);
  color: #fff; font-size: .68rem; font-weight: 800;
  padding: .28rem .7rem; border-radius: 20px;
  letter-spacing: .04em; text-transform: uppercase;
}
.combo-badge-soft {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.14);
}
.combo-emoji { font-size: 2.5rem; line-height: 1; }
.combo-name { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.combo-items { display: flex; flex-wrap: wrap; gap: .4rem; }
.combo-item-tag {
  background: #f4f4f5; color: #555;
  font-size: .72rem; font-weight: 600;
  padding: .2rem .55rem; border-radius: 20px;
}
.combo-desc { font-size: .85rem; color: var(--text-light); line-height: 1.5; }
.combo-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .5rem; }
.combo-price { font-size: 1.25rem; font-weight: 800; color: var(--red); }
.combo-savings { font-size: .72rem; color: #27ae60; font-weight: 600; }

/* ===== Testimonios ===== */
.testimonios { padding: 4.5rem 0; background: var(--gray-light); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1rem;
  border-bottom: 4px solid var(--red);
  transition: transform .2s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.testi-card > p { font-size: .95rem; color: var(--text-light); line-height: 1.7; flex: 1; font-style: italic; }
.testi-autor { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-autor strong { display: block; font-size: .95rem; color: var(--text); }
.testi-autor small { font-size: .8rem; color: var(--text-light); }

/* ===== Hero vendedor ===== */
.hero-sell { min-height: 92vh; padding: 5rem 2rem; }
.hero-pretag {
  display: inline-block; background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35); border-radius: 20px;
  padding: .38rem 1.1rem; font-size: .82rem; font-weight: 600;
  margin-bottom: 1.5rem; letter-spacing: .4px;
}
.hero-sub {
  font-size: 1rem; opacity: .9; margin-bottom: 2.2rem;
  letter-spacing: .3px;
}
.hero-trust {
  margin-top: 2rem; display: flex; gap: 1.5rem; flex-wrap: wrap;
  justify-content: center; font-size: .82rem; opacity: .8;
}

/* ===== Los más pedidos ===== */
.mas-pedidos { padding: 4rem 0; background: var(--gray-light); }
.section-title-sell {
  font-size: 1.9rem; font-weight: 800; color: var(--text);
  margin-bottom: .5rem; text-align: center; display: flex;
  align-items: center; justify-content: center; gap: .5rem;
}
.section-sub-sell { text-align: center; color: var(--text-light); font-size: .95rem; margin-bottom: 2rem; }
.fire-icon { font-size: 1.5rem; }

.pedidos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.pedido-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.pedido-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.13); }
.pedido-img-wrap { position: relative; height: 190px; overflow: hidden; background: var(--gray-light); display: flex; align-items: center; justify-content: center; }
.pedido-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pedido-info { padding: 1rem 1.1rem 1.1rem; display: flex; flex-direction: column; flex: 1; }
.pedido-name { font-size: 1.05rem; font-weight: 700; margin-bottom: .75rem; line-height: 1.3; }
.pedido-footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: auto; }
.pedido-price-block { display: flex; flex-direction: column; }
.pedido-desde { font-size: .68rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .4px; }
.pedido-price { font-size: 1.2rem; font-weight: 800; color: var(--red); line-height: 1.1; }
.pedido-unit { font-size: .7rem; color: var(--text-light); }
.pedido-form { display: flex; }

/* ===== Combos vendedor ===== */
.combos-sell { background: #1a0a08; }
.combos-sell .section-title-sell { color: var(--white); }
.combos-sell .section-sub-sell { color: rgba(255,255,255,.7); }
.combo-card-sell { border: 1px solid rgba(255,255,255,.08); }

/* ===== Diferencial ===== */
.diferencial-section { padding: 5rem 0; background: var(--white); }
.dif-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.dif-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--red); display: block; margin-bottom: .75rem; }
.dif-text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 1.8rem; line-height: 1.2; }
.dif-text h2 em { font-style: italic; color: var(--red); }
.dif-list { display: flex; flex-direction: column; gap: 1.4rem; }
.dif-list li { display: flex; gap: 1rem; align-items: flex-start; }
.dif-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: .1rem; }
.dif-list strong { display: block; font-size: 1rem; margin-bottom: .25rem; color: var(--text); }
.dif-list p { font-size: .88rem; color: var(--text-light); line-height: 1.55; margin: 0; }
.dif-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.dif-stat {
  background: var(--gray-light); border-radius: 14px; padding: 1.5rem;
  text-align: center;
}
.dif-stat strong { display: block; font-size: 2.4rem; font-weight: 800; color: var(--red); font-family: 'Montserrat', system-ui, sans-serif; }
.dif-stat span { font-size: .8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .04em; }

/* ===== Cierre ===== */
.cierre-section { padding: 5rem 0; background: var(--gray-light); }
.cierre-box {
  background: linear-gradient(135deg, #4a0b0d 0%, var(--red-dark) 40%, var(--red) 100%);
  border-radius: 20px; padding: 4rem 2rem; text-align: center; color: var(--white);
  max-width: 680px; margin: 0 auto;
}
.cierre-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.cierre-box h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.cierre-box p { font-size: 1.05rem; opacity: .88; margin-bottom: 2rem; line-height: 1.6; }
.btn-cierre-wa {
  display: inline-block; background: var(--green-wa); color: var(--white);
  font-size: 1.15rem; font-weight: 800; letter-spacing: .04em;
  padding: 1.1rem 2.8rem; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-cierre-wa:hover { background: #1da851; transform: translateY(-2px); }
.cierre-sub { font-size: .82rem; opacity: .7; margin-top: 1.5rem; margin-bottom: 0; }

/* ===== Responsive nuevas secciones ===== */
@media (max-width: 768px) {
  .hero-sell { min-height: 80vh; }
  .pedidos-grid { grid-template-columns: 1fr 1fr; }
  .dif-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .dif-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pedidos-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: .6rem; }
}

/* ===== CTA Final ===== */
.cta-section { padding: 5rem 0; background: var(--white); }
.cta-box {
  background: linear-gradient(135deg, #4a0b0d 0%, var(--red-dark) 40%, var(--red) 100%);
  color: var(--white); border-radius: 16px;
  padding: 4rem 2rem; text-align: center;
  box-shadow: 0 8px 40px rgba(192,57,43,.3);
}
.cta-box h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; }
.cta-box p { font-size: 1.05rem; opacity: .88; margin-bottom: 2.5rem; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .mision-grid { grid-template-columns: 1fr; }
  .origen-content { flex-direction: column; }
}

@media (max-width: 640px) {
  .navbar { padding: 0 1rem; flex-wrap: wrap; height: auto; min-height: 56px; align-items: center; }
  .nav-logo { order: 1; padding: .8rem 0; }
  .navbar-cart-fixed { order: 2; margin-left: auto; min-height: 40px; padding: .28rem .7rem .28rem .38rem; }
  .cart-icon { width: 30px; height: 30px; }
  .cart-label { font-size: .86rem; }
  .nav-toggle { display: block; order: 3; margin-left: .35rem; }
  .nav-links {
    display: none; flex-direction: column; width: 100%;
    gap: 0; padding: .5rem 0; border-top: 1px solid var(--gray);
    order: 4; margin-left: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: .7rem 1rem; display: block; }

  .hero { padding: 3rem 1rem; }
  .valor-banners { flex-direction: column; align-items: stretch; }
  .valor-banner { max-width: 100%; }
  .products-grid { grid-template-columns: 1fr; }
  .cart-actions { flex-direction: column; width: 100%; }
  .cart-summary { align-items: stretch; }
  .btn-whatsapp, .btn-outline { text-align: center; }
  .nosotros-stats { grid-template-columns: 1fr 1fr; }
  .add-form { flex-wrap: wrap; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-step { max-width: 100%; width: 100%; }
  .how-arrow { transform: rotate(90deg); padding: .2rem 0; align-self: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 3rem 1.5rem; }
}

@media (max-width: 390px) {
  .navbar { padding: 0 .75rem; }
  .cart-label { display: none; }
  .navbar-cart-fixed { padding: .28rem .38rem; }
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,.68,0,1.2), transform .7s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible { opacity: 1; transform: none; }

/* Section title underline */
.section-title::after {
  content: ''; display: block; width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  border-radius: 2px; margin: .55rem auto 0;
}

/* Navbar shrink on scroll */
.navbar { transition: height .3s ease, box-shadow .3s ease; }
.navbar.scrolled { height: 52px; box-shadow: 0 4px 24px rgba(0,0,0,.12); }

/* Hero dot-grid texture */
.hero::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; pointer-events: none; z-index: 2;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero-content {
  position: relative;
  z-index: 3;
}

/* Product badges */
.badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 5;
  padding: .28rem .82rem; border-radius: 20px;
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px; color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.badge-favorito { background: linear-gradient(135deg, #6e0f12, #961519); }
.badge-popular  { background: linear-gradient(135deg, #1a6b3a, #27ae60); }
.badge-premium  { background: linear-gradient(135deg, #5b2386, #8e44ad); }
.badge-nuevo    { background: linear-gradient(135deg, #0d6b8e, #2980b9); }
.badge-oferta   { background: linear-gradient(135deg, #b05a00, #e67e22); }
/* legacy aliases */
.badge-hot      { background: linear-gradient(135deg, #a83232, #e74c3c); }

/* ===== Origen section ===== */
.origen-section { padding: 5rem 0; background: #170804; color: var(--white); }
.origen-inner { display: flex; gap: 4rem; align-items: center; flex-wrap: wrap; }
.origen-text-col { flex: 1; min-width: 280px; }
.origen-label {
  display: inline-block; color: #f0907a;
  font-weight: 700; font-size: .76rem;
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: .8rem;
}
.origen-text-col h2 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.2rem;
}
.origen-text-col p {
  color: rgba(255,255,255,.7); line-height: 1.85;
  font-size: 1rem; max-width: 420px; margin-bottom: 2rem;
}
.origen-stats-mini { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.or-mini-stat strong {
  display: block; font-size: 1.7rem; font-weight: 800;
  color: var(--white); font-family: 'Montserrat', system-ui, sans-serif; line-height: 1.1;
}
.or-mini-stat span { font-size: .76rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; }

.origen-timeline {
  flex: 1; min-width: 260px;
  display: flex; align-items: center; justify-content: center;
}
.or-node { display: flex; flex-direction: column; align-items: center; gap: .5rem; flex-shrink: 0; }
.or-circle {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(192,57,43,.15); border: 2px solid rgba(192,57,43,.4);
  font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.or-circle:hover { background: rgba(192,57,43,.3); }
.or-node span { font-size: .72rem; text-align: center; color: rgba(255,255,255,.55); line-height: 1.4; }
.or-dash { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(192,57,43,.5), rgba(192,57,43,.1)); min-width: 16px; max-width: 50px; }

/* Products count */
.products-count { color: var(--text-light); font-size: .88rem; margin-bottom: 1rem; }

/* ===== Hero entry stagger ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero-tag       { animation: heroFadeUp .55s ease .15s both; }
.hero-content h1{ animation: heroFadeUp .60s ease .35s both; }
.hero-content p { animation: heroFadeUp .55s ease .55s both; }
.hero-btns      { animation: heroFadeUp .55s ease .75s both; }

/* Accesibilidad: sin animaciones */
@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .hero-tag, .hero-content h1,
  .hero-content p, .hero-btns { animation: none; opacity: 1; transform: none; }
}

/* Mobile pequeño: ajuste de fuente y padding del hero */
@media (max-width: 390px) {
  .hero-sell { padding: 3.5rem 1rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; text-align: center; }
}

/* ===== WhatsApp float: pulse ring + tooltip ===== */
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50%     { box-shadow: 0 4px 28px rgba(37,211,102,.65), 0 0 0 10px rgba(37,211,102,.1); }
}
.whatsapp-float { animation: waPulse 2.6s ease-in-out infinite; overflow: visible; }
.whatsapp-float::after {
  content: 'Escribinos 💬';
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a; color: #fff;
  font-family: 'Nunito', system-ui, sans-serif; font-size: .78rem; font-weight: 600;
  padding: .4rem .95rem; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.whatsapp-float::before {
  content: ''; position: absolute;
  right: calc(100% + 8px); top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: #1a1a1a;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.whatsapp-float:hover::after,
.whatsapp-float:hover::before { opacity: 1; }

/* WA hero button breathe */
@keyframes btnBreathe {
  0%,100% { box-shadow: 0 4px 12px rgba(37,211,102,.3); }
  50%     { box-shadow: 0 6px 22px rgba(37,211,102,.55); transform: scale(1.03); }
}
.btn-hero-wa { animation: btnBreathe 2.8s ease-in-out infinite; }

/* ===== Product image zoom ===== */
.product-img { transition: transform .45s ease; }
.product-card:hover .product-img { transform: scale(1.07); }

/* ===== Emoji category bounce ===== */
@keyframes emojiJump {
  0%,100% { transform: translateY(0) rotate(0deg); }
  30%     { transform: translateY(-10px) rotate(-8deg); }
  60%     { transform: translateY(-4px) rotate(4deg); }
}
.quick-card:hover span:first-child { animation: emojiJump .45s ease; display: inline-block; }


/* ===== Nav link underline grow ===== */
.nav-links > li > a { position: relative; }
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red); border-radius: 1px;
  transition: width .25s ease;
}
.nav-links > li > a:hover::after { width: 100%; }

/* ===== Footer link underline grow ===== */
.footer-col ul a { position: relative; }
.footer-col ul a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: rgba(255,255,255,.7);
  transition: width .28s ease;
}
.footer-col ul a:hover::after { width: 100%; }

/* ===== Glassmorphism navbar on scroll ===== */
.navbar.scrolled {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,.88);
}

/* ===== Origen: sequential circle pop + dash draw ===== */
.origen-section.reveal .or-circle { opacity: 0; transform: scale(.35); }
.origen-section.reveal .or-dash   { transform: scaleX(0); transform-origin: left center; }
@keyframes orCircleIn {
  from { opacity: 0; transform: scale(.35); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes dashDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.origen-section.reveal.visible .or-circle { animation: orCircleIn .42s cubic-bezier(.34,1.56,.64,1) both; }
.origen-section.reveal.visible .or-dash   { animation: dashDraw .32s ease both; }
.origen-section.reveal.visible .or-node:nth-child(1) .or-circle { animation-delay: .15s; }
.origen-section.reveal.visible .or-node:nth-child(3) .or-circle { animation-delay: .42s; }
.origen-section.reveal.visible .or-node:nth-child(5) .or-circle { animation-delay: .68s; }
.origen-section.reveal.visible .or-node:nth-child(7) .or-circle { animation-delay: .94s; }
.origen-section.reveal.visible .or-dash:nth-child(2) { animation-delay: .30s; }
.origen-section.reveal.visible .or-dash:nth-child(4) { animation-delay: .56s; }
.origen-section.reveal.visible .or-dash:nth-child(6) { animation-delay: .82s; }

/* ===== Child stagger keyframe ===== */
@keyframes childFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Valor banners stagger */
.valor-section.visible .valor-banner { animation: childFadeUp .5s ease both; }
.valor-section.visible .valor-banners > :nth-child(1) { animation-delay: 0ms; }
.valor-section.visible .valor-banners > :nth-child(2) { animation-delay: 100ms; }
.valor-section.visible .valor-banners > :nth-child(3) { animation-delay: 200ms; }
.valor-section.visible .valor-banners > :nth-child(4) { animation-delay: 300ms; }

/* How-section steps + arrows stagger */
.how-section.visible .how-step  { animation: childFadeUp .5s ease both; }
.how-section.visible .how-arrow { animation: childFadeUp .35s ease both; }
.how-section.visible .how-steps > :nth-child(1) { animation-delay: 0ms;   }
.how-section.visible .how-steps > :nth-child(2) { animation-delay: 100ms; }
.how-section.visible .how-steps > :nth-child(3) { animation-delay: 150ms; }
.how-section.visible .how-steps > :nth-child(4) { animation-delay: 250ms; }
.how-section.visible .how-steps > :nth-child(5) { animation-delay: 300ms; }
.how-section.visible .how-steps > :nth-child(6) { animation-delay: 400ms; }
.how-section.visible .how-steps > :nth-child(7) { animation-delay: 450ms; }

/* Quick categories stagger */
.quick-cats.visible .quick-card { animation: childFadeUp .4s ease both; }
.quick-cats.visible .quick-grid > :nth-child(1) { animation-delay: 0ms;   }
.quick-cats.visible .quick-grid > :nth-child(2) { animation-delay: 55ms;  }
.quick-cats.visible .quick-grid > :nth-child(3) { animation-delay: 110ms; }
.quick-cats.visible .quick-grid > :nth-child(4) { animation-delay: 165ms; }
.quick-cats.visible .quick-grid > :nth-child(5) { animation-delay: 220ms; }
.quick-cats.visible .quick-grid > :nth-child(6) { animation-delay: 275ms; }
.quick-cats.visible .quick-grid > :nth-child(7) { animation-delay: 330ms; }

/* ===== Testimonials stagger + stars glow ===== */
.testimonios.visible .testi-card { animation: childFadeUp .5s ease both; }
.testimonios.visible .testi-card:nth-child(1) { animation-delay: 0ms;   }
.testimonios.visible .testi-card:nth-child(2) { animation-delay: 160ms; }
.testimonios.visible .testi-card:nth-child(3) { animation-delay: 320ms; }
@keyframes starsGlow {
  from { opacity: 0; letter-spacing: -4px; filter: blur(3px); }
  to   { opacity: 1; letter-spacing: 2px;  filter: none; }
}
.testimonios.visible .testi-stars { animation: starsGlow .55s ease both; }
.testimonios.visible .testi-card:nth-child(1) .testi-stars { animation-delay: .5s; }
.testimonios.visible .testi-card:nth-child(2) .testi-stars { animation-delay: .66s; }
.testimonios.visible .testi-card:nth-child(3) .testi-stars { animation-delay: .82s; }

/* ===== Cart badge pop ===== */
@keyframes badgePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  100% { transform: scale(1); }
}
.cart-badge { animation: badgePop .38s cubic-bezier(.34,1.56,.64,1); }

/* ===== Modal improved open animation ===== */
@keyframes modalIn {
  from { transform: scale(.86) translateY(24px); opacity: 0; }
  to   { transform: scale(1) translateY(0);      opacity: 1; }
}

/* ===== Filters bar ===== */
.filters-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap;
}
.filter-left { display: flex; gap: .6rem; flex-wrap: wrap; }
.filter-select {
  padding: .45rem .9rem; border: 1.5px solid var(--gray);
  border-radius: 8px; font-size: .88rem; font-family: 'Nunito', system-ui, sans-serif;
  color: var(--text); background: var(--white); cursor: pointer;
  transition: border-color .2s;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .7rem center; padding-right: 2rem;
}
.filter-select:focus { outline: none; border-color: var(--red); }

.view-toggle { display: flex; gap: .3rem; }
.view-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1.5px solid var(--gray); background: var(--white);
  color: var(--text-light); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.view-btn:hover { border-color: var(--red); color: var(--red); }
.view-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ===== List view ===== */
.products-list {
  display: flex !important; flex-direction: column; gap: .8rem;
}
.products-list .product-card {
  flex-direction: row !important; height: 130px;
}
.products-list .card-img-wrap {
  width: 130px; flex-shrink: 0; border-radius: var(--radius) 0 0 var(--radius);
}
.products-list .product-img { height: 130px; }
.products-list .product-emoji { height: 130px; font-size: 3rem; }
.products-list .card-overlay { display: none; }
.products-list .product-info { padding: .8rem 1rem; }
.products-list .product-desc { display: none; }
.products-list .product-name { font-size: 1rem; }

/* ===== Product characteristic tags ===== */
.product-tags { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: .5rem; }
.ptag {
  font-size: .68rem; font-weight: 600; color: var(--text-light);
  background: var(--gray-light); border-radius: 4px; padding: .18rem .5rem;
  white-space: nowrap;
}

/* ===== Featured products carousel ===== */
.carousel-wrapper { position: relative; padding: 0 2rem; }
.products-carousel {
  display: flex; gap: 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: .5rem;
  scroll-behavior: smooth;
}
.products-carousel::-webkit-scrollbar { display: none; }
.products-carousel .product-card {
  flex: 0 0 calc(33.33% - 1rem);
  min-width: 240px; scroll-snap-align: start;
}
.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-60%);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); z-index: 10;
  transition: all .2s; color: var(--text);
}
.carousel-nav:hover { border-color: var(--red); color: var(--red); transform: translateY(-60%) scale(1.08); }
.carousel-prev { left: -6px; }
.carousel-next { right: -6px; }

@media (max-width: 900px) {
  .products-carousel .product-card { flex: 0 0 calc(50% - .75rem); }
}
@media (max-width: 560px) {
  .products-carousel .product-card { flex: 0 0 82%; }
  .carousel-wrapper { padding: 0 1.2rem; }
}

/* ===== Cart button added animation ===== */
@keyframes btnAdded {
  0%   { transform: scale(1); }
  35%  { transform: scale(.88); }
  65%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.btn-add { transition: background .3s, color .3s; }
.btn-added { animation: btnAdded .38s cubic-bezier(.34,1.56,.64,1) !important; }

/* ===== Mini carrito drawer ===== */
.mc-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.45); z-index: 400;
  animation: mcFadeIn .25s ease;
}
.mc-overlay.open { display: block; }
@keyframes mcFadeIn { from { opacity: 0; } to { opacity: 1; } }

.mc-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 95vw;
  background: var(--white); z-index: 500;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2);
  display: flex; flex-direction: column;
  box-shadow: -6px 0 40px rgba(0,0,0,.16);
}
.mc-drawer.open { transform: translateX(0); }
.mc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--gray);
  font-family: 'Montserrat', system-ui, sans-serif; font-size: 1.1rem; font-weight: 700;
}
.mc-close {
  background: none; border: none; font-size: 1.1rem; cursor: pointer;
  color: var(--text-light); width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.mc-close:hover { background: var(--gray-light); }
.mc-items {
  flex: 1; overflow-y: auto; padding: 1rem 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.mc-item {
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem; border-radius: 10px; background: var(--gray-light);
}
.mc-emoji { font-size: 1.7rem; flex-shrink: 0; }
.mc-info { flex: 1; min-width: 0; }
.mc-info strong { display: block; font-size: .88rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mc-info span { font-size: .78rem; color: var(--text-light); }
.mc-sub { font-weight: 800; color: var(--red); font-size: .88rem; flex-shrink: 0; }
.mc-empty { text-align: center; padding: 3rem 1rem; color: var(--text-light); }
.mc-empty span { font-size: 3rem; display: block; margin-bottom: .8rem; }
.mc-empty p { margin-bottom: .2rem; }
.mc-footer {
  padding: 1.2rem 1.5rem; border-top: 1px solid var(--gray);
  display: flex; flex-direction: column; gap: .8rem;
}
.mc-total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .88rem; color: var(--text-light);
}
.mc-total strong { font-size: 1.25rem; color: var(--text); font-family: 'Montserrat', system-ui, sans-serif; }
.mc-cta { text-align: center; width: 100%; }

/* ===== Zoom de imagen ===== */
.img-zoom-overlay {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,.94); align-items: center; justify-content: center;
  cursor: zoom-out; animation: mcFadeIn .2s ease;
}
.img-zoom-overlay.open { display: flex; }
.img-zoom-overlay img {
  max-width: 90vw; max-height: 90vh; object-fit: contain;
  border-radius: 8px; pointer-events: none;
  animation: zoomImgIn .25s cubic-bezier(.22,.68,0,1.2);
}
@keyframes zoomImgIn { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.img-zoom-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.15); color: var(--white); border: none;
  width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.img-zoom-close:hover { background: rgba(255,255,255,.28); }
#modal-img { cursor: zoom-in; }

/* ===== Combos / Promociones ===== */
.promos-section { padding: 4.5rem 0; background: var(--gray-light); }
.section-sub {
  text-align: center; color: var(--text-light);
  font-size: 1rem; margin-top: -.8rem; margin-bottom: 2.5rem;
}
.promos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.promo-card {
  background: var(--white); border: 2px solid var(--gray);
  border-radius: 14px; padding: 2rem 1.8rem; text-align: center;
  position: relative; transition: transform .22s, border-color .22s, box-shadow .22s;
}
.promo-card:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: 0 10px 36px rgba(192,57,43,.14); }
.promo-destacado { border-color: var(--red); box-shadow: 0 4px 20px rgba(192,57,43,.1); }
.promo-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  font-size: .68rem; font-weight: 800; padding: .28rem 1rem;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .6px; white-space: nowrap;
}
.promo-badge-gold   { background: linear-gradient(135deg, #b8860b, #e4a600); }
.promo-badge-purple { background: linear-gradient(135deg, #6c3483, #8e44ad); }
.promo-emoji { font-size: 2.6rem; margin: .5rem 0 .8rem; }
.promo-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.promo-items { list-style: none; margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: .35rem; }
.promo-items li { font-size: .88rem; color: var(--text-light); }
.promo-items li::before { content: '· '; color: var(--red); font-weight: 700; }
.promo-price-wrap { margin-bottom: 1.5rem; }
.promo-original { font-size: .82rem; color: var(--text-light); text-decoration: line-through; display: block; margin-bottom: .2rem; }
.promo-price { font-size: 1.7rem; font-weight: 800; color: var(--red); font-family: 'Montserrat', system-ui, sans-serif; }
.promo-btn { width: 100%; text-align: center; font-size: .88rem; padding: .7rem 1rem; }

/* ===== Mobile testimonials swipe carousel ===== */
@media (max-width: 640px) {
  .testi-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: .5rem; gap: 1rem;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-card { flex: 0 0 88%; scroll-snap-align: start; }
}

@media (max-width: 768px) {
  .origen-inner { flex-direction: column; gap: 2.5rem; }
  .origen-timeline { width: 100%; }
}
@media (max-width: 640px) {
  .or-dash { min-width: 10px; max-width: 24px; }
  .origen-stats-mini { gap: 1.5rem; }
}

/* ===== Low-stock badge on cards ===== */
.low-stock-badge {
  position: absolute; bottom: 8px; left: 8px; z-index: 3;
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: #fff; font-size: .64rem; font-weight: 800;
  padding: .22rem .65rem; border-radius: 20px;
  letter-spacing: .4px; text-transform: uppercase;
  animation: stockPulse 2.2s ease-in-out infinite;
}
@keyframes stockPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, .5); }
  50%       { box-shadow: 0 0 0 5px rgba(230, 126, 34, 0); }
}

/* ===== Modal top-actions bar ===== */
.modal-top-actions {
  position: absolute; top: .75rem; right: 3rem; z-index: 10;
}
.modal-share-btn {
  display: flex; align-items: center; gap: .4rem;
  background: var(--gray-light); border: 1px solid var(--gray);
  border-radius: 20px; padding: .35rem .85rem;
  font-size: .78rem; font-weight: 600; color: var(--text-light);
  cursor: pointer; transition: background .18s, color .18s, border-color .18s;
}
.modal-share-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.modal-share-btn svg { flex-shrink: 0; }

/* ===== Modal stock badge ===== */
.modal-stock-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: linear-gradient(135deg, #fef3e2, #fde8c8);
  color: #c0620a; border: 1px solid #f0a843;
  border-radius: 20px; padding: .3rem 1rem;
  font-size: .78rem; font-weight: 700;
  margin-bottom: .75rem;
}

/* ===== Cooking tips box ===== */
.cooking-box {
  margin-top: 1.2rem;
  background: linear-gradient(135deg, #f9f9f6, #f2f9f2);
  border: 1px solid #d4edda; border-radius: 12px;
  padding: 1rem 1.2rem;
}
.cooking-header {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .7rem; font-size: .9rem;
}
.cooking-header span { font-size: 1.2rem; }
.cooking-header strong { color: var(--text); font-weight: 700; }
.cooking-list { list-style: none; display: flex; flex-direction: column; gap: .38rem; }
.cooking-list li { font-size: .82rem; color: var(--text-light); }

/* ===== Related products section ===== */
.related-section { margin-top: 1.4rem; }
.related-title {
  font-size: .85rem; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: .7px;
  margin-bottom: .8rem; padding-bottom: .4rem;
  border-bottom: 1px solid var(--gray);
}
.related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem;
}
.related-card {
  border: 1px solid var(--gray); border-radius: 10px;
  overflow: hidden; cursor: pointer;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.related-card:hover { transform: translateY(-3px); border-color: var(--red); box-shadow: 0 4px 16px rgba(192,57,43,.12); }
.rc-img {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  background: var(--gray-light); overflow: hidden; font-size: 1.8rem;
}
.rc-img img { width: 100%; height: 100%; object-fit: cover; }
.rc-info {
  padding: .4rem .5rem;
  display: flex; flex-direction: column; gap: .1rem;
}
.rc-info strong { font-size: .73rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.rc-info span { font-size: .68rem; color: var(--red); font-weight: 600; }
.related-loading { font-size: .82rem; color: var(--text-light); padding: .5rem; }
@media (max-width: 480px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Modal: precio en tiempo real ===== */
.modal-price-block { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.modal-subtotal {
  font-size: .82rem; color: var(--text-light); font-weight: 500;
}

/* ===== Nosotros: mapa ===== */
.nosotros-map {
  margin: 3rem 0 2rem;
  text-align: center;
}
.nosotros-map h2 {
  font-size: 1.6rem; margin-bottom: .4rem;
}
.map-address {
  font-size: .92rem; color: var(--text-light); margin-bottom: 1.2rem;
}
.map-address a { color: var(--red); font-weight: 600; }
.map-address a:hover { text-decoration: underline; }
.map-wrapper {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  border: 1px solid var(--gray);
}

/* ===== Cart: métodos de pago ===== */
.pay-section { margin-top: 2rem; }
.pay-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }

.pay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.pay-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  padding: .85rem 1rem;
  border: 2px solid var(--gray);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s, transform .15s;
  text-align: left;
  width: 100%;
}
.pay-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(192,57,43,.13);
  transform: translateY(-2px);
}
.pay-card-wide { grid-column: span 2; flex-direction: row; align-items: center; gap: .85rem; }
.pay-card-wide .pay-info { flex: 1; }

.pay-icon { font-size: 1.5rem; line-height: 1; }
.pay-info { display: flex; flex-direction: column; gap: .1rem; }
.pay-info strong { font-size: .92rem; color: var(--text); }
.pay-info span { font-size: .75rem; color: var(--text-light); }

.pay-logos-row { display: flex; gap: .35rem; flex-wrap: wrap; margin-top: .2rem; }

.plr-chip {
  font-size: .65rem; font-weight: 700; letter-spacing: .03em;
  padding: .18rem .5rem; border-radius: 20px; color: #fff;
}
.plr-wa   { background: #25D366; }
.plr-nequi { background: #7B1FA2; }
.plr-davi  { background: #E91E63; }
.plr-cash  { background: #2E7D32; }
.plr-visa  { background: #1A1F71; }
.plr-mc    { background: #EB001B; }
.plr-pse   { background: #005496; }

@media (max-width: 480px) {
  .pay-grid { grid-template-columns: 1fr; }
  .pay-card-wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
}

/* ===== Promo / cupón en carrito ===== */
.cart-total-block { margin-bottom: .75rem; }
.cart-subtotal-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; color: var(--text-light); margin-bottom: .3rem;
}
.cart-promo-row {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  background: #f0fff4; border: 1px solid #b7e4c7; border-radius: 10px;
  padding: .5rem .85rem; margin-bottom: .4rem; font-size: .88rem; color: #1a7f37;
}
.promo-saving { font-weight: 700; color: #1a7f37; margin-left: auto; }
.remove-promo-btn {
  background: none; border: none; color: #aaa; cursor: pointer;
  font-size: .9rem; line-height: 1; padding: .1rem .25rem;
  border-radius: 4px; transition: color .15s;
}
.remove-promo-btn:hover { color: var(--red-dark); }
.promo-form { display: flex; gap: .5rem; margin-bottom: 1rem; }
.promo-input {
  flex: 1; padding: .55rem .85rem;
  border: 1.5px solid #ddd; border-radius: 10px;
  font-size: .88rem; outline: none; font-family: inherit;
  transition: border-color .2s;
}
.promo-input:focus { border-color: var(--red); }
.btn-promo {
  background: var(--text); color: #fff; border: none;
  padding: .55rem 1.1rem; border-radius: 10px;
  font-size: .88rem; font-weight: 600; cursor: pointer;
  white-space: nowrap; transition: background .18s;
}
.btn-promo:hover { background: var(--red); }

/* ===== Checkout estilo tienda ===== */
body.checkout-body .navbar,
body.checkout-body .footer {
  display: none;
}
body.checkout-body main {
  min-height: 100vh;
}
.checkout-page {
  background: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 58fr 42fr;
  width: 100%;
  min-height: 100vh;
  margin: 0;
}
.checkout-panel {
  background: var(--cream);
  padding: 2.25rem 3.5rem 4rem;
}
.checkout-panel > * {
  max-width: 480px;
  margin-left: auto;
  margin-right: 0;
}
.checkout-return {
  margin-bottom: 1.45rem;
}
.checkout-return a {
  color: var(--pasture);
  font-size: .86rem;
  font-weight: 700;
}
.checkout-express p {
  text-align: center;
  color: var(--hide);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .8rem;
}
.checkout-express-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.express-btn {
  border: 0;
  border-radius: 8px;
  min-height: 48px;
  font-size: .96rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s, box-shadow .16s;
}
.express-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.express-wa {
  background: var(--pasture);
  color: var(--cream);
}
.express-card {
  background: var(--red-dark);
  color: var(--cream);
}
.checkout-divider {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #8a7568;
  font-size: .78rem;
  margin: 1.65rem 0 1.9rem;
}
.checkout-divider::before,
.checkout-divider::after {
  content: "";
  height: 1px;
  background: var(--bone);
  flex: 1;
}
.checkout-section {
  margin-top: 1.6rem;
}
.checkout-section h1,
.checkout-section h2 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: .85rem;
  color: var(--charcoal);
}
.checkout-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.checkout-heading-row span,
.checkout-muted {
  color: var(--text-light);
  font-size: .82rem;
}
.checkout-field {
  min-width: 0;
}
.checkout-field input,
.checkout-field select,
.summary-discount input {
  width: 100%;
  min-height: 47px;
  border: 1px solid #d6c5b6;
  border-radius: 8px;
  background: #fffdf9;
  padding: .78rem .9rem;
  font: inherit;
  font-size: 16px; /* evita zoom automático en iOS al hacer foco */
  color: var(--charcoal);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.checkout-field input:focus,
.checkout-field select:focus,
.summary-discount input:focus {
  border-color: #8f4b35;
  box-shadow: 0 0 0 3px rgba(158,47,36,.13);
}
.checkout-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: .75rem;
}
.checkout-field-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.checkout-section > .checkout-field + .checkout-field,
.checkout-section > .checkout-field + .checkout-field-grid {
  margin-top: .75rem;
}
.checkout-select select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #5d534d 50%), linear-gradient(135deg, #5d534d 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.checkout-check {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: .7rem;
  color: var(--hide);
  font-size: .83rem;
}
.checkout-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}
.shipping-box {
  border: 1px solid #c9b49f;
  border-radius: 8px;
  min-height: 64px;
  padding: .9rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--charcoal);
  background: #fffdf9;
}
.shipping-box div {
  display: flex;
  flex-direction: column;
  gap: .22rem;
}
.shipping-box span {
  color: var(--text-light);
  font-size: .82rem;
}
.delivery-coverage {
  margin-top: .85rem;
  border: 1px solid #d6c5b6;
  border-radius: 8px;
  background: #fffdf9;
  padding: .85rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: center;
}
.coverage-copy {
  display: flex;
  flex-direction: column;
  gap: .18rem;
  min-width: 0;
}
.coverage-copy strong {
  font-size: .9rem;
  color: var(--charcoal);
}
.coverage-copy span {
  color: var(--text-light);
  font-size: .82rem;
  line-height: 1.35;
}
.coverage-btn {
  border: 1px solid #c9b49f;
  border-radius: 8px;
  background: var(--cream);
  color: var(--red-dark);
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  padding: .62rem .85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s, border-color .18s, color .18s;
}
.coverage-btn:hover {
  background: #fbf1e8;
  border-color: var(--red);
}
.delivery-coverage[data-state="checking"] {
  border-color: #d7a94f;
  background: #fff8e6;
}
.delivery-coverage[data-state="ok"] {
  border-color: #84bd8f;
  background: #f0fff4;
}
.delivery-coverage[data-state="error"] {
  border-color: #d36b61;
  background: #fff0ee;
}
.delivery-coverage[data-state="ok"] .coverage-copy span {
  color: #1a7f37;
  font-weight: 800;
}
.delivery-coverage[data-state="error"] .coverage-copy span {
  color: #a32a1f;
  font-weight: 800;
}
.payment-stack {
  border: 1px solid #c9b49f;
  border-radius: 8px;
  overflow: hidden;
  background: #fffdf9;
  margin-top: .85rem;
  box-shadow: 0 16px 34px rgba(74,42,28,.08);
}
.payment-row {
  width: 100%;
  min-height: 68px;
  border: 0;
  border-bottom: 1px solid #eadccf;
  background: #fffdf9;
  padding: .85rem .95rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--charcoal);
}
.payment-row:last-child {
  border-bottom: 0;
}
.payment-row:hover {
  background: #fbf1e8;
}
.payment-row-selected {
  background: linear-gradient(135deg, #fff8ef, #f3ded0);
  box-shadow: inset 4px 0 0 var(--red);
}
.payment-radio {
  width: 17px;
  height: 17px;
  border: 1px solid #9b7965;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}
.payment-row-selected .payment-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--red);
}
/* ===== Pedido confirmado ===== */
.confirmado-page {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1rem; background: var(--cream);
}
.confirmado-card {
  background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow); padding: 2.5rem 2rem;
  max-width: 480px; width: 100%; text-align: center;
}
.confirmado-icon { font-size: 3.5rem; margin-bottom: .8rem; }
.confirmado-card h1 { font-size: 2rem; color: var(--text); margin-bottom: .5rem; }
.confirmado-sub { color: var(--text-light); margin-bottom: 1rem; }
.confirmado-total { font-size: 1.3rem; font-weight: 700; color: var(--red); margin-bottom: 1rem; }
.confirmado-msg { color: var(--text-light); font-size: .95rem; margin-bottom: 1.5rem; }
.btn-wa-confirmar {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--green-wa); color: var(--white);
  padding: .85rem 2rem; border-radius: 8px;
  font-size: 1.05rem; font-weight: 700;
  transition: background .2s; margin-bottom: 1.2rem;
}
.btn-wa-confirmar:hover { background: #1da851; }
.confirmado-seguir {
  display: block; color: var(--text-light); font-size: .9rem;
  margin-top: .5rem; transition: color .2s;
}
.confirmado-seguir:hover { color: var(--red); }

.btn-confirmar-pago {
  display: block; width: 100%; margin-top: 1.25rem;
  padding: .9rem 1.5rem; border: none; border-radius: 8px;
  background: var(--red); color: var(--white);
  font-size: 1.05rem; font-weight: 700; cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn-confirmar-pago:hover { background: var(--red-dark); }
.btn-confirmar-pago:active { transform: scale(.98); }
.payment-copy {
  display: flex;
  flex-direction: column;
  gap: .18rem;
  flex: 1;
  min-width: 0;
}
.payment-copy strong {
  font-size: .92rem;
  color: var(--charcoal);
}
.payment-copy small {
  color: var(--text-light);
  font-size: .78rem;
}
.payment-tags,
.payment-brand {
  display: flex;
  gap: .28rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.payment-tags b,
.payment-brand {
  border: 1px solid #d9c7b5;
  border-radius: 4px;
  padding: .16rem .35rem;
  font-size: .64rem;
  color: var(--red-dark);
  background: var(--cream);
  line-height: 1.2;
  font-weight: 800;
}
.checkout-summary {
  background: linear-gradient(180deg, #a31318 0%, #8c1115 45%, #5d080b 100%);
  color: var(--cream);
  padding: 2.5rem 3rem 4rem 3.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.summary-inner {
  position: sticky;
  top: 2.5rem;
  max-width: 400px;
  margin-right: auto;
}
.summary-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.summary-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: .9rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,248,239,.12);
}
.summary-item:first-child {
  padding-top: 0;
}
.summary-item:last-child {
  border-bottom: none;
}
.summary-thumb {
  width: 70px;
  height: 70px;
  border: 1.5px solid rgba(255,248,239,.28);
  border-radius: 10px;
  background: rgba(255,248,239,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.summary-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.summary-thumb-emoji {
  font-size: 1.75rem;
}
.summary-thumb strong {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pasture);
  color: var(--cream);
  font-size: .72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #a31318;
}
.summary-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.summary-info > strong {
  color: var(--cream);
  font-size: .9rem;
  line-height: 1.25;
}
.summary-info > span {
  color: rgba(255,248,239,.68);
  font-size: .78rem;
}
.summary-price {
  color: var(--cream);
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
}
.summary-qty {
  display: flex;
  align-items: center;
  gap: .38rem;
  margin-top: .2rem;
  flex-wrap: wrap;
}
.summary-qty form {
  display: inline-flex;
}
.summary-qty-btn {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255,248,239,.24);
  border-radius: 50%;
  background: rgba(255,248,239,.1);
  color: var(--cream);
  cursor: pointer;
  line-height: 1;
}
.summary-qty .qty-num {
  min-width: 20px;
  color: var(--cream);
  background: transparent;
  border: 0;
}
.summary-remove,
.summary-clear button {
  border: 0;
  background: transparent;
  color: rgba(255,248,239,.7);
  font-size: .74rem;
  text-decoration: underline;
  cursor: pointer;
}
.summary-discount {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .7rem;
  margin: 1.75rem 0 1.75rem;
}
.summary-discount input {
  border-color: rgba(255,255,255,.24);
  min-height: 49px;
  text-transform: uppercase;
}
.summary-discount button {
  min-width: 74px;
  border: 1px solid rgba(255,248,239,.22);
  border-radius: 8px;
  background: rgba(255,248,239,.1);
  color: rgba(255,248,239,.82);
  font-weight: 800;
  cursor: pointer;
}
.summary-promo-active {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: .6rem;
  align-items: center;
  margin: 1.5rem 0 1.8rem;
  border: 1px solid rgba(255,248,239,.2);
  border-radius: 8px;
  padding: .7rem .85rem;
  color: rgba(255,248,239,.88);
  font-size: .86rem;
}
.summary-promo-active .promo-saving {
  color: #d7e6b7;
}
.summary-promo-active .remove-promo-btn {
  color: rgba(255,248,239,.62);
}
.summary-totals {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.15rem;
}
.summary-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,248,239,.84);
  font-size: .88rem;
}
.summary-totals strong {
  color: var(--cream);
  text-align: right;
}
.summary-total {
  padding-top: .7rem;
  margin-top: .2rem;
  border-top: 1px solid rgba(255,248,239,.18);
  align-items: baseline;
}
.summary-total span {
  font-size: 1.1rem;
  font-weight: 800;
}
.summary-total strong {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
}
.summary-clear {
  margin-top: 1.2rem;
  text-align: right;
}

@media (max-width: 980px) {
  .checkout-page {
    background: var(--cream);
  }
  .checkout-layout {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
  }
  .checkout-panel {
    border-right: 0;
    order: 2;
  }
  .checkout-panel > * {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .checkout-summary {
    order: 1;
    background: linear-gradient(180deg, #a31318 0%, #8c1115 45%, #5d080b 100%);
    min-height: auto;
    padding: 2rem 1.5rem 2.5rem;
  }
  .summary-inner {
    position: static;
    max-width: none;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .checkout-panel,
  .checkout-summary {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .checkout-express-grid,
  .checkout-field-grid,
  .checkout-field-grid-3 {
    grid-template-columns: 1fr;
  }
  .checkout-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
  }
  .summary-item {
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: start;
    column-gap: .75rem;
    row-gap: .5rem;
    padding: .95rem 0;
  }
  .summary-thumb {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }
  .summary-thumb-emoji {
    font-size: 1.4rem;
  }
  /* El total de la linea ocupa el ancho completo en vez de dejar un hueco
     de 54px a la izquierda. */
  .summary-price {
    grid-column: 1 / -1;
    text-align: right;
  }
  /* 25px es muy poco para el dedo en pantalla tactil. */
  .summary-qty-btn {
    width: 32px;
    height: 32px;
  }
  .summary-remove {
    font-size: .8rem;
  }
  .payment-row {
    align-items: flex-start;
  }
  .delivery-coverage {
    grid-template-columns: 1fr;
  }
  .coverage-btn {
    width: 100%;
  }
  .payment-tags,
  .payment-brand {
    display: none;
  }
}

/* ===== PWA install button ===== */
#pwa-install-btn {
  display: none; align-items: center; gap: .5rem;
  background: var(--red); color: #fff;
  border: none; border-radius: 20px;
  padding: .38rem 1rem; font-size: .8rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: background .18s;
}
#pwa-install-btn:hover { background: var(--red-dark); }


/* ===== Cliente: login, registro y cuenta ===== */
.auth-page,
.account-page {
  min-height: calc(100vh - 64px);
  background:
    linear-gradient(135deg, rgba(93,22,15,.08), rgba(104,122,62,.08)),
    var(--cream);
  padding: 4rem 1rem;
}
.auth-card,
.account-shell {
  max-width: 520px;
  margin: 0 auto;
  background: #fffdf9;
  border: 1px solid var(--bone);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(74,42,28,.1);
  padding: 2rem;
}
.auth-kicker {
  display: inline-block;
  color: var(--pasture);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.auth-card h1,
.account-header h1,
.account-card h2 {
  color: var(--charcoal);
  line-height: 1.05;
}
.auth-card h1 {
  font-size: 2.5rem;
  margin-bottom: .45rem;
}
.auth-card p,
.account-header p,
.account-empty {
  color: var(--text-light);
  line-height: 1.55;
}
.auth-error {
  margin: 1rem 0;
  background: #f8d7da;
  color: #842029;
  border-radius: 8px;
  padding: .75rem .9rem;
  font-weight: 700;
  font-size: .9rem;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 1.4rem;
}
.auth-form label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  color: var(--hide);
  font-size: .84rem;
  font-weight: 800;
}
.auth-form input {
  min-height: 46px;
  border: 1px solid #d6c5b6;
  border-radius: 8px;
  background: var(--cream);
  padding: .72rem .85rem;
  font: inherit;
  color: var(--charcoal);
  outline: none;
}
.auth-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(158,47,36,.13);
}
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.auth-submit {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--red-dark);
  color: var(--cream);
  font-weight: 900;
  cursor: pointer;
  margin-top: .3rem;
}
.auth-submit:hover {
  background: var(--red);
}
.auth-switch {
  margin-top: 1.2rem;
  text-align: center;
  color: var(--text-light);
  font-size: .92rem;
}
.auth-switch a,
.account-logout {
  color: var(--red);
  font-weight: 800;
}
.account-shell {
  max-width: 920px;
}
.account-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.account-header h1 {
  font-size: 2.5rem;
}
.account-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 1rem;
}
.account-card {
  border: 1px solid var(--bone);
  border-radius: 8px;
  padding: 1.2rem;
  background: var(--cream);
}
.account-card h2 {
  font-size: 1.55rem;
  margin-bottom: .8rem;
}
.account-spend {
  background: #fffdf9;
  border: 1px solid var(--bone);
  border-radius: 8px;
  padding: .85rem;
  margin-bottom: .8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.account-spend span {
  color: var(--text-light);
  font-size: .84rem;
  font-weight: 700;
}
.account-spend strong {
  color: var(--red-dark);
}
.account-reward {
  background: #f0fff4;
  border: 1px solid #b7e4c7;
  color: #1a7f37;
  border-radius: 8px;
  padding: .85rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.account-reward span,
.account-reward small {
  font-size: .82rem;
}
.account-reward strong {
  color: #14532d;
  font-size: 1.15rem;
  letter-spacing: .04em;
}
.account-reward-progress {
  background: #fafafa;
  border-color: #e5e5e5;
  color: #555;
}
.account-discount-link {
  display: block;
  text-align: center;
  margin: 0 0 1rem;
  padding: .7rem .9rem;
  border-radius: 8px;
  background: var(--red-dark);
  color: var(--cream);
  font-weight: 900;
}
.account-discount-link:hover {
  background: var(--red);
}
.account-card dl {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.account-card dt {
  color: var(--pasture);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.account-card dd {
  color: var(--charcoal);
  font-weight: 700;
}
.account-orders {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.account-order {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--bone);
  padding-bottom: .65rem;
}
.account-order:last-child {
  border-bottom: 0;
}
.account-order div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.account-order span {
  color: var(--text-light);
  font-size: .82rem;
}
.order-status {
  align-self: flex-end;
  border-radius: 20px;
  padding: .1rem .55rem;
  font-weight: 800;
  text-transform: capitalize;
}
.order-status-pendiente { background: #fef3cd; color: #856404; }
.order-status-completado { background: #d1e7dd; color: #0f5132; }
.order-status-cancelado { background: #f8d7da; color: #842029; }

@media (max-width: 720px) {
  .auth-grid,
  .account-grid {
    grid-template-columns: 1fr;
  }
  .account-header {
    flex-direction: column;
  }
}

/* ===== Cliente: descuentos ===== */
.discounts-page {
  min-height: calc(100vh - 64px);
  background:
    radial-gradient(circle at 12% 12%, rgba(104,122,62,.18), transparent 32%),
    linear-gradient(135deg, rgba(93,22,15,.08), rgba(104,122,62,.08)),
    var(--cream);
  padding: 4rem 1rem;
}
.discounts-shell {
  max-width: 980px;
  margin: 0 auto;
}
.discounts-hero {
  max-width: 620px;
  margin-bottom: 1.6rem;
}
.discounts-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: .95;
  color: var(--charcoal);
}
.discounts-hero p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-top: .65rem;
}
.discounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.discount-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  background: #fffdf9;
  border: 1px solid var(--bone);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(74,42,28,.1);
  padding: 1.35rem;
}
.discount-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(158,47,36,.1);
}
.discount-card-featured {
  background: linear-gradient(135deg, var(--red-dark), var(--hide));
  color: var(--cream);
  border-color: transparent;
}
.discount-label {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(104,122,62,.16);
  color: var(--pasture);
  padding: .25rem .65rem;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.discount-card-featured .discount-label {
  background: rgba(255,248,239,.14);
  color: var(--cream);
}
.discount-card h2 {
  margin: 1.1rem 0 .5rem;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1.65rem;
  letter-spacing: .04em;
  color: inherit;
}
.discount-card p {
  color: var(--text-light);
  line-height: 1.55;
}
.discount-card-featured p {
  color: rgba(255,248,239,.82);
}
.discount-card small {
  display: block;
  margin-top: 1rem;
  color: var(--pasture);
  font-weight: 800;
}
.discount-card-featured small {
  color: rgba(255,248,239,.76);
}
.discount-empty {
  background: #fffdf9;
  border: 1px solid var(--bone);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(74,42,28,.1);
  padding: 2rem;
}
.discount-empty h2 {
  font-size: 2rem;
  margin-bottom: .45rem;
}
.discount-empty p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.discounts-footer {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
