/* =============================================================
   SHAGGY KOMBUCHA — styles.css
   Paleta exacta del manual de marca (muestreada del logo):
   verde #11523A · crema #F2E0D5 · naranja #D4540D · amarillo #FAB20E
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --green: #11523A;
  --green-deep: #0A2E21;
  --green-ink: #07231A;
  --cream: #F2E0D5;
  --cream-soft: #E9D6C7;
  --cream-bg: #F6EBE1;
  --cream-mute: rgba(242, 224, 213, 0.68);
  --ink: #1C241F;
  --ink-mute: #5D6660;
  --orange: #D4540D;
  --yellow: #FAB20E;
  --wa: #1FAF5A;

  --fl-accent: #C9A7F5;

  --disp: "Shrikhand", "Cooper Black", serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Archivo", Inter, -apple-system, "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --gutter: clamp(1.25rem, 4.5vw, 4rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --radius: 22px;
}

/* Tema por sabor — controla acentos fuera de los fondos del hero */
body[data-flavor="chill-out"]  { --fl-accent: #C9A7F5; }
body[data-flavor="detox"]      { --fl-accent: #A8DF7E; }
body[data-flavor="sunset-fizz"]{ --fl-accent: #F5936B; }
body[data-flavor="emoliente"]  { --fl-accent: #F2C879; }

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; }
::selection { background: var(--orange); color: var(--cream); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: 0.6rem 1rem; background: var(--cream); color: var(--green-ink);
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* =============================================================
   3. Utilidades
   ============================================================= */
.container { width: min(1200px, 100% - var(--gutter) * 2); margin-inline: auto; }
.kicker {
  font-family: var(--sans); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.1rem;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: currentColor; border-radius: 2px; }
.on-dark .kicker { color: var(--yellow); }
.h2 {
  font-family: var(--disp); font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  line-height: 1.12; color: var(--green);
}
.on-dark .h2 { color: var(--cream); }
.h2 em { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--orange); }
.on-dark .h2 em { color: var(--yellow); }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--ink-mute); max-width: 58ch; }
.on-dark .lead { color: var(--cream-mute); }

/* Reveals (con red de seguridad en main.js) */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: 0.08s; }
[data-reveal].d2 { transition-delay: 0.16s; }
[data-reveal].d3 { transition-delay: 0.24s; }
[data-reveal].d4 { transition-delay: 0.32s; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Botones
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; line-height: 1;
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s var(--ease-out), background 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn-wa {
  background: var(--wa); color: #fff;
  box-shadow: 0 10px 26px -10px rgba(31, 175, 90, 0.65);
}
.btn-wa:hover { box-shadow: 0 16px 34px -10px rgba(31, 175, 90, 0.75); }
.btn-ghost {
  border: 1.5px solid currentColor; color: var(--green);
  background: transparent;
}
.on-dark .btn-ghost { color: var(--cream); }

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--green);
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
  animation: splashSafety 0.01s 4.5s forwards; /* red de seguridad CSS */
}
.splash img { width: min(240px, 55vw); animation: splashPop 0.9s var(--ease-bounce) both; }
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes splashPop { from { transform: scale(0.82); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* =============================================================
   6. Header
   ============================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.8rem var(--gutter);
}
/* Fondo sólido (sin backdrop-filter: evita jank de scroll en Windows) */
.header.is-scrolled { background: rgba(7, 35, 26, 0.94); box-shadow: 0 6px 24px -12px rgba(0, 0, 0, 0.5); }
.header-logo img { height: 46px; width: auto; transition: transform 0.35s var(--ease-bounce); }
.header-logo:hover img { transform: rotate(-4deg) scale(1.06); }
.nav { display: none; }
.nav a {
  position: relative; color: var(--cream); font-weight: 600; font-size: 0.92rem;
  padding: 0.4rem 0.2rem;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--yellow); border-radius: 2px;
  transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease-out);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header .btn-wa { padding: 0.65rem 1.15rem; font-size: 0.85rem; }
.header-cta-label { display: none; }

