/* ============================================================
   Snoopy's Pet Shop — Design System
   Paleta premium 2026 (tierras cálidas). HTML5 + CSS3 vanilla.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg:        #F7F1E6;   /* crema base */
  --bg-alt:    #FBF7EE;   /* crema clara */
  --bg-mint:   #EEF2E6;   /* hoja clara */
  --forest:    #2E4237;   /* verde bosque (primario) */
  --forest-deep:#22372C;
  --forest-soft:#40584B;
  --clay:      #C4643C;   /* terracota (CTA) */
  --clay-deep: #A64E2C;
  --clay-soft: #D5794E;
  --amber:     #E4A84B;
  --amber-soft:#F0C07A;
  --ink:       #26241E;
  --muted:     #6E6556;
  --line:      #E2D6BC;
  --white:     #FFFFFF;
  --wa:        #1FAF67;
  --card:      #FDFAF3;
  --shadow-1:  0 10px 30px -18px rgba(38,36,30,.35);
  --shadow-2:  0 26px 60px -28px rgba(38,36,30,.42);
  --shadow-3:  0 2px 8px rgba(38,36,30,.10);
  --radius-l:  26px;
  --radius-m:  18px;
  --radius-s:  12px;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- reset base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.12; font-weight: 600; color: var(--ink); margin: 0 0 .4em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.15rem, 4.6vw, 3.55rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); }
p { margin: 0 0 1em; }
img, svg { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--clay); }
ul { padding: 0; margin: 0; }
li { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: var(--ink); }
::selection { background: var(--amber); color: var(--ink); }

.container { width: min(1180px, 92vw); margin-inline: auto; }

.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--tint { background: var(--bg-alt); }
.section--mint { background: var(--bg-mint); }
.section--dark { background: var(--forest); color: #F3EBDD; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #FDF8EF; }
.section--dark .eyebrow, .section--dark p { color: rgba(247,241,230,.78); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--clay);
  margin-bottom: .75rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--amber); }

.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); max-width: 62ch; }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head p:last-child { margin-bottom: 0; }

/* ---------- botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 1rem 1.7rem; border-radius: 999px;
  transition: transform .18s var(--ease), box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
  white-space: nowrap; text-align: center;
}
.btn:active { transform: scale(.97); }
.btn--clay  { background: var(--clay); color: #FFF7EE; box-shadow: 0 14px 30px -14px rgba(196,100,60,.75); }
.btn--clay:hover { background: var(--clay-deep); color: #FFF7EE; transform: translateY(-2px); }
.btn--forest { background: var(--forest); color: #F3EBDD; box-shadow: var(--shadow-3); }
.btn--forest:hover { background: var(--forest-deep); color: #FFF7EE; transform: translateY(-2px); }
.btn--outline { border: 2px solid var(--forest); color: var(--forest); background: transparent; }
.btn--outline:hover { background: var(--forest); color: var(--bg); transform: translateY(-2px); }
.btn--outline-light { border: 2px solid rgba(243,235,221,.55); color: #F3EBDD; }
.btn--outline-light:hover { background: #F3EBDD; color: var(--forest); transform: translateY(-2px); }
.btn--wa      { background: var(--wa); color: #F4FFF9; box-shadow: 0 14px 26px -14px rgba(31,175,103,.8); }
.btn--wa:hover{ background: #159A56; transform: translateY(-2px); color: #F4FFF9; }
.btn--ghost   { color: var(--forest); font-weight: 700; }
.btn--ghost:hover { color: var(--clay); }
.btn--sm { padding: .72rem 1.15rem; font-size: .88rem; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn.is-disabled { opacity: .5; pointer-events: none; }
.btn svg { flex: none; }

/* icono whatsapp (inline) */
.wa-ico { width: 20px; height: 20px; }

