/* ============================================================
   Snoopy's Pet Shop — "premium.css"
   Diseño separado (v2 experimental) inspirado en los mejores
   sitios de e-commerce de mascotas: Tails, ZIWI, Pets at Home,
   Puppis, CountryPet, Supermascotas.

   Principios aplicados:
   · Mucho aire (whitespace) y jerarquía editorial
   · Tipografía display serif (Fraunces) + sans limpia (Jakarta)
   · Paleta crema / verde profundo / terracota / ámbar
   · Bordes finos, sombras suaves, micro-raciones
   · Secciones alternadas con contraste (claro → verde profundo)
   · Mobile-first con refinamientos en desktop
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #FAF7F1;
  --bg-soft: #F3EFE6;
  --surface: #FFFFFF;
  --ink: #1C2B24;
  --ink-soft: #5F6B64;
  --ink-faint: #8B948E;
  --forest: #1F4A3A;
  --forest-2: #2C624C;
  --forest-3: #3A7A5F;
  --mint: #E9F0EB;
  --mint-deep: #DCECE1;
  --clay: #C4643C;
  --clay-deep: #A84E2B;
  --clay-soft: #F7E7DC;
  --amber: #E4A84B;
  --amber-soft: #FAEFDC;
  --line: #E8E0D1;
  --line-2: #DDD3C0;
  --shadow-sm: 0 1px 2px rgba(31,42,37,.05), 0 6px 18px rgba(31,42,37,.05);
  --shadow-md: 0 2px 4px rgba(31,42,37,.06), 0 18px 44px rgba(31,42,37,.09);
  --shadow-lg: 0 6px 14px rgba(31,42,37,.08), 0 30px 70px rgba(31,42,37,.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 700; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--clay);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--clay); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 26px; height: 2px; background: var(--clay); border-radius: 2px; }
.eyebrow--light { color: var(--amber); }
.eyebrow--light::before { background: var(--amber); }
.eyebrow--light.eyebrow--center::after { background: var(--amber); }

.section-head { max-width: 640px; margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4.2vw, 3rem); margin: .7rem 0 .7rem; letter-spacing: -.02em; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

.section { padding: clamp(3.2rem, 8vw, 6.5rem) 0; }
.section--surface { background: var(--bg-soft); }
.section--mint { background: var(--mint); }
.section--dark { background: var(--forest); color: #F2ECE1; }

.mt-2 { margin-top: 1.4rem; }
.mt-3 { margin-top: 2.2rem; }
.text-center { text-align: center; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font: 700 .95rem/1 var(--font-body);
  padding: .95rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn .wa-ico { width: 17px; height: 17px; }
.btn--wa { background: #22a65a; color: #fff; box-shadow: 0 10px 24px rgba(34,166,90,.28); }
.btn--wa:hover { background: #1e9450; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(34,166,90,.34); }
.btn--forest { background: var(--forest); color: #F6F1E6; }
.btn--forest:hover { background: var(--forest-2); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(31,74,58,.25); }
.btn--clay { background: var(--clay); color: #fff; }
.btn--clay:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(196,100,60,.3); }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--forest); background: rgba(31,74,58,.05); }
.btn--ghost-light { background: transparent; color: #F0F1E6; border-color: rgba(240,241,230,.35); }
.btn--ghost-light:hover { border-color: #F0F1E6; background: rgba(240,241,230,.08); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn--sm { padding: .66rem 1.1rem; font-size: .86rem; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   TOPBAR + HEADER
   ============================================================ */
.topbar {
  background: var(--forest);
  color: rgba(247,243,234,.92);
  font-size: .8rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .5rem; padding-bottom: .5rem; }