.nav-toggle {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px; background: rgba(242, 224, 213, 0.14);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--cream);
  border-radius: 2px; transition: transform 0.35s var(--ease-out), opacity 0.3s;
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: var(--green-ink);
  display: grid; place-content: center; gap: 0.4rem;
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
body.nav-open .nav-mobile { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--disp); font-size: clamp(1.7rem, 7vw, 2.6rem);
  color: var(--cream); text-align: center; padding: 0.35rem 1rem;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--yellow); }

@media (min-width: 960px) {
  .nav { display: flex; gap: 1.15rem; }
  .nav-toggle, .nav-mobile { display: none; }
  .header-cta-label { display: inline; }
}
@media (min-width: 1280px) {
  .nav { gap: 1.6rem; }
}

/* =============================================================
   7. HERO — showcase 3D
   ============================================================= */
.hero { position: relative; height: 420vh; }
.hero-stage {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: clip;
}

/* Fondos por sabor (crossfade) */
.hero-bg { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease-soft); }
.hero-bg.is-active { opacity: 1; }
.hero-bg[data-flavor-bg="chill-out"] {
  background: radial-gradient(120% 95% at 50% 8%, #6C55AB 0%, #55408F 42%, #241A44 100%);
}
.hero-bg[data-flavor-bg="detox"] {
  background: radial-gradient(120% 95% at 50% 8%, #3E8A50 0%, #2E6B3E 42%, #0F2C18 100%);
}
.hero-bg[data-flavor-bg="sunset-fizz"] {
  background: radial-gradient(120% 95% at 50% 8%, #C2543E 0%, #A8402F 42%, #401410 100%);
}
.hero-bg[data-flavor-bg="emoliente"] {
  background: radial-gradient(120% 95% at 50% 8%, #A5711F 0%, #8A5A1E 42%, #362005 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.35; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* Tipografía gigante del sabor, detrás de la botella */
.hero-word { position: absolute; inset: 0; pointer-events: none; }
.hero-word span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--disp);
  font-size: clamp(3.4rem, 17vw, 15rem);
  letter-spacing: 0.02em; white-space: nowrap;
  color: var(--cream);
  opacity: 0; transform: translateY(36px) scale(0.96);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hero-word span.is-active { opacity: 0.15; transform: none; }

/* Lienzo 3D */
.bottle-canvas {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -53%);
  width: min(620px, 94vw); height: min(76svh, 700px);
  cursor: grab; z-index: 3;
}
.bottle-canvas.is-grabbing { cursor: grabbing; }

/* Fallback sin WebGL: foto flotante */
.hero-fallback { display: none; }
.hero.no-3d .bottle-canvas { display: none; }
.hero.no-3d .hero-fallback {
  display: block; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -52%); z-index: 3;
  width: min(320px, 62vw);
  animation: floatY 5.5s ease-in-out infinite;
}
.hero.no-3d .hero-fallback img {
  border-radius: 18px;
  box-shadow: 0 50px 90px -30px rgba(0, 0, 0, 0.55);
}
@keyframes floatY { 0%, 100% { translate: 0 0; } 50% { translate: 0 -16px; } }

/* Capa de UI del hero */
.hero-ui {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5.6rem var(--gutter) 2.6rem;
  pointer-events: none;
}
.hero-ui > * { pointer-events: auto; }

.hero-head { position: absolute; top: 5.4rem; left: var(--gutter); right: var(--gutter); pointer-events: none; }
.hero-kicker {
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cream-mute); margin-bottom: 0.5rem;
}
.hero-title {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem); color: var(--cream);
  max-width: 26ch; line-height: 1.25;
}

/* Panel del sabor activo */
.flavor-panels { position: relative; min-height: 315px; max-width: 420px; }
.flavor-panel {
  position: absolute; inset: auto 0 0 0;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  pointer-events: none;
}
.flavor-panel.is-active { opacity: 1; transform: none; pointer-events: auto; }
.flavor-name {
  font-family: var(--disp); font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  color: var(--fl-accent); line-height: 1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.flavor-tag {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: var(--cream); margin-top: 0.3rem;
}
.flavor-desc { color: var(--cream-mute); font-size: 0.96rem; max-width: 44ch; margin-top: 0.7rem; }
.flavor-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; list-style: none; padding: 0; margin: 0.9rem 0 0; }
.flavor-chips li {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.32rem 0.75rem; border-radius: 999px;
  border: 1px solid rgba(242, 224, 213, 0.35); color: var(--cream);
  background: rgba(0, 0, 0, 0.18);
}
.flavor-buy { display: flex; align-items: center; gap: 1.1rem; margin-top: 1.2rem; flex-wrap: wrap; }
.flavor-price { display: flex; flex-direction: column; line-height: 1.1; color: var(--cream); }
.flavor-price strong { font-size: 1.7rem; font-weight: 800; }
.flavor-price small { color: var(--cream-mute); font-size: 0.78rem; letter-spacing: 0.08em; }