/* ---------- barra promocional ---------- */
.topbar {
  background: var(--forest-deep); color: #EFE6D3;
  text-align: center; font-size: .86rem; font-weight: 600;
  padding: .62rem 1rem; letter-spacing: .02em;
}
.topbar strong { color: var(--amber); }
.topbar .container { display: flex; align-items: center; justify-content: center; gap: .6rem; flex-wrap: wrap; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,241,230,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224,214,188,.6);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px -18px rgba(38,36,30,.35); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 0; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand__logo { width: 52px; height: 52px; flex-shrink: 0; filter: drop-shadow(0 6px 12px rgba(46,66,55,.22)); }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.34rem; color: var(--forest); line-height: 1; letter-spacing: -.02em; }
.brand__name em { font-style: normal; color: var(--clay); }
.brand__tag { font-size: .62rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav-list { display: flex; align-items: center; gap: .35rem; }
.nav-list a {
  padding: .6rem .95rem; border-radius: 999px; font-weight: 600; font-size: .93rem;
  color: var(--ink); position: relative;
}
.nav-list a:hover { color: var(--clay); background: rgba(196,100,60,.08); }
.nav-list a.active { color: var(--clay); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }
.phone-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .9rem; color: var(--forest);
  border: 1.5px solid var(--line); border-radius: 999px; padding: .55rem .95rem;
  background: var(--card); transition: border-color .2s, transform .2s;
}
.phone-pill:hover { border-color: var(--forest); transform: translateY(-1px); }

.cart-btn {
  position: relative; width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest); color: #F3EBDD; display: grid; place-items: center;
  transition: transform .2s ease, background .2s;
  box-shadow: var(--shadow-1);
}
.cart-btn:hover { background: var(--clay); transform: translateY(-1px); }
.cart-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: -2px; right: -2px;
  min-width: 19px; height: 19px; padding: 0 4px; border-radius: 999px;
  background: var(--clay); color: #fff; font-size: .66rem; font-weight: 800;
  display: grid; place-items: center; border: 2px solid var(--bg);
}
.cart-count[data-count="0"] { display: none; }

.burger { display: none; width: 46px; height: 46px; border-radius: 50%; place-items: center; background: var(--card); border: 1px solid var(--line); }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; display: block; margin: 3.5px auto; transition: .3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 60px);
  align-items: center; padding: clamp(46px, 7vw, 90px) 0 clamp(30px, 5vw, 56px);
}
.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; border-radius: var(--radius-l); box-shadow: var(--shadow-2); }
.hero__blob { position: absolute; inset: -6% -8%; background: radial-gradient(circle at 70% 30%, rgba(228,168,75,.22), transparent 60%); z-index: -1; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1rem; font-size: .82rem; font-weight: 700; color: var(--forest);
  box-shadow: var(--shadow-3); margin-bottom: 1.25rem;
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 4px rgba(196,100,60,.16); }
.hero__lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 1.6rem; max-width: 46ch; }
.hero__actions { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; }
.hero__mini {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  font-size: .86rem; color: var(--muted); font-weight: 600;
}
.hero__mini b { color: var(--forest); font-size: 1.1rem; display: block; }

.hero__scroll { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); color: var(--muted); opacity: .6; animation: bob 2.4s infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,6px);} }

/* ---------- banda de confianza (marquee) ---------- */
.trustbar { background: var(--forest); color: #E9EFDF; overflow: hidden; padding: 1rem 0; }
.trustbar__track { display: flex; gap: 3.2rem; width: max-content; animation: marquee 30s linear infinite; }
.trustbar__track span { font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .6rem; white-space: nowrap; }
.trustbar__track svg { width: 18px; height: 18px; color: var(--amber); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- chips & filtros ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  border: 1.5px solid var(--line); background: var(--card); color: var(--ink);
  border-radius: 999px; padding: .55rem 1.05rem; font-weight: 600; font-size: .9rem;
  transition: .18s ease;
}
.chip:hover { border-color: var(--forest); color: var(--forest); transform: translateY(-1px); }
.chip.is-active { background: var(--forest); border-color: var(--forest); color: #F3EBDD; box-shadow: var(--shadow-3); }

/* ---------- tarjetas ---------- */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l);
  overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }

.card__media { position: relative; aspect-ratio: 1 / 1; display: block; background: linear-gradient(160deg, #FDF9F0, #EFE3CB); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }

.badge-ribbon {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--clay); color: #fff; font-size: .7rem; font-weight: 800;
  padding: .42rem .75rem; border-radius: 999px; letter-spacing: .04em;
  box-shadow: var(--shadow-3);
}
.badge-ribbon--amber { background: var(--amber); color: var(--forest-deep); }

.card__body { padding: 1.15rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card__cat { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--clay); }
.card__title { margin: 0; font-size: 1.08rem; line-height: 1.3; }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--clay); }
.card__meta { font-size: .84rem; color: var(--muted); }
.card__price { display: flex; align-items: baseline; gap: .5rem; margin-top: .1rem; }
.price-now { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--forest); }
.price-was { color: var(--muted); text-decoration: line-through; font-size: .92rem; }
.price-unit { margin-left: auto; font-size: .8rem; color: var(--muted); font-weight: 600; }

.card__actions { display: flex; gap: .6rem; align-items: stretch; margin-top: .55rem; }
.qty {
  display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 2px; background: #fff;
}
.qty button { width: 34px; height: 34px; border-radius: 50%; font-size: 1.05rem; font-weight: 700; color: var(--forest); }
.qty button:hover { background: var(--bg-mint); }
.qty b { min-width: 28px; text-align: center; font-size: .95rem; }

.btn-add {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--forest); color: #F3EBDD; border-radius: 999px;
  font-weight: 700; font-size: .9rem; padding: .85rem 1.1rem; transition: .2s ease;
}
.btn-add:hover { background: var(--clay); color: #fff; }

/* tarjeta categoría */
.cat-card {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  padding: 1.6rem; display: block; transition: .28s var(--ease);
  min-height: 210px;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.cat-card__ic { width: 64px; height: 64px; border-radius: 22px; display: grid; place-items: center; background: var(--bg-mint); margin-bottom: 1rem; }
.cat-card__ic svg { width: 34px; height: 34px; }
.cat-card h3 { margin: 0 0 .25rem; font-size: 1.22rem; }
.cat-card p { color: var(--muted); font-size: .9rem; margin: 0; }
.cat-card .go { position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-mint); color: var(--forest); transition: .25s var(--ease); }
.cat-card:hover .go { background: var(--clay); color: #fff; }

/* tarjeta de característica / sello */
.feature { display: flex; flex-direction: column; gap: .9rem; padding: 1.6rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); }
.feature__ic { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: var(--bg-mint); color: var(--forest); }
.feature__ic svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.feature p { color: var(--muted); font-size: .93rem; margin: 0; }

/* sellos de garantía */
.sello {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .7rem;
  padding: 1.8rem 1.2rem; background: var(--card); border: 1.5px solid var(--line);
  border-radius: var(--radius-l);
}
.sello__medal { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(160deg, var(--amber), var(--amber-soft)); color: var(--forest-deep); }
.sello__medal svg { width: 38px; height: 38px; }
.sello b { font-family: var(--font-display); font-size: 1.08rem; }
.sello span { font-size: .82rem; color: var(--muted); line-height: 1.45; }

/* testimonios */
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-3); }
.tcard__stars { display: flex; gap: 3px; color: var(--amber); }
.tcard__stars svg { width: 17px; height: 17px; }
.tcard__quote { font-size: .98rem; color: var(--ink); line-height: 1.6; flex: 1; }
.tcard__who { display: flex; align-items: center; gap: .8rem; }
.tcard__ava { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; background: var(--bg-mint); display: grid; place-items: center; color: var(--forest); flex-shrink: 0; }
.tcard__ava svg { width: 30px; height: 30px; }
.tcard__who b { display: block; font-size: .93rem; }
.tcard__who span { font-size: .8rem; color: var(--muted); }

/* ---------- pasos (cómo funciona) ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.8rem 1.5rem 1.5rem; }
.step__n {
  counter-increment: step; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; background: var(--forest); color: var(--amber);
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem;
}
.step__n::before { content: counter(step); }
.step h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- formularios ---------- */
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field label { font-size: .85rem; font-weight: 700; color: var(--forest); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: var(--radius-s);
  padding: .85rem 1rem; background: var(--white); color: var(--ink); width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 4px rgba(46,66,56,.12);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.2rem; }
.form-note { font-size: .8rem; color: var(--muted); }