.topbar__msg { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(228,168,75,.6); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%{box-shadow:0 0 0 0 rgba(228,168,75,.55)} 70%{box-shadow:0 0 0 9px rgba(228,168,75,0)} 100%{box-shadow:0 0 0 0 rgba(228,168,75,0)} }
.topbar strong { color: #F0ECDD; }
.topbar .topbar__cta { color: var(--amber); font-weight: 700; }
.topbar .topbar__cta:hover { text-decoration: underline; }
.topbar__right { display: flex; align-items: center; gap: 1.1rem; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,247,241,.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.5); backdrop-filter: blur(14px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(31,42,37,.06); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__logo { width: 44px; height: 44px; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; line-height: 1.1; letter-spacing: -.01em; display: block; }
.brand__name em { font-style: italic; color: var(--clay); }
.brand__tag { font-size: .72rem; color: var(--ink-faint); letter-spacing: .04em; display: block; }

.nav-list { display: flex; align-items: center; gap: .35rem; }
.nav-list a {
  font-size: .92rem; font-weight: 600; color: var(--ink-soft);
  padding: .5rem .95rem; border-radius: var(--radius-pill);
  position: relative; transition: color .2s;
}
.nav-list a:hover { color: var(--forest); background: var(--mint); }
.nav-list a.active { color: var(--forest); }
.nav-list a.active::after {
  content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .28rem;
  height: 2px; border-radius: 2px; background: var(--clay);
}

.header-tools { display: flex; align-items: center; gap: .55rem; }
.btn-cart {
  position: relative;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line-2); background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center; color: var(--forest);
  transition: .22s var(--ease);
}
.btn-cart:hover { background: var(--forest); color: #fff; border-color: var(--forest); transform: translateY(-1px); }
.btn-cart svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -3px; right: -3px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: var(--radius-pill); background: var(--clay); color: #fff;
  font-size: .68rem; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}
.cart-count[data-count="0"] { background: var(--line-2); color: var(--ink-soft); }

.phone-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .9rem; color: var(--forest);
  padding: .65rem 1.05rem; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-2); background: var(--surface);
  transition: .22s var(--ease);
}
.phone-pill:hover { border-color: var(--forest-2); box-shadow: var(--shadow-sm); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line-2); background: var(--surface);
  align-items: center; justify-content: center;
}
.burger span { width: 18px; height: 2.4px; border-radius: 2px; background: var(--forest); transition: .25s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(1000px 520px at 85% -10%, rgba(228,168,75,.18), transparent 60%),
    radial-gradient(900px 620px at -12% 110%, rgba(44,98,76,.14), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .9fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding-top: clamp(2.6rem, 6vw, 5rem); padding-bottom: clamp(3rem,7vw,5.5rem);
}
.hero__tag {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: .45rem .95rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; color: var(--forest-2);
  box-shadow: var(--shadow-sm);
}
.hero__tag .pt{color:var(--clay)}

.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  letter-spacing: -.03em; line-height: 1.04;
  margin: 1.3rem 0 1.1rem;
}
.hero h1 .accent { font-style: italic; color: var(--clay); position: relative; white-space: nowrap; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .16em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='10' viewBox='0 0 120 10'%3E%3Cpath d='M2 7 C 30 2, 60 9, 118 4' fill='none' stroke='%23E4A84B' stroke-width='3.4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.hero__lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 34rem; margin: 0 0 1.7rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 0; list-style: none; margin: 0; padding: 1.2rem 0 0; border-top: 1px solid var(--line); }
.hero__stats li { padding-right: 2.2rem; margin-right: 2.2rem; border-right: 1px solid var(--line); }
.hero__stats li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__stats b { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--forest); line-height: 1.1; }
.hero__stats b .num { font-variant-numeric: tabular-nums; }
.hero__stats span { font-size: .8rem; color: var(--ink-soft); }

/* — Arte (derecha) — */
.hero__art { position: relative; }
.hero__blob { position: absolute; top: -6%; right: -4%; width: 108%; height: 104%; border-radius: 50%; background: var(--mint); z-index: 0; }
.hero__ring { position: absolute; top: -10%; right: -8%; width: 96%; height: 96%; border-radius: 50%; border: 1.5px dashed var(--line-2); z-index: 0; animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__frame {
  position: relative; z-index: 1;
  border-radius: 170px 170px 38px 38px;
  border: 1px solid var(--surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #FCF7EE, #F3EBDD);
}
.hero__frame img { width: 100%; height: auto; }

.chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: .5rem .9rem;
  box-shadow: var(--shadow-md);
  font-size: .8rem; font-weight: 700; color: var(--forest);
  animation: floaty 5.5s ease-in-out infinite;
}
.chip--rating { top: 7%; left: -6%; animation-delay: .4s; }
.chip--delivery { bottom: 18%; right: -5%; animation-delay: 1.4s; }
.chip--code { top: 52%; left: -9%; animation-delay: 2.2s; }
.chip .chip-ic {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; flex: none;
}
.chip .chip-ic.clay { background: var(--clay); }
.chip .chip-ic.forest { background: var(--forest-2); }
.chip .chip-ic.amber { background: var(--amber); }
.chip b { display: block; line-height: 1.1; }
.chip small { font-weight: 600; color: var(--ink-faint); letter-spacing: .02em; display: block; }
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-9px) } }

/* ============================================================
   LOGO STRIP
   ============================================================ */
.logostrip { border-bottom: 1px solid var(--line); background: var(--surface); padding: 1.6rem 0; }
.logostrip .container { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: .8rem 2rem; }
.logostrip__label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-right: .6rem; }
.logo-pill { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--ink-soft); letter-spacing: -.01em; display: inline-flex; align-items: center; gap: .45rem; opacity: .82; transition: opacity .2s, transform .2s; }
.logo-pill:hover { opacity: 1; transform: translateY(-1px); }
.logo-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }

/* ============================================================
   CATEGORÍAS
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cat-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.7rem 1.4rem 1.5rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.cat-card::after {
  content: "→"; position: absolute; top: 1.2rem; right: 1.3rem;
  font-size: 1.15rem; color: var(--clay);
  opacity: 0; transform: translateX(-8px); transition: .3s var(--ease);
  font-weight: 700;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.cat-card:hover::after { opacity: 1; transform: translateX(0); }
.cat-card__ic { width: 54px; height: 54px; border-radius: 18px; display: inline-flex; align-items: center; justify-content: center; color: var(--forest); background: var(--mint); }
.cat-card__ic.clay { color: var(--clay); background: var(--clay-soft); }
.cat-card__ic.amber { color: #B07D21; background: var(--amber-soft); }
.cat-card__ic svg { width: 27px; height: 27px; }
.cat-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; letter-spacing: -.01em; }
.cat-card p { margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.5; }

/* ============================================================
   TARJETAS DE PRODUCTO (reutiliza markup de js/main.js productCard)
   ============================================================ */