/* Selector de sabores (dots) */
.flavor-dots {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  justify-content: center; margin: 1.4rem auto 0;
}
.flavor-dot {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.95rem; border-radius: 999px;
  border: 1px solid rgba(242, 224, 213, 0.3);
  color: var(--cream); font-weight: 600; font-size: 0.82rem;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.35s, color 0.35s, transform 0.35s var(--ease-bounce);
}
.flavor-dot:hover { transform: translateY(-2px); }
.flavor-dot .swatch { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.flavor-dot.is-active { background: var(--cream); color: var(--green-ink); border-color: var(--cream); }

/* Badges de la marca */
.hero-badges {
  display: flex; gap: 0.4rem 1.2rem; flex-wrap: wrap; justify-content: center;
  margin-top: 0.9rem; padding: 0; list-style: none;
}
.hero-badges li {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cream-mute);
  display: flex; align-items: center; gap: 0.45rem;
}
.hero-badges li::before { content: "✦"; color: var(--yellow); font-size: 0.7rem; }

/* Pista de arrastre */
.drag-hint {
  position: absolute; left: 50%; bottom: 0.5rem; transform: translateX(-50%);
  width: max-content; max-width: 68vw; text-align: center;
  z-index: 5; display: flex; align-items: center; gap: 0.5rem;
  color: var(--cream-mute); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  transition: opacity 0.6s;
  pointer-events: none;
  animation: hintPulse 2.6s ease-in-out infinite;
}
.drag-hint.is-hidden { opacity: 0; }
@keyframes hintPulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

/* Móvil: botella arriba, panel abajo con scrim de legibilidad */
@media (max-width: 959px) {
  .bottle-canvas { height: min(56svh, 560px); transform: translate(-50%, -68%); }
  .hero-ui {
    background: linear-gradient(180deg, transparent 34%, rgba(10, 6, 20, 0.42) 72%);
  }
  .flavor-desc, .flavor-tag { text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55); }
}
@media (max-width: 719px) {
  .hero-badges { display: none; }
  .drag-hint { font-size: 0.68rem; letter-spacing: 0.06em; }
}

@media (min-width: 960px) {
  .hero-ui { justify-content: center; background: none; }
  .flavor-panels { min-height: 0; }
  .flavor-panel { inset: auto auto auto 0; position: absolute; bottom: auto; top: 50%; transform: translateY(calc(-50% + 18px)); }
  .flavor-panel.is-active { transform: translateY(-50%); }
  .flavor-dots {
    position: absolute; right: var(--gutter); top: 50%;
    transform: translateY(-50%);
    flex-direction: column; align-items: flex-end; margin: 0;
  }
  .hero-badges { position: absolute; bottom: 1.2rem; left: var(--gutter); margin: 0; justify-content: flex-start; }
  .drag-hint { bottom: 1.4rem; }
}

/* =============================================================
   8. Marquee
   ============================================================= */
.marquee {
  background: var(--green); color: var(--cream);
  overflow: clip; padding: 0.95rem 0;
  border-block: 2px solid rgba(242, 224, 213, 0.12);
}
.marquee-track {
  display: flex; gap: 3.2rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--disp); font-size: 1.05rem; letter-spacing: 0.08em;
  white-space: nowrap; display: flex; align-items: center; gap: 3.2rem;
}
.marquee-track span::after { content: "✺"; color: var(--yellow); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   9. Historia
   ============================================================= */
.historia { background: var(--cream-bg); padding-block: var(--section-y); }
.historia-grid { display: grid; gap: 2.5rem; align-items: center; }
.historia-copy p + p { margin-top: 1rem; }
.historia-figure { position: relative; }
.historia-figure img {
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -35px rgba(17, 82, 58, 0.45);
}
.historia-figure figcaption {
  margin-top: 0.7rem; font-family: var(--serif); font-style: italic;
  color: var(--ink-mute); font-size: 0.95rem;
}
.historia-quote {
  margin-top: clamp(3rem, 7vw, 5.5rem);
  text-align: center;
}
.historia-quote blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem); line-height: 1.3;
  color: var(--green); max-width: 26ch; margin-inline: auto;
}
.historia-quote blockquote strong { color: var(--orange); font-weight: 600; }
.historia-campo { margin-top: clamp(3rem, 7vw, 5rem); }
.historia-campo img {
  border-radius: var(--radius); width: 100%;
  box-shadow: 0 40px 80px -35px rgba(17, 82, 58, 0.4);
}
@media (min-width: 960px) {
  .historia-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

/* =============================================================
   10. Beneficios
   ============================================================= */
.beneficios {
  background: var(--green-deep); color: var(--cream);
  padding-block: var(--section-y);
  position: relative;
}
.beneficios-head { max-width: 640px; margin-bottom: 3rem; }
.beneficios-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.benefit {
  border: 1px solid rgba(242, 224, 213, 0.14);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  background: rgba(242, 224, 213, 0.045);
  transition: transform 0.45s var(--ease-out), background 0.45s, border-color 0.45s;
}
.benefit:hover { transform: translateY(-6px); background: rgba(242, 224, 213, 0.09); border-color: rgba(250, 178, 14, 0.45); }
.benefit-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: rgba(250, 178, 14, 0.14); color: var(--yellow);
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.06rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--cream); }
.benefit p { font-size: 0.92rem; color: var(--cream-mute); }
@media (min-width: 720px) { .beneficios-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .beneficios-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   11. Catálogo
   ============================================================= */
.catalogo { background: var(--cream-bg); padding-block: var(--section-y); }
.catalogo-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 3rem; }
.catalogo-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.product-card {
  --pc-accent: var(--orange);
  background: #fff;
  border-radius: var(--radius);
  overflow: clip;
  box-shadow: 0 24px 55px -30px rgba(28, 36, 31, 0.35);
  transition: box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  display: flex; flex-direction: column;
  will-change: transform;
}
.product-card:hover { box-shadow: 0 34px 70px -30px rgba(28, 36, 31, 0.5); }
.product-card[data-fl="chill-out"]   { --pc-accent: #7A5FC0; }
.product-card[data-fl="detox"]       { --pc-accent: #3E8A50; }
.product-card[data-fl="sunset-fizz"] { --pc-accent: #C2543E; }
.product-card[data-fl="emoliente"]   { --pc-accent: #A5711F; }
.product-photo { position: relative; aspect-ratio: 4 / 5; overflow: clip; background: var(--cream-soft); }
.product-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.8s;
}
.product-card:hover .product-photo img { transform: scale(1.07); filter: saturate(1.15); }
.product-photo::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 55%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.38));
}
.product-flag {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: var(--pc-accent);
  padding: 0.35rem 0.7rem; border-radius: 999px;
}
.product-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.product-body h3 { font-family: var(--disp); font-weight: 400; font-size: 1.55rem; color: var(--pc-accent); }
.product-tagline { font-family: var(--serif); font-style: italic; color: var(--ink); font-size: 1.02rem; }
.product-ing { font-size: 0.85rem; color: var(--ink-mute); }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; padding-top: 0.9rem; }
.product-price { font-weight: 800; font-size: 1.25rem; color: var(--ink); }
.product-price small { display: block; font-size: 0.72rem; color: var(--ink-mute); font-weight: 600; letter-spacing: 0.06em; }
.product-foot .btn { padding: 0.7rem 1.15rem; font-size: 0.85rem; }
@media (min-width: 720px) { .catalogo-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .catalogo-grid { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; } }

/* =============================================================
   12. B2B — Restaurantes
   ============================================================= */
.b2b {
  background:
    radial-gradient(90% 70% at 85% 10%, rgba(250, 178, 14, 0.08), transparent 60%),
    var(--green-ink);
  color: var(--cream);
  padding-block: var(--section-y);
}
.b2b-grid { display: grid; gap: 3rem; align-items: center; }
.b2b-args { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1rem; }
.b2b-args li { display: flex; gap: 0.9rem; align-items: flex-start; }
.b2b-args svg { width: 22px; height: 22px; flex: none; margin-top: 0.15rem; color: var(--yellow); }
.b2b-args strong { display: block; color: var(--cream); font-size: 1rem; }
.b2b-args span { color: var(--cream-mute); font-size: 0.9rem; }
.b2b-partners { margin-top: 2rem; }
.b2b-partners p {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cream-mute); margin-bottom: 0.7rem;
}
.b2b-partners ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; margin: 0; }
.b2b-partners li {
  font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--cream);
  border: 1px solid rgba(242, 224, 213, 0.22); border-radius: 999px;
  padding: 0.4rem 1rem; background: rgba(242, 224, 213, 0.05);
}
.b2b-cta { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.b2b-note { font-size: 0.82rem; color: var(--cream-mute); max-width: 34ch; }
.b2b-figure { position: relative; }
.b2b-figure img {
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(242, 224, 213, 0.12);
}
.b2b-figure figcaption { margin-top: 0.7rem; font-family: var(--serif); font-style: italic; color: var(--cream-mute); font-size: 0.92rem; }
@media (min-width: 960px) { .b2b-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }

/* =============================================================
   13. B2C — Pide la tuya
   ============================================================= */
.b2c { background: var(--cream-bg); padding-block: var(--section-y); }
.b2c-head { text-align: center; max-width: 640px; margin-inline: auto; }
.b2c-head .kicker { justify-content: center; }
.b2c-steps {
  display: grid; gap: 1.2rem; margin-top: 3rem;
  counter-reset: paso;
}
.b2c-step {
  background: #fff; border-radius: var(--radius);
  padding: 1.8rem 1.5rem 1.6rem; position: relative;
  box-shadow: 0 20px 45px -28px rgba(28, 36, 31, 0.3);
  counter-increment: paso;
  transition: transform 0.45s var(--ease-out);
}
.b2c-step:hover { transform: translateY(-6px); }
.b2c-step::before {
  content: "0" counter(paso);
  font-family: var(--disp); font-size: 2.1rem; color: var(--yellow);
  display: block; line-height: 1; margin-bottom: 0.7rem;
  -webkit-text-stroke: 1px var(--orange);
}
.b2c-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.b2c-step p { font-size: 0.92rem; color: var(--ink-mute); }
.b2c-cta { text-align: center; margin-top: 2.6rem; }
.b2c-cta .btn { font-size: 1.05rem; padding: 1.05rem 2.2rem; }
.b2c-fine { margin-top: 1rem; font-size: 0.82rem; color: var(--ink-mute); }
@media (min-width: 720px) { .b2c-steps { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   13b. Puntos de venta (mapa + tarjetas)
   ============================================================= */
.puntos { background: var(--cream-soft); padding-block: var(--section-y); }
.puntos-head { max-width: 640px; margin-bottom: 2.6rem; }
.puntos-grid { display: grid; gap: 1.6rem; }
.puntos-lista {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem;
  align-content: start;
}
.punto-card {
  display: flex; align-items: center; gap: 0.75rem;
  text-align: left; width: 100%;
  background: #fff; border-radius: 14px; padding: 0.55rem;
  border: 2px solid transparent;
  box-shadow: 0 12px 28px -18px rgba(28, 36, 31, 0.35);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  cursor: pointer;
}
.punto-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -18px rgba(28, 36, 31, 0.45); }
.punto-card.is-active { border-color: var(--green); }
.punto-card img {
  width: 58px; height: 58px; object-fit: cover;
  border-radius: 10px; flex: none;
}
.punto-card strong { display: block; font-size: 0.88rem; line-height: 1.25; color: var(--ink); }
.punto-card span { font-size: 0.72rem; color: var(--ink-mute); }
.puntos-mapa { position: relative; }
.puntos-mapa iframe {
  width: 100%; height: 420px; border: 0;
  border-radius: var(--radius);
  box-shadow: 0 26px 55px -30px rgba(17, 82, 58, 0.45);
  display: block;
}
.puntos-current {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: var(--green); color: var(--cream);
  font-weight: 700; font-size: 0.82rem;
  padding: 0.45rem 0.95rem; border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.puntos-all { margin-top: 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.btn-maps {
  background: var(--green); color: var(--cream);
  box-shadow: 0 10px 26px -10px rgba(17, 82, 58, 0.6);
}
.btn-maps:hover { box-shadow: 0 16px 34px -10px rgba(17, 82, 58, 0.7); }
.puntos-note { font-size: 0.82rem; color: var(--ink-mute); max-width: 40ch; }
.dir-link {
  font-weight: 700; color: var(--orange);
  border-bottom: 2px solid transparent; transition: border-color 0.3s;
}
.dir-link:hover { border-color: var(--orange); }
@media (min-width: 960px) {
  .puntos-grid { grid-template-columns: 0.9fr 1.1fr; gap: 2.2rem; align-items: start; }
  .puntos-mapa iframe { height: 480px; }
}
@media (max-width: 539px) {
  .puntos-lista { grid-template-columns: 1fr; }
}

/* =============================================================
   13c. Redes sociales (iconos)
   ============================================================= */
.social-btns { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 1.15rem; border-radius: 999px;
  font-weight: 700; font-size: 0.88rem;
  border: 1.5px solid rgba(242, 224, 213, 0.35); color: var(--cream);
  transition: transform 0.35s var(--ease-bounce), background 0.35s, border-color 0.35s;
}
.social-btn svg { width: 18px; height: 18px; flex: none; }
.social-btn:hover { transform: translateY(-3px); background: rgba(242, 224, 213, 0.1); border-color: var(--yellow); }
.footer .social-btns { margin-top: 0.9rem; }
.footer .social-btn { border-color: rgba(242, 224, 213, 0.22); font-size: 0.82rem; padding: 0.5rem 1rem; }

/* =============================================================
   14. Galería
   ============================================================= */
.galeria { background: var(--green-deep); color: var(--cream); padding-block: var(--section-y); }
.galeria-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 2.6rem; }
.ig-link {
  font-weight: 700; color: var(--yellow); display: inline-flex; align-items: center; gap: 0.5rem;
  border-bottom: 2px solid transparent; transition: border-color 0.3s;
}
.ig-link:hover { border-color: var(--yellow); }
.galeria-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
.galeria-item { position: relative; border-radius: 16px; overflow: clip; aspect-ratio: 3 / 4; }
.galeria-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.8s;
}
.galeria-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 35, 26, 0.55));
  opacity: 0; transition: opacity 0.5s;
}
.galeria-item:hover img { transform: scale(1.08) rotate(0.6deg); filter: saturate(1.2); }
.galeria-item:hover::after { opacity: 1; }
@media (min-width: 960px) { .galeria-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { background: var(--green-ink); color: var(--cream); padding: 4rem 0 2rem; }
.footer-grid { display: grid; gap: 2.4rem; }
.footer-brand img { width: 170px; margin-bottom: 1rem; }
.footer-brand p { font-family: var(--serif); font-style: italic; color: var(--cream-mute); max-width: 30ch; }
.footer h4 {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 0.9rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer a { color: var(--cream-mute); transition: color 0.3s; font-size: 0.94rem; }
.footer a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(242, 224, 213, 0.12);
  display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; justify-content: space-between;
  font-size: 0.8rem; color: var(--cream-mute);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }

/* =============================================================
   16. WhatsApp flotante
   ============================================================= */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: #fff;
  box-shadow: 0 14px 34px -10px rgba(31, 175, 90, 0.75);
  transition: transform 0.35s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa);
  animation: waPing 2.4s ease-out infinite;
}
@keyframes waPing { from { transform: scale(1); opacity: 0.7; } to { transform: scale(1.55); opacity: 0; } }

/* =============================================================
   17. Reduced motion — solo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 80s; }
  .wa-float::before { animation: none; }
  .drag-hint { animation: none; opacity: 0.8; }
  .hero.no-3d .hero-fallback { animation: none; }
  /* tilt, hovers, fades y crossfades siguen activos a propósito */
}