/* ---------- acordeón (FAQ) ---------- */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: .8rem; }
.faq__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.3rem; font-weight: 700; font-size: 1rem; color: var(--ink); text-align: left; }
.faq__q .plus { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-mint); color: var(--forest); display: grid; place-items: center; font-size: 1.2rem; font-weight: 700; flex-shrink: 0; transition: .25s var(--ease); }
.faq__item[open] .faq__q .plus { transform: rotate(45deg); background: var(--clay); color: #fff; }
.faq__a { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: .95rem; }

/* ---------- zonas de entrega ---------- */
.zone-grid { display: grid; gap: 1rem; }
.zone-row {
  display: flex; align-items: center; gap: 1rem; padding: 1.05rem 1.2rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-m);
  font-weight: 600; font-size: .97rem;
}
.zone-row input { width: 22px; height: 22px; accent-color: var(--forest); flex-shrink: 0; }
.zone-result { margin-top: 1.1rem; border-radius: var(--radius-m); padding: 1.2rem 1.4rem; font-size: .97rem; display: none; }
.zone-result.show { display: flex; align-items: flex-start; gap: .8rem; }
.zone-result.ok { background: var(--bg-mint); border: 1.5px solid #C7D5B4; color: var(--forest-deep); }
.zone-result.rappi { background: #FDEBDD; border: 1.5px solid #EFC09E; color: #7A2E14; }

/* ---------- tabla info ---------- */
.info-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.info-table th, .info-table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line); }
.info-table th { font-weight: 700; color: var(--forest); font-size: .88rem; letter-spacing: .02em; }

/* ---------- breadcrumbs ---------- */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-size: .85rem; color: var(--muted); margin-bottom: 1.4rem; }
.crumbs a { color: var(--muted); font-weight: 600; padding: .3rem; }
.crumbs a:hover { color: var(--clay); }
.crumbs span.sep { opacity: .5; }

/* ---------- página ficha producto ---------- */
.pdetail { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.pdetail__img { border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-2); position: sticky; top: 96px; background: linear-gradient(160deg,#FDF9EF,#F1E5CB); }
.pdetail__img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pdetail__price { display: flex; align-items: baseline; gap: .7rem; margin: .3rem 0 1.1rem; }
.pdetail__unit { font-size: .9rem; color: var(--muted); }
.pdetail__desc { color: var(--muted); margin-bottom: 1.5rem; }
.pdetail__perks { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: 1.6rem; }
.pdetail__perk { display: flex; align-items: center; gap: .55rem; font-size: .88rem; font-weight: 600; color: var(--forest); background: var(--bg-mint); border-radius: var(--radius-s); padding: .7rem .9rem; }
.pdetail__perk svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ---------- barra lateral sticky ---------- */
.plank { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.4rem; box-shadow: var(--shadow-3); }

/* ---------- carrito (drawer) ---------- */
.cart-backdrop { position: fixed; inset: 0; background: rgba(38,36,30,.5); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cart-backdrop.show { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 420px;
  background: var(--bg); z-index: 100; transform: translateX(105%);
  transition: transform .38s var(--ease); display: flex; flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(0,0,0,.4);
}
.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 { margin: 0; font-size: 1.3rem; }
.cart-close { width: 40px; height: 40px; border-radius: 50%; background: var(--card); border: 1px solid var(--line); font-size: 1.2rem; color: var(--ink); display: grid; place-items: center; }
.cart-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }
.cart-empty { text-align: center; color: var(--muted); padding: 3rem 1rem; display: grid; gap: .8rem; place-items: center; }
.cart-empty svg { width: 70px; height: 70px; opacity: .5; }
.cart-item { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px dashed var(--line); }
.cart-item img { width: 66px; height: 66px; border-radius: 14px; border: 1px solid var(--line); flex-shrink: 0; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__info b { font-size: .92rem; display: block; line-height: 1.3; }
.cart-item__info .u { font-size: .78rem; color: var(--muted); }
.cart-item__sub { font-weight: 700; color: var(--clay); }
.cart-item__del { color: var(--muted); font-size: .78rem; text-decoration: underline; margin-top: 2px; }
.cart-item__del:hover { color: var(--clay); }
.cart-item .qty b { min-width: 22px; font-size: .88rem; }
.cart-foot { padding: 1rem 1.4rem 1.4rem; border-top: 1px solid var(--line); display: grid; gap: .8rem; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.05rem; }
.cart-total span { color: var(--forest); font-family: var(--font-display); font-size: 1.25rem; }

/* botón flotante whatsapp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(31,175,103,.7);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa); animation: pulse 2.2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .7;} 100% { transform: scale(1.65); opacity: 0;} }

/* barra móvil pegajosa */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
  display: none; gap: .6rem; padding: .7rem 1rem .85rem;
  background: rgba(251,247,238,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobilebar .btn { font-size: .9rem; }
.mobilebar .btn--tab { flex: 1; background: var(--card); border: 1.5px solid var(--line); color: var(--forest); border-radius: 999px; }

/* ---------- footer ---------- */
.site-footer { background: var(--forest-deep); color: #CFC6B0; padding: clamp(48px,7vw,80px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.2rem; padding-bottom: 2.6rem; }
.footer-brand .brand { justify-content: flex-start; }
.footer-brand .brand__name, .footer-brand .brand__name small { color: #F3EBDD; }
.footer-brand p { font-size: .92rem; line-height: 1.65; color: #B9B29D; }
.site-footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.1rem; font-weight: 700; }
.footer-links a { display: block; padding: .28rem 0; color: #D9D2BD; font-size: .93rem; }
.footer-links a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; padding: .32rem 0; font-size: .93rem; }
.footer-contact svg { width: 19px; height: 19px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: #D9D2BD; }
.footer-contact a:hover { color: var(--amber); }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(243,235,221,.08); color: #E9E2CE; display: grid; place-items: center; transition: .2s; }
.footer-social a:hover { background: var(--clay); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  border-top: 1px solid rgba(207,198,176,.14); padding: 1.2rem 0;
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; justify-content: space-between;
  font-size: .82rem; color: #9B937F;
}
.footer-bottom a { color: #B9B29D; }
.footer-bottom a:hover { color: var(--amber); }
.footer-seal { display: flex; gap: 1.1rem; align-items: center; }
.footer-seal span { display: inline-flex; align-items: center; gap: .4rem; }
.footer-seal svg { width: 15px; height: 15px; color: var(--amber); }

/* ---------- página interior banner ---------- */
.page-head { background: linear-gradient(180deg, #EFE7D3, var(--bg)); padding: clamp(40px,6vw,72px) 0 clamp(20px,3vw,32px); }
.page-head h1 { margin-bottom: .4rem; }
.page-head .lead { margin: 0; }

/* ---------- reveal & motion ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .trustbar__track { animation: none; } }

/* ---------- layout helpers ---------- */
.grid { display: grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.tiny { font-size: .78rem; color: var(--muted); }
.hscroll { overflow-x: auto; scroll-snap-type: x mandatory; }
.hscroll > * { scroll-snap-align: start; }
h1 .accent, h2 .accent { color: var(--clay); }
h1 .amber-word, h2 .amber-word { color: var(--clay); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 560px; margin-inline: auto; }
  .pdetail { grid-template-columns: 1fr; }
  .pdetail__img { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .nav-list { position: fixed; inset: auto 0 0 0; top: auto; transform: translateY(110%); transition: transform .38s var(--ease); background: var(--bg); border-top: 1px solid var(--line); padding: 1rem 1.2rem calc(92px + 1rem); display: grid; gap: .15rem; z-index: 90; box-shadow: 0 -10px 40px rgba(38,36,30,.2); }
  .nav-list.open { transform: translateY(0); }
  .nav-list a { padding: 1rem 1rem; font-size: 1.05rem; border-radius: var(--radius-s); border-bottom: 1px dashed var(--line); }
  .nav-list a:last-child { border-bottom: none; }
  .phone-pill span.phn { display: none; }
  .nav-cta .btn { display: none; }
  .burger { display: grid; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .split, .form-grid { grid-template-columns: 1fr; }
  .cat-card { min-height: 0; }
  .hero__actions .btn { flex: 1 1 auto; }
  .bottombar-gap { height: 78px; }
  .mobilebar { display: flex; }
  .site-footer { padding-bottom: 96px; }
}
@media (max-width: 520px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .pdetail__perks { grid-template-columns: 1fr; }
  .hero__art { max-width: 100%; }
}