/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: var(--terracotta);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(0,0,0,0.18), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-16);
  align-items: center;
  padding-block: var(--s-24);
  min-height: min(720px, 88vh);
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-12); padding-block: var(--s-16); min-height: 0; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--cream);
}
.hero h1 .script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: -0.15em;
  color: var(--cream);
  opacity: .94;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--font-display);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  margin-top: var(--s-6);
  max-width: 520px;
  color: rgba(248, 241, 232, .92);
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(248, 241, 232, .8);
  margin-bottom: var(--s-6);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: rgba(248, 241, 232, .6);
}
.hero-cta {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-8);
  flex-wrap: wrap;
}
.hero-cta .btn-primary { background: var(--ink); color: var(--cream); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.hero-cta .btn-primary:hover { background: #1a1311; }
.hero-cta .btn-ghost { color: var(--cream); border-color: rgba(248,241,232,.4); }
.hero-cta .btn-ghost:hover { border-color: var(--cream); }

.hero-stat-row {
  display: flex;
  gap: var(--s-10);
  margin-top: var(--s-12);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(248,241,232,.2);
  max-width: 520px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.hero-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,241,232,.7);
  margin-top: 6px;
}

/* Hero visual — tiled product montage */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 12px;
}
.hv-tile {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-pop);
  position: relative;
}
.hv-tile.tall { grid-row: span 2; }
.hv-tile.wide { grid-column: span 2; }
.hv-tile .ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background:
    linear-gradient(135deg, rgba(0,0,0,.05), rgba(0,0,0,.18)),
    var(--bg, var(--sand));
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  position: relative;
}
.hv-tile .ph svg { width: 56%; height: auto; opacity: .55; }
.hv-tile .label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(248,241,232,.92);
  color: var(--ink);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

/* alt hero variants — toggled by data-hero on .hero */
[data-hero="editorial"] .hero { background: var(--paper); color: var(--ink); }
[data-hero="editorial"] .hero h1,
[data-hero="editorial"] .hero h1 .script { color: var(--ink); }
[data-hero="editorial"] .hero h1 .script { color: var(--terracotta); }
[data-hero="editorial"] .hero-sub { color: var(--ink-soft); }
[data-hero="editorial"] .hero-eyebrow { color: var(--terracotta-dk); }
[data-hero="editorial"] .hero-eyebrow::before { background: rgba(42,31,26,.4); }
[data-hero="editorial"] .hero-cta .btn-primary { background: var(--terracotta); color: var(--cream); box-shadow: var(--shadow-cta); }
[data-hero="editorial"] .hero-cta .btn-ghost { color: var(--ink); border-color: var(--line-strong); }
[data-hero="editorial"] .hero-stat-row { border-top-color: var(--line); }
[data-hero="editorial"] .hero-stat .num { color: var(--ink); }
[data-hero="editorial"] .hero-stat .lbl { color: var(--ink-mute); }
[data-hero="editorial"] .hero::after {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(227,105,83,0.08), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(42,31,26,0.04), transparent 55%);
}

[data-hero="centered"] .hero { background: var(--ink); color: var(--cream); }
[data-hero="centered"] .hero-inner { grid-template-columns: 1fr; text-align: center; min-height: min(620px, 80vh); }
[data-hero="centered"] .hero-eyebrow { justify-content: center; }
[data-hero="centered"] .hero-eyebrow::before { display: none; }
[data-hero="centered"] .hero-eyebrow::after { content: ''; width: 28px; height: 1px; background: rgba(248,241,232,.6); }
[data-hero="centered"] .hero h1 { font-size: clamp(56px, 9vw, 128px); }
[data-hero="centered"] .hero h1 .script { color: var(--terracotta-lt); }
[data-hero="centered"] .hero-sub { margin-inline: auto; color: rgba(248,241,232,.78); }
[data-hero="centered"] .hero-cta { justify-content: center; }
[data-hero="centered"] .hero-cta .btn-primary { background: var(--terracotta); }
[data-hero="centered"] .hero-cta .btn-primary:hover { background: var(--terracotta-dk); }
[data-hero="centered"] .hero-stat-row { margin-inline: auto; justify-content: center; }
[data-hero="centered"] .hero-visual { display: none; }
[data-hero="centered"] .hero-text { max-width: 920px; margin-inline: auto; }
[data-hero="centered"] .hero::after {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(227,105,83,0.28), transparent 55%);
}

/* ============================================
   Quiénes somos
   ============================================ */
.about {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-16);
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--s-10); }
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: var(--s-3) 0 var(--s-6);
  color: var(--ink);
  font-weight: 400;
}
.about-text h2 em { font-style: italic; color: var(--terracotta-dk); }
.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 var(--s-4);
  max-width: 520px;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-8);
  max-width: 520px;
}
.pillar {
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--ink);
}
.pillar p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--sand-dk);
  box-shadow: var(--shadow-pop);
}
.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -18px; left: -18px;
  width: 140px; height: 140px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  box-shadow: var(--shadow-pop);
  transform: rotate(-8deg);
}
.about-badge .num {
  display: block;
  font-size: 32px;
  letter-spacing: 0;
  margin-bottom: 2px;
}

/* ============================================
   Catálogo
   ============================================ */
.catalog {
  background: var(--cream);
}
.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
}
.catalog-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: var(--s-3) 0 0;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
}
.catalog-head h2 em { font-style: italic; color: var(--terracotta-dk); }
.catalog-head p {
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}
@media (max-width: 720px) {
  .catalog-head { flex-direction: column; align-items: start; }
}
.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}
.catalog-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  padding: 0 16px;
  height: 48px;
  max-width: 520px;
  transition: border-color .15s, box-shadow .15s;
}
.catalog-search:focus-within {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(227,105,83,.15);
}
.catalog-search > svg { color: var(--ink-mute); flex: 0 0 auto; }
.catalog-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--ink);
  width: 100%;
  padding: 0;
}
.catalog-search input::placeholder { color: var(--ink-mute); }
.catalog-search input::-webkit-search-cancel-button { display: none; }
.catalog-search-clear {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink-soft);
  display: grid; place-items: center;
  flex: 0 0 auto;
  transition: background .15s, color .15s;
}
.catalog-search-clear:hover { background: var(--ink); color: var(--cream); }

.catalog-filters {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}

.catalog-empty {
  text-align: center;
  padding: var(--s-12) var(--s-4);
  color: var(--ink-mute);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
  cursor: pointer;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.filter-chip .num {
  font-size: 11px;
  opacity: .6;
  font-variant-numeric: tabular-nums;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .product-grid { grid-template-columns: 1fr; } }

.product {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop);
}
.product-img {
  aspect-ratio: 4/3;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.product-img .ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background-image: var(--bg, none);
  background-size: cover;
  background-position: center;
}
.product-img .ph svg {
  width: 60%; height: auto; opacity: .35;
}
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--cream);
  color: var(--ink);
}
.product-tag.new { background: var(--terracotta); color: var(--cream); }
.product-tag.bestseller { background: var(--ink); color: var(--cream); }
.product-tag.artisan { background: var(--olive); color: var(--cream); }

.product-body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.product-cat {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.product-name {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.product-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
  flex: 1;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--s-2);
}
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.product-price .unit {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  transition: background .15s, transform .15s;
}
.add-btn:hover { background: var(--terracotta-dk); transform: scale(1.06); }
.add-btn svg { width: 18px; height: 18px; }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  height: 38px;
  overflow: hidden;
}
.qty-stepper button {
  width: 32px; height: 100%;
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 16px;
  transition: background .12s;
}
.qty-stepper button:hover { background: var(--terracotta-dk); }
.qty-stepper .qty {
  min-width: 22px;
  text-align: center;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
}

/* ============================================
   Recipes
   ============================================ */
.recipes {
  background: var(--paper);
}
.recipes-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-6);
  margin-bottom: var(--s-10);
}
.recipes-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  margin: var(--s-3) 0 0;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
}
.recipes-head h2 em { font-style: italic; color: var(--terracotta-dk); }
.recipes-head p {
  max-width: 380px;
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 880px) { .recipe-grid { grid-template-columns: 1fr; } }
.recipe {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.recipe-img {
  aspect-ratio: 5/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sand-dk);
  position: relative;
}
.recipe-img .ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0,0,0,.02), rgba(0,0,0,.12)), var(--bg, var(--sand-dk));
  background-size: cover;
  background-position: center;
}
.recipe-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--terracotta-dk);
  letter-spacing: 0.04em;
}
.recipe h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 4px 0 0;
  font-weight: 500;
  line-height: 1.2;
}
.recipe-meta {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.recipe-meta span + span::before { content: ' · '; opacity: .5; }

/* ============================================
   Envíos / Delivery
   ============================================ */
.envios {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.envios::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(227,105,83,.18), transparent 50%);
  pointer-events: none;
}
.envios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .envios-grid { grid-template-columns: 1fr; gap: var(--s-10); } }

.envios h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  margin: var(--s-3) 0 var(--s-6);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.05;
}
.envios h2 em { font-style: italic; color: var(--terracotta-lt); }
.envios .eyebrow { color: var(--terracotta-lt); }

.zone-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.zone {
  padding: var(--s-3) var(--s-4);
  border: 1px solid rgba(248,241,232,.18);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: 14px;
}
.zone .fee {
  font-family: var(--font-display);
  color: var(--terracotta-lt);
  font-variant-numeric: tabular-nums;
  font-size: 15px;
}

.envios-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.info-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--s-4);
  align-items: start;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(248,241,232,.14);
}
.info-row:last-child { border-bottom: none; }
.info-row .ic {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(227,105,83,.2);
  color: var(--terracotta-lt);
}
.info-row h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 4px;
  font-weight: 500;
}
.info-row p {
  margin: 0;
  font-size: 14px;
  color: rgba(248,241,232,.72);
  line-height: 1.55;
}

/* ============================================
   Contact / Footer
   ============================================ */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-12);
  padding-block: var(--s-16);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: var(--s-8); } }

.footer h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 var(--s-4);
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: 14px; color: var(--ink-soft); transition: color .15s; }
.footer ul a:hover { color: var(--terracotta-dk); }
.footer .brand-statement {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 320px;
  margin: var(--s-3) 0 0;
}
.footer-bar {
  border-top: 1px solid var(--line);
  padding: var(--s-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-mute);
}
@media (max-width: 480px) { .footer-bar { flex-direction: column; gap: 8px; } }

/* ============================================
   Cart drawer
   ============================================ */
.scrim {
  position: fixed; inset: 0;
  background: rgba(42,31,26,.45);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(2px);
}
.scrim.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,.16);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-6);
  border-bottom: 1px solid var(--line);
}
.cart-head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cart-head h3 em { font-style: italic; color: var(--terracotta-dk); }
.close-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sand);
  display: grid;
  place-items: center;
  transition: background .15s, transform .15s;
}
.close-btn:hover { background: var(--ink); color: var(--cream); transform: rotate(90deg); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--s-6);
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--ink-mute);
  gap: var(--s-4);
}
.cart-empty .ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--sand);
  display: grid; place-items: center;
  color: var(--ink-soft);
}
.cart-empty h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.cart-empty p { font-size: 14px; margin: 0; max-width: 240px; }

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: var(--s-4);
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-line:last-child { border-bottom: none; }
.cart-line-img {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: var(--sand);
  background-size: cover;
  background-position: center;
}
.cart-line-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 2px;
  line-height: 1.2;
}
.cart-line-cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 8px;
}
.cart-line-controls {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.cart-line-controls .qty-stepper {
  background: var(--sand);
  color: var(--ink);
  height: 30px;
}
.cart-line-controls .qty-stepper button { width: 26px; color: var(--ink); }
.cart-line-controls .qty-stepper button:hover { background: var(--ink); color: var(--cream); }
.cart-line-controls .qty-stepper .qty { font-size: 13px; }
.cart-line-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}
.cart-line-rm {
  font-size: 11px;
  color: var(--ink-mute);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 4px;
}
.cart-line-rm:hover { color: var(--terracotta-dk); }

.cart-foot {
  border-top: 1px solid var(--line);
  padding: var(--s-6);
  background: var(--paper);
}
.cart-fields {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.cart-field { display: flex; flex-direction: column; gap: 4px; }
.cart-field .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.cart-field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.cart-field input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(227,105,83,.15);
}
.cart-field.invalid input {
  border-color: var(--terracotta-dk);
  background: rgba(227,105,83,.06);
}
.cart-totals {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--s-4);
}
.cart-totals .lbl {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cart-totals .amt {
  font-family: var(--font-display);
  font-size: 32px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cart-foot p.fineprint {
  font-size: 11.5px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: var(--s-3) 0 0;
  text-align: center;
}
.cart-checkout {
  width: 100%;
  padding: 16px;
  font-size: 14.5px;
}

/* ============================================
   Section-level mobile tweaks
   ============================================ */
@media (max-width: 720px) {
  /* hero: tighter stacking, smaller stat row */
  .hero-inner { gap: var(--s-10); padding-block: var(--s-12); }
  .hero-cta { gap: var(--s-2); }
  .hero-cta .btn { flex: 1 1 auto; min-width: 0; }
  .hero-stat-row { gap: var(--s-6); margin-top: var(--s-8); flex-wrap: wrap; }
  .hero-stat .num { font-size: 26px; }
  .hero-visual { min-height: 360px; gap: 8px; }

  /* about: badge smaller and tucked closer */
  .about-badge { width: 110px; height: 110px; font-size: 12px; bottom: -10px; left: -10px; }
  .about-badge .num { font-size: 24px; }
  .about-pillars { grid-template-columns: 1fr; gap: var(--s-4); }

  /* catalog */
  .catalog-search { max-width: none; height: 46px; }
  .catalog-head { gap: var(--s-3); }

  /* envíos: zones in 1 column */
  .envios-grid { gap: var(--s-8); }
  .zone-list { grid-template-columns: 1fr; }

  /* footer */
  .footer-grid { padding-block: var(--s-12); gap: var(--s-8); }
  .footer-bar { padding: var(--s-4) 0; }

  /* cart drawer */
  .cart-drawer { width: 100vw; }
  .cart-head { padding: var(--s-5); }
  .cart-body { padding: var(--s-5); }
  .cart-foot { padding: var(--s-5); }
  .cart-totals .amt { font-size: 28px; }

  /* recipes */
  .recipes-head { gap: var(--s-4); margin-bottom: var(--s-8); }
}

@media (max-width: 480px) {
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-eyebrow::before { width: 18px; }
  .hero-visual { min-height: 320px; }
  .product-body { padding: var(--s-4); gap: var(--s-2); }
  .product-name { font-size: 17px; }
  .product-price { font-size: 19px; }

  /* floating cart FAB: a bit smaller and inset */
  #cart-fab { width: 54px !important; height: 54px !important; bottom: 16px !important; right: 16px !important; }
}

/* Make all interactive elements meet 44px touch-target on mobile where they don't already */
@media (hover: none) and (pointer: coarse) {
  .nav a, .footer ul a { padding-block: 6px; }
}