.grid-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card__media { position: relative; display: block; padding: .85rem .85rem 0; }
.card__media img { width: 100%; border-radius: 18px; background: linear-gradient(180deg, #FCF7EE, #F1E6D2); transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.03); }
.badge-ribbon {
  position: absolute; top: 1.2rem; left: 1.15rem; z-index: 2;
  font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--clay);
  padding: .34rem .7rem; border-radius: var(--radius-pill);
  box-shadow: 0 6px 14px rgba(201,100,58,.3);
}
.badge-ribbon--amber { background: var(--amber); color: #5C430C; box-shadow: 0 6px 14px rgba(180,140,40,.3); }
.card__body { padding: .9rem 1.05rem 1.1rem; display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.card__cat { font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--forest-3); }
.card__title { font-size: .98rem; font-weight: 700; line-height: 1.3; }
.card__title a:hover { color: var(--clay); }
.card__meta { font-size: .76rem; color: var(--ink-faint); }
.card__price { margin-top: .5rem; font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; }
.card__price .price-unit { font-family: var(--font-body); font-size: .74rem; font-weight: 600; color: var(--ink-faint); margin-left: .3rem; }
.card__actions { margin-top: auto; display: flex; align-items: center; gap: .55rem; padding-top: .8rem; }
.card__actions .qty { display: flex; align-items: center; gap: 2px; background: var(--bg-soft); border-radius: var(--radius-pill); padding: 3px; }
.qty button {
  width: 27px; height: 27px; border: 0; border-radius: 50%;
  background: var(--surface); color: var(--forest); font-size: 1rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 2px rgba(31,42,37,.08); transition: .2s;
}
.qty button:hover { background: var(--forest); color: #fff; }
.qty b { font-size: .84rem; min-width: 1.5rem; text-align: center; }
.btn-add {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  border: 0; border-radius: var(--radius-pill);
  background: var(--forest); color: #fff;
  font-size: .86rem; font-weight: 700; padding: .68rem .7rem;
  transition: .22s var(--ease);
}
.btn-add:hover { background: var(--clay); }
.btn-add.added { background: #32A65A; }

/* ============================================================
   VALOR DE MARCA (por qué nosotros)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.reason-list { display: grid; gap: .4rem; }
.reason {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  padding: 1.05rem 1.05rem; border-radius: var(--radius-md);
  transition: background .25s, transform .25s var(--ease);
}
.reason:hover { background: var(--surface); transform: translateX(4px); }
.reason__n {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--amber-soft); color: #A3771E; font-family: var(--font-display); font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}
.reason h3 { font-size: 1.05rem; font-weight: 700; margin: .15rem 0 .15rem; }
.reason h3 .ic { vertical-align: -3px; margin-right: .4rem; color: var(--clay); }
.reason p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.collage__tile {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(180deg,#FDF8EF,#F3E8D4); box-shadow: var(--shadow-sm);
}
.collage__tile img { width: 100%; }
.collage__tile--tall { grid-row: span 2; }
.collage__stamp {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  background: var(--forest); color: #F0ECD9; border-radius: var(--radius-lg);
  padding: 1.2rem; text-align: center;
}
.collage__stamp b { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.1; display: block; }
.collage__stamp span { font-size: .82rem; color: rgba(240,236,217,.8); }

/* ============================================================
   PASOS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.9rem 1.6rem;
  position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__n { font-family: var(--font-display); font-style: italic; font-size: 2.4rem; color: var(--amber); font-weight: 600; display: block; line-height: 1; }
.step h3 { font-size: 1.08rem; font-weight: 700; margin: .9rem 0 .4rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.6; }

/* ============================================================
   ENTREGAS (dark premium)
   ============================================================ */
.zone-grid { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.zone-row { position: relative; }
.zone-row input { position: absolute; opacity: 0; pointer-events: none; }
.zone-row label {
  display: flex; align-items: center; gap: .65rem;
  background: rgba(245,241,231,.06); border: 1px solid rgba(245,241,231,.18);
  color: #EFEBDC; border-radius: var(--radius-md);
  padding: .78rem .95rem; font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: .22s var(--ease);
}
.zone-row label small { font-weight: 500; color: rgba(239,235,220,.58); font-size: .74rem; display: block; }
.zone-row label::before {
  content: ""; width: 18px; height: 18px; flex: none; border-radius: 50%;
  border: 2px solid rgba(239,235,220,.5); transition: .2s;
}
.zone-row input:checked + label { background: rgba(228,168,75,.14); border-color: var(--amber); color: #fff; }
.zone-row input:checked + label::before { border-color: var(--amber); box-shadow: inset 0 0 0 5px var(--amber); }
.zone-row input:focus-visible + label { outline: 2px solid var(--amber); outline-offset: 2px; }

.zone-result {
  display: none; align-items: flex-start; gap: .8rem; margin-top: 1.1rem;
  padding: 1rem 1.1rem; border-radius: var(--radius-md);
}
.zone-result.show { display: flex; animation: fadeUp .35s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.zone-result.ok { background: rgba(82,166,120,.16); border: 1px solid rgba(120,200,155,.35); }
.zone-result.rappi { background: rgba(228,168,75,.14); border: 1px solid rgba(228,168,75,.4); }
.zone-result .zone-ico { font-size: 1.3rem; }
.zone-result b { display: block; }
.zone-result p { margin: .1rem 0 0; font-size: .84rem; opacity: .9; }
.zone-result.ok b { color: #9EDCB5; }
.zone-result.rappi b { color: var(--amber); }

.plank {
  background: rgba(245,241,228,.06); border: 1px solid rgba(245,241,228,.18);
  border-radius: var(--radius-lg); padding: 1.6rem 1.5rem;
}
.plank h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; color: #F4F0E1; }
.info-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.info-table th { text-align: left; color: rgba(244,240,225,.75); font-weight: 500; padding: .55rem .6rem .55rem 0; width: 58%; }
.info-table td { text-align: right; color: #FBF6E9; font-weight: 600; padding: .55rem 0; }
.info-table tr { border-bottom: 1px dashed rgba(245,241,228,.16); }
.info-table tr:last-child { border-bottom: 0; }
.info-table td .tag { font-size: .72rem; font-weight: 700; letter-spacing: .04em; color: #FBF6E9; background: var(--clay); padding: .16rem .5rem; border-radius: var(--radius-pill); }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tcard {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.7rem 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tcard__stars { display: flex; gap: 3px; color: var(--amber); }
.tcard__stars svg { width: 17px; height: 17px; }
.tcard__quote { margin: 0; color: var(--ink); font-size: .97rem; line-height: 1.65; }
.tcard__quote::before { content: "“"; font-family: var(--font-display); font-size: 1.6rem; color: var(--clay); line-height: 0; }
.tcard__who { display: flex; align-items: center; gap: .75rem; padding-top: .4rem; border-top: 1px solid var(--line); }
.tcard__ava {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--mint); color: var(--forest);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
}
.tcard__ava.c { background: var(--clay-soft); color: var(--clay); }
.tcard__ava.a { background: var(--amber-soft); color: #A3771E; }
.tcard__who b { display: block; font-size: .9rem; }
.tcard__who span { font-size: .76rem; color: var(--ink-faint); }

/* ============================================================
   SELLOS / GARANTÍA
   ============================================================ */
.sellos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: .4rem; }
.sello {
  background: rgba(245,241,228,.05); border: 1px solid rgba(245,241,228,.14);
  border-radius: var(--radius-lg); padding: 1.7rem 1.4rem; text-align: center;
  transition: .3s var(--ease);
}
.sello:hover { background: rgba(245,241,228,.09); transform: translateY(-4px); }
.sello__medal {
  width: 58px; height: 58px; border-radius: 20px; margin: 0 auto .95rem;
  background: var(--amber-soft); color: var(--forest-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.sello__medal svg { width: 27px; height: 27px; }
.sello b { display: block; color: #F4EFE0; font-size: 1rem; margin-bottom: .4rem; font-family: var(--font-display); }
.sello span { color: rgba(244,239,224,.72); font-size: .85rem; line-height: 1.55; }

/* ============================================================
   CLUB
   ============================================================ */
.club-plank {
  border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(135deg, #1F4A3A, #18382C);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.4rem;
  padding: clamp(2rem, 5vw, 3.4rem); align-items: center;
  position: relative;
}
.club-plank::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(560px 320px at 110% -20%, rgba(228,168,75,.22), transparent 60%),
    radial-gradient(500px 320px at -10% 120%, rgba(58,122,95,.3), transparent 60%);
}
.club-plank > * { position: relative; z-index: 1; }
.club-plank h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: #FDF8EF; margin: .6rem 0 .7rem; letter-spacing: -.02em; }
.club-plank p { color: rgba(247,241,230,.82); font-size: .96rem; margin: 0; }
.club-plank strong { color: var(--amber); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: .9rem; }
.field label { display: block; font-size: .76rem; font-weight: 700; letter-spacing: .04em; color: #E9E2CE; margin-bottom: .35rem; }
.field input {
  width: 100%; border: 1px solid rgba(245,241,228,.28); border-radius: var(--radius-md);
  background: rgba(245,241,228,.07); color: #F5F0E1; padding: .82rem 1rem;
  font: 500 .95rem var(--font-body); outline: none; transition: .22s;
}
.field input::placeholder { color: rgba(245,241,228,.4); }
.field input:focus { border-color: var(--amber); background: rgba(245,241,228,.12); }
.club-plank .btn { width: 100%; }
.form-note { font-size: .72rem; color: rgba(247,243,230,.5) !important; margin-top: .6rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: .7rem; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: border-color .25s; }
.faq__item[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer;
  list-style: none; padding: 1.05rem 1.25rem; font-weight: 700; font-size: .98rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .plus {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  background: var(--mint); color: var(--forest);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem; transition: .25s var(--ease);
}
.faq__item[open] .plus { transform: rotate(45deg); background: var(--clay); color: #fff; }
.faq__a { padding: 0 1.25rem 1.15rem; color: var(--ink-soft); font-size: .93rem; line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #152820; color: rgba(240,236,221,.78); padding: clamp(3rem,6vw,4.5rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.2rem; padding-bottom: 2.5rem; }
.footer-grid h4 { color: #F4EFE0; font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin: 1rem 0 1.2rem; max-width: 24rem; }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .88rem; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--amber); }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.footer-contact li { display: flex; gap: .6rem; font-size: .86rem; line-height: 1.45; }
.footer-contact svg { width: 17px; height: 17px; flex: none; color: var(--amber); margin-top: 3px; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(237,236,220,.2); background: rgba(237,236,220,.04);
  display: inline-flex; align-items: center; justify-content: center; color: #F4EFE0; transition: .22s;
}
.footer-social a:hover { background: var(--amber); border-color: var(--amber); color: #27341b; transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }

.pay-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.pay-chip {
  font-size: .72rem; font-weight: 700; letter-spacing: .03em; color: #EFEBDC;
  border: 1px solid rgba(237,236,220,.22); border-radius: var(--radius-pill);
  padding: .35rem .75rem; background: rgba(237,236,220,.05);
}
.footer-bottom {
  border-top: 1px solid rgba(237,236,220,.14);
  padding: 1.3rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; font-size: .8rem;
}
.footer-seal { display: flex; gap: 1.2rem; }
.footer-seal span { display: inline-flex; align-items: center; gap: .4rem; }
.footer-seal svg { width: 14px; height: 14px; color: var(--amber); }
.footer a.classic { color: var(--amber); font-weight: 700; }

/* ============================================================
   FLOTANTES
   ============================================================ */
.wa-float {
  position: fixed; z-index: 70; right: 22px; bottom: 22px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #32A65A; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(34,166,90,.4);
  transition: transform .25s var(--ease);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-4px) scale(1.04); }

.mobilebar {
  display: none;
  position: fixed; z-index: 65; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  gap: .5rem;
}
.mobilebar .btn { flex: 1; padding: .8rem .5rem; font-size: .86rem; border-radius: var(--radius-md); }
.mobilebar .btn--wa { border-radius: var(--radius-pill); }

/* ============================================================
   CARRITO (drawer) — reutiliza main.js
   ============================================================ */
.cart-backdrop {
  position: fixed; inset: 0; z-index: 90; background: rgba(23,37,30,.55);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.cart-backdrop.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; z-index: 95; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--surface); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .38s var(--ease);
  box-shadow: -20px 0 60px rgba(20,37,28,.18);
}
.cart-drawer.show { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.cart-close {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--bg); font-size: 1rem; color: var(--ink); transition: .2s;
}
.cart-close:hover { background: var(--clay); border-color: var(--clay); color: #fff; }
.cart-body { flex: 1; overflow-y: auto; padding: .8rem 1.4rem 1rem; }
.cart-empty {
  height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .8rem; text-align: center; color: var(--ink-faint); font-size: .9rem;
}
.cart-empty svg { width: 46px; height: 46px; color: var(--line-2); }
.cart-empty p { margin: 0; max-width: 220px; }
.cart-item {
  display: grid; grid-template-columns: 58px 1fr; gap: .8rem; align-items: center;
  padding: .8rem 0; border-bottom: 1px solid var(--line);
}
.cart-item img { width: 58px; height: 58px; border-radius: 14px; background: linear-gradient(180deg,#FCF7EE,#F2E7D4); object-fit: cover; }
.cart-item__info { display: flex; flex-direction: column; gap: .15rem; }
.cart-item__info b { font-size: .86rem; line-height: 1.3; }
.cart-item__info .u { font-size: .72rem; color: var(--ink-faint); }
.cart-item__info .qty { display: flex; align-items: center; gap: 2px; margin-top: .3rem; background: var(--bg-soft); border-radius: var(--radius-pill); padding: 2px; width: fit-content; }
.cart-item__info .qty button { width: 24px; height: 24px; font-size: .9rem; }
.cart-item__info .cart-item__sub { font-family: var(--font-display); font-weight: 600; font-size: .94rem; }
.cart-item__side { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; gap: .5rem; }
.cart-item__del { border: 0; background: none; color: var(--ink-faint); font-size: .72rem; text-decoration: underline; }
.cart-item__del:hover { color: var(--clay); }
.cart-foot { border-top: 1px solid var(--line); padding: 1rem 1.4rem 1.3rem; }
.cart-total { display: flex; align-items: center; justify-content: space-between; font-weight: 800; margin-bottom: .8rem; }
.cart-total span:last-child { font-family: var(--font-display); font-size: 1.35rem; color: var(--forest); }
.cart-foot .btn { width: 100%; }
#cart-send.is-disabled { opacity: .45; pointer-events: none; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal--l { transform: translateX(-24px); }
.reveal--r { transform: translateX(24px); }
.reveal--l.in, .reveal--r.in { transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .grid-products, .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .sellos { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; margin: 0 auto; width: 100%; order: -1; }
  .hero__frame { border-radius: 130px 130px 30px 30px; }
  .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__stats li:nth-child(3) { border-right: 0; }
  .chip--rating { left: -2% !important; }
  .chip--delivery { right: -2% !important; }
  .chip--code { left: -3% !important; }
}
@media (max-width: 780px) {
  .nav-list {
    position: fixed; top: 74px; left: 0; right: 0; z-index: 55;
    background: var(--surface); flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: .6rem 1rem 1rem;
    display: flex; opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: .3s var(--ease);
  }
  .nav-list.open { opacity: 1; visibility: visible; transform: none; }
  .nav-list a { padding: .85rem 1rem; font-size: 1rem; }
  .nav-list a.active::after { display: none; }
  .burger { display: inline-flex; }
  .phone-pill .phn { display: none; }
  .phone-pill { width: 46px; height: 46px; padding: 0; justify-content: center; }
  .grid-products, .cat-grid, .tcards { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .mobilebar { display: flex; }
  .wa-float { bottom: 84px; }
  body { padding-bottom: 64px; }
  .topbar__right .topbar__off { display: none; }
}
@media (max-width: 480px) {
  .grid-products, .cat-grid, .tcards { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr; }
  .hero__stats li { padding-right: 1.2rem; margin-right: 1.2rem; }
  .chip--rating { top: 4%; }
  .chip--code { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}