/* ============================================================
   ROLL & GO — styles.css v3
   Paleta: crema / beige · negro fuerte · marrón salsa de soja
   Tipografía: Syne (display) + Inter (body)
   Filosofía: Apple · Stripe · Linear · Vercel
   ============================================================ */

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-700);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

a:focus, button:focus {
  outline: none;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--salmon, #d46848);
  outline-offset: 4px;
}

ul, ol { list-style: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.hidden { display: none !important; }


/* ── Design Tokens ──────────────────────────────────────── */
:root {
  /* Background scale */
  --bg:          #f5f0e8;
  --bg-alt:      #ede7d8;
  --bg-dark:     #1a1008;
  --surface:     #ffffff;
  --surface-alt: #fdfaf4;
  --surface-dark:#2a1c0e;

  /* Ink (text) scale */
  --ink-900: #0c0904;
  --ink-800: #1e1409;
  --ink-700: #3a2810;
  --ink-500: #6b5038;
  --ink-400: #8c6e52;
  --ink-300: #b8996e;
  --ink-200: #d6bf9e;
  --ink-100: #ede4d0;

  /* Soy Sauce Brown — brand accent */
  --soy-900: #1c0c04;
  --soy-800: #2e1808;
  --soy-700: #4a2810;
  --soy-600: #6b3c18;
  --soy-500: #8c5020;
  --soy-400: #b46830;
  --soy-300: #d4843e;
  --soy-200: #e8a86a;
  --soy-100: #f5d4a8;

  /* Salmon / warm orange accent */
  --salmon:       #d46848;
  --salmon-light: #e89070;
  --salmon-pale:  #f5c4a8;

  /* Green (WA) */
  --wa-green: #25d366;
  --wa-dark:  #128c7e;

  /* Instagram gradient handled inline */
  --ig-start: #833ab4;
  --ig-end:   #fd1d1d;

  /* Semantic */
  --border:       rgba(60, 30, 10, 0.10);
  --border-strong:rgba(60, 30, 10, 0.20);
  --shadow-xs:    0 1px 4px  rgba(30, 15, 5, 0.06);
  --shadow-sm:    0 4px 16px rgba(30, 15, 5, 0.08);
  --shadow-md:    0 8px 32px rgba(30, 15, 5, 0.10);
  --shadow-lg:    0 20px 60px rgba(30, 15, 5, 0.14);
  --shadow-xl:    0 40px 100px rgba(30, 15, 5, 0.18);

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  9rem;

  /* Border radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-pill: 9999px;

  /* Easing */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.22, 1, 0.36, 1);

  /* Container */
  --container: 1200px;
  --container-px: clamp(1.25rem, 5vw, 3rem);

  /* Nav height */
  --nav-h: 68px;
}


/* ── Utility ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--space-3xl);
}

/* Reveal animation base — driven by GSAP */
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}


/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(245, 240, 232, 0.80);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(245, 240, 232, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: var(--container-px);
  max-width: var(--container);
  margin-inline: auto;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-500);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink-900); }

.nav-actions { margin-left: auto; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.open .ham-line:first-child {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open .ham-line:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 900px) {
  .nav-logo {
    flex: 1 0 0;
    justify-content: flex-start;
  }
  .nav-links {
    display: flex;
    flex: 0 0 auto;
  }
  .nav-inner::after {
    content: "";
    flex: 1 0 0;
    pointer-events: none;
  }
  .hamburger { display: none; }
  .nav-actions { margin-left: 0; }
}


/* ── Mobile Menu ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.4s;
  display: flex;
  justify-content: flex-end;
}
.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 9, 4, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-content {
  position: relative;
  z-index: 1;
  width: 70%;
  max-width: 320px;
  height: 100dvh;
  background: var(--bg);
  border-left: 1px solid var(--border);
  box-shadow: 
    -10px 0 40px rgba(12, 9, 4, 0.06),
    var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2.5rem;
  padding: 6rem 2rem 2rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-spring);
}
.mobile-menu.is-open .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--ink-500);
  padding: 0.5rem;
  line-height: 1;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}
.mobile-link {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 6vw, 2rem);
  color: var(--ink-900);
  transition: color 0.2s;
  text-align: left;
}
.mobile-link:hover { color: var(--soy-400); }

.mobile-wa {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  margin-top: 1rem;
}


/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.15s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.btn:focus-visible {
  outline: 3px solid var(--soy-300);
  outline-offset: 3px;
}

/* Primary — dark soy */
.btn-primary {
  background: var(--soy-900);
  color: #fff;
  box-shadow: 0 2px 8px rgba(28, 12, 4, 0.3);
}
.btn-primary:hover {
  background: var(--soy-800);
  box-shadow: 0 4px 20px rgba(28, 12, 4, 0.4);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

/* Ghost — outline */
.btn-ghost {
  background: transparent;
  color: var(--ink-700);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--ink-300);
  transform: translateY(-1px);
}

/* Nav */
.btn-nav {
  background: var(--soy-900);
  color: #fff;
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
}
.btn-nav:hover {
  background: var(--soy-800);
  transform: translateY(-1px);
}

/* WhatsApp large */
.btn-wa-large {
  background: var(--wa-green);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-wa-large:hover {
  background: #20ba59;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* WhatsApp regular */
.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
}
.btn-wa:hover {
  background: #20ba59;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

/* Instagram */
.btn-ig {
  background: linear-gradient(135deg, var(--ig-start), var(--ig-end));
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
}
.btn-ig:hover {
  opacity: 0.92;
  box-shadow: 0 8px 30px rgba(131, 58, 180, 0.4);
  transform: translateY(-2px);
}

/* Magnetic effect — JS enhances this */
.btn-magnetic { will-change: transform; }


/* ── Section headers ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soy-400);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--ink-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}
.section-title em {
  font-style: italic;
  color: var(--soy-400);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--ink-500);
  line-height: 1.65;
}


/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Subtle grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--container-px);
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  padding-block: var(--space-2xl);
}

/* Text column */
.hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 8px var(--wa-green);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

.hero-logo-wrapper {
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-logo-img {
  max-width: 380px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 900px) {
  .hero-logo-img {
    max-width: 520px;
  }
}



.hero-content-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  width: 100%;
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 420px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0.875rem 1.75rem;
  box-shadow: var(--shadow-xs);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.hero-stat strong {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hero-stat span {
  font-size: 0.725rem;
  font-weight: 500;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--soy-300), transparent);
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* Desktop hero layout */
@media (min-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
  }
  .hero-content-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .hero-text {
    max-width: 720px;
    align-items: center;
    text-align: center;
  }
  .hero-sub {
    max-width: 600px;
  }
  .hero-stats {
    align-self: center;
  }
  .hero-cta {
    justify-content: center;
  }
}

/* ── MARQUEE STRIPE ────────────────────────────────────── */
.marquee-stripe {
  background-color: #CFE438;
  color: #0c0904;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  display: flex;
  user-select: none;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.marquee-dot {
  font-size: 0.85rem;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-content {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1.5rem;
  }
  .marquee-track {
    white-space: normal;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-right: 0;
  }
  .marquee-track.marquee-duplicate {
    display: none;
  }
}


/* ── MENU SECTION ───────────────────────────────────────── */
.menu-section {
  background: var(--bg-alt);
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.filter-tab {
  padding: 0.55rem 1.2rem;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-500);
  background: var(--surface);
  border: 1.5px solid var(--border);
  transition: all 0.2s var(--ease);
}
.filter-tab:hover {
  color: var(--ink-900);
  border-color: var(--soy-300);
  transform: translateY(-1px);
}
.filter-tab.active {
  background: var(--soy-900);
  color: #fff;
  border-color: var(--soy-900);
  box-shadow: 0 2px 10px rgba(28, 12, 4, 0.25);
}

/* Loading */
.menu-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: var(--space-2xl);
  color: var(--ink-400);
  font-size: 0.9rem;
}

.loading-dots {
  display: flex;
  gap: 6px;
}
.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--soy-300);
  animation: dot-bounce 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.loading-dots span:nth-child(3) { animation-delay: 0.30s; }
@keyframes dot-bounce {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40%            { transform: scale(1); opacity: 1; }
}

/* Error */
.menu-error {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--salmon);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: var(--space-xl);
}
@media (min-width: 900px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Card */
.menu-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease-spring);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  cursor: pointer;
}
.menu-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.35s var(--ease);
}
.menu-card:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(60,30,10,0.06);
}

/* Tilt active */
.menu-card.tilt-active {
  box-shadow: var(--shadow-xl);
}

.card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.card-img-default {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  display: block;
  opacity: 1;
}
.card-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  display: block;
  opacity: 0;
  pointer-events: none;
}
.menu-card:hover .card-img-default,
.menu-card.tilt-active .card-img-default {
  transform: scale(1.06) translateZ(10px);
  opacity: 0;
}
.menu-card:hover .card-img-hover,
.menu-card.tilt-active .card-img-hover {
  transform: scale(1.06) translateZ(10px);
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.75rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--ink-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-badge.featured {
  background: var(--soy-900);
  color: #fff;
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-900);
  line-height: 1.2;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--ink-500);
  line-height: 1.55;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.25rem;
}
.card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--soy-500);
  background: rgba(180, 104, 48, 0.08);
  border: 1px solid rgba(180, 104, 48, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.02em;
}
.card-tag.veggie {
  color: #3a7a3a;
  background: rgba(58, 122, 58, 0.08);
  border-color: rgba(58, 122, 58, 0.18);
}

/* Mobile Rectangular Cards Layout */
@media (max-width: 768px) {
  .menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  .menu-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 132px;
  }
  .card-img {
    width: 120px;
    height: 100%;
    flex-shrink: 0;
    aspect-ratio: auto !important;
  }
  .card-body {
    padding: 0.75rem 1rem;
    flex: 1;
    min-width: 0;
    justify-content: center;
    gap: 0.25rem;
  }
  .card-name {
    font-size: 0.95rem;
    margin: 0;
  }
  .card-desc {
    display: none !important;
  }
  .card-presentation {
    font-size: 0.675rem;
  }
  .card-tags {
    display: none !important;
  }
  .card-badge {
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.625rem;
    padding: 0.15rem 0.45rem;
  }
}

.menu-cta {
  text-align: center;
  padding-top: var(--space-sm);
}


/* ── STEPS SECTION ──────────────────────────────────────── */
.steps-section {
  background: var(--surface);
}

.steps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .steps-list { grid-template-columns: 1fr 1fr; }
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}
.step-item[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}
.step-item[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--soy-900);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-icon { font-size: 1.1rem; }

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-900);
}

.step-desc {
  font-size: 0.875rem;
  color: var(--ink-500);
  line-height: 1.6;
}


/* ── BENEFITS ───────────────────────────────────────────── */
.benefits-section {
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}
.benefit-card[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}
.benefit-card[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 2rem;
  line-height: 1;
}

.benefit-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink-900);
  margin-bottom: 0.35rem;
}
.benefit-body p {
  font-size: 0.875rem;
  color: var(--ink-500);
  line-height: 1.6;
}


/* ── CTA / CONTACT ──────────────────────────────────────── */
.cta-section {
  background: var(--soy-900);
  overflow: hidden;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(180, 104, 48, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 20%, rgba(212, 104, 72, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soy-200);
}

.cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}
.cta-title em {
  color: var(--soy-300);
  font-style: italic;
}

.cta-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 480px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.cta-contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.25rem;
}
.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.contact-item:hover { color: rgba(255,255,255,0.9); }
.contact-divider {
  color: rgba(255,255,255,0.2);
}


/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  padding-block: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-top: -0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}


/* ── FLOATING WHATSAPP ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.45),
    0 0 0 0 rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease);
  animation: wa-ring 3s ease-in-out infinite 2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 8px 30px rgba(37, 211, 102, 0.55),
    0 0 0 0 rgba(37, 211, 102, 0);
  animation: none;
}

@keyframes wa-ring {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  40%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}





/* ── Cart Navigation Button ────────────────────────────── */
.btn-cart-nav {
  position: relative;
  background: transparent;
  color: var(--ink-700);
  border: 1.5px solid var(--border-strong);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.btn-cart-nav:hover {
  background: var(--bg-alt);
  border-color: var(--ink-400);
  transform: translateY(-1px);
}
.cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--salmon);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: 1.5px solid var(--bg);
}
.cart-badge-count.cart-badge-pop {
  animation: cart-badge-pop 0.42s var(--ease-spring);
}
.cart-target-pop {
  animation: cart-target-pop 0.42s var(--ease-spring);
}

@keyframes cart-badge-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.38); }
  100% { transform: scale(1); }
}

@keyframes cart-target-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.cart-fly-img {
  position: fixed;
  z-index: 500;
  object-fit: cover;
  border-radius: var(--r-lg);
  pointer-events: none;
  box-shadow: 0 18px 48px rgba(28, 12, 4, 0.28);
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  transition:
    transform 0.68s var(--ease-spring),
    opacity 0.68s var(--ease);
  will-change: transform, opacity;
}

/* ── Floats Container ───────────────────────────────────── */
.floats-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.wa-float, .cart-float {
  position: static !important;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease);
}
.cart-float {
  background: var(--soy-900);
  color: #fff;
  position: relative;
  box-shadow: 0 4px 20px rgba(28, 12, 4, 0.35);
}
.cart-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(28, 12, 4, 0.45);
}
.cart-float .cart-badge-count {
  top: -2px;
  right: -2px;
  border-color: var(--soy-900);
}

/* ── Cart Sidebar ───────────────────────────────────────── */
.cart-sidebar {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.36s;
}
.cart-sidebar[hidden] {
  display: flex;
  visibility: hidden;
  pointer-events: none;
}
.cart-sidebar.is-open {
  visibility: visible;
  pointer-events: auto;
}
.cart-sidebar-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 9, 4, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.36s var(--ease);
}
.cart-sidebar.is-open .cart-sidebar-backdrop {
  opacity: 1;
}
.cart-sidebar-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  height: 100dvh;
  max-height: 100dvh;
  min-height: 0;
  background: rgba(253, 250, 244, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid var(--border);
  box-shadow: 
    -10px 0 40px rgba(12, 9, 4, 0.06),
    var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition:
    transform 0.42s var(--ease-spring),
    opacity 0.26s var(--ease);
}
.cart-sidebar.is-open .cart-sidebar-content {
  transform: translateX(0);
  opacity: 1;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
}
.cart-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.cart-title::after {
  content: attr(data-count);
  min-width: 24px;
  height: 24px;
  padding-inline: 7px;
  border-radius: var(--r-pill);
  background: var(--soy-900);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-title[data-count]:not([data-count=""])::after {
  display: inline-flex;
}
.cart-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--ink-400);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.2s var(--ease-spring);
}
.cart-close:hover {
  color: var(--ink-900);
  background: var(--bg-alt);
  transform: rotate(90deg);
}

.cart-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  scrollbar-gutter: stable;
}

/* Empty cart state */
.cart-empty {
  text-align: center;
  padding-block: var(--space-xl);
  color: var(--ink-500);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 104, 72, 0.12), transparent 45%),
    var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-xl);
  animation: cart-empty-in 0.42s var(--ease-spring);
}
.cart-empty-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  animation: cart-empty-bob 2.4s ease-in-out infinite;
}
.cart-empty-sub {
  font-size: 0.85rem;
  color: var(--ink-400);
  margin-top: 0.25rem;
}

/* Cart Items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transform-origin: center;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    opacity 0.18s var(--ease),
    transform 0.18s var(--ease);
}
.cart-item-enter {
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  animation: cart-item-enter 0.44s var(--ease-spring) forwards;
  animation-delay: calc(var(--item-index) * 55ms);
}
.cart-item-updated {
  animation: cart-item-updated 0.46s var(--ease-spring);
}
.cart-item-removing {
  opacity: 0;
  transform: translateX(24px) scale(0.96);
}
.cart-item:hover {
  border-color: rgba(180, 104, 48, 0.22);
  box-shadow: var(--shadow-sm);
}
.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--r-sm);
  object-fit: cover;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-desc {
  font-size: 0.75rem;
  color: var(--ink-400);
  line-height: 1.4;
  margin-top: 0.15rem;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.55rem;
  flex-shrink: 0;
}
.btn-qty-adjust {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-700);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s var(--ease-spring);
  user-select: none;
}
.btn-qty-adjust:hover {
  background: var(--soy-900);
  color: #fff;
  transform: scale(1.08);
}
.btn-qty-adjust:active {
  transform: scale(0.94);
}
.cart-item-qty {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-900);
  min-width: 18px;
  text-align: center;
  display: inline-block;
}
.cart-item-qty.qty-pop {
  animation: qty-pop 0.32s var(--ease-spring);
}

/* Forms styling */
.cart-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 0.5rem;
}
.cart-form {
  padding-bottom: env(safe-area-inset-bottom);
}
.form-title, .contact-form-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-900);
  border-bottom: 1.5px solid var(--soy-300);
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink-900);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--soy-400);
  box-shadow: 0 0 0 3px rgba(180, 104, 48, 0.15);
}
.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--salmon);
  background: rgba(212, 104, 72, 0.04);
  box-shadow: 0 0 0 3px rgba(212, 104, 72, 0.13);
}

.form-group-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-radios {
  display: flex;
  background: var(--bg-alt);
  border-radius: var(--r-pill);
  padding: 3px;
  position: relative;
  border: 1px solid var(--border);
  gap: 0;
  flex-direction: row;
}
.radio-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.65rem 0.5rem;
  border-radius: var(--r-pill);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--ink-500);
  position: relative;
  transition: all 0.25s var(--ease);
  text-align: center;
  gap: 0;
}
.radio-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-label span {
  position: relative;
  z-index: 1;
}
.radio-label:has(input:checked) {
  background: var(--surface);
  color: var(--ink-900);
  box-shadow: var(--shadow-xs);
}

/* Step transition styles */
.cart-step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  animation: step-fade-in 0.3s var(--ease) forwards;
}

@keyframes step-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-next-step {
  width: 100%;
  padding: 0.95rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  box-shadow: 0 8px 24px rgba(28, 12, 4, 0.18);
}

.btn-back-to-cart {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--ink-500);
  background: transparent;
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.btn-back-to-cart:hover {
  color: var(--ink-900);
  background: var(--bg-alt);
  border-color: var(--border-strong);
  transform: translateX(-2px);
}

/* Summary Box */
.cart-summary-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: var(--shadow-xs);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.summary-row span {
  color: var(--ink-500);
  font-weight: 500;
}

.summary-row strong {
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.95rem;
}

.summary-note {
  font-size: 0.725rem;
  color: var(--ink-400);
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  line-height: 1.4;
  text-align: center;
}

/* Spinner and Buttons */
.btn-submit-order, .btn-submit-contact {
  width: 100%;
  justify-content: center;
  padding: 0.95rem;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
.btn-submit-order {
  position: sticky;
  bottom: 0;
  box-shadow: 0 10px 30px rgba(28, 12, 4, 0.22);
}
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.8s linear infinite;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

@keyframes cart-item-enter {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes cart-item-updated {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.025); border-color: rgba(37, 211, 102, 0.38); }
  100% { transform: scale(1); }
}

@keyframes qty-pop {
  0%   { transform: translateY(0) scale(1); }
  45%  { transform: translateY(-2px) scale(1.3); color: var(--soy-500); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes cart-empty-in {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes cart-empty-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-4px) rotate(-3deg); }
}

.cart-error, .contact-error {
  color: var(--salmon);
  font-size: 0.825rem;
  font-weight: 500;
  background: rgba(212, 104, 72, 0.08);
  border: 1px solid rgba(212, 104, 72, 0.2);
  padding: 0.6rem 0.875rem;
  border-radius: var(--r-sm);
  animation: form-error-in 0.24s var(--ease-spring);
}

@keyframes form-error-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-success {
  color: #2b7040;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
}

/* Card Quantity UI */
.card-add-container {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-card-add {
  background: var(--soy-900);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  transition: all 0.2s;
  width: 100%;
  text-align: center;
  justify-content: center;
  display: inline-flex;
}
.btn-card-add:hover {
  background: var(--soy-700);
  transform: translateY(-1px);
}
.btn-card-add-confirmed {
  background: var(--wa-green);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.24);
}
.card-qty-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 0.35rem 0.75rem;
  width: 100%;
  justify-content: space-between;
}
.btn-card-qty {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-800);
  cursor: pointer;
}
.btn-card-qty:hover { background: rgba(0,0,0,0.06); }
.card-qty-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-900);
}


/* ── CTA / Contact Grid ─────────────────────────────────── */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  text-align: left;
  align-items: center;
}
.cta-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  text-align: left;
}
.cta-form-container {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--r-xl);
  padding: var(--space-md);
  width: 100%;
}
.contact-form {
  gap: 1rem;
}
.contact-form .form-group input, .contact-form .form-group textarea {
  background: var(--surface-alt);
}

@media (min-width: 900px) {
  .cta-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
  }
  .cta-form-container {
    padding: var(--space-lg);
  }
}


/* ── Product Detail Page Styles ────────────────────────── */
.product-detail-main {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: var(--space-3xl);
}
.back-navigation {
  margin-bottom: 2rem;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-500);
  transition: color 0.2s, transform 0.2s;
}
.btn-back:hover {
  color: var(--ink-900);
  transform: translateX(-3px);
}

.detail-loading, .detail-error {
  text-align: center;
  padding-block: var(--space-3xl);
  color: var(--ink-500);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .detail-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.detail-visuals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visual-display-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
  transform-style: preserve-3d;
  will-change: transform;
}

.visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.visual-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(12, 9, 4, 0.75);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.video-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--salmon);
  animation: pulse-dot 1.5s infinite;
}

.photo-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translate3d(0,0,0);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-900);
  opacity: 0;
  pointer-events: none;
  transition: 
    opacity 0.3s var(--ease),
    background-color 0.2s var(--ease),
    transform 0.2s var(--ease);
  z-index: 15;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.photo-nav-arrow:hover {
  background: #ffffff;
  color: var(--soy-500);
  transform: translateY(-50%) scale(1.05);
}

.arrow-prev {
  left: 16px;
}

.arrow-next {
  right: 16px;
}

/* Mostrar flechas solo en hover del frame de la imagen */
.visual-display-frame:hover .photo-nav-arrow {
  opacity: 1;
  pointer-events: auto;
}

.detail-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.detail-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soy-500);
  background: rgba(180, 104, 48, 0.08);
  border: 1px solid rgba(180, 104, 48, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-pill);
}

.detail-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.detail-desc-long {
  font-size: 1.05rem;
  color: var(--ink-500);
  line-height: 1.65;
}

.detail-ingredients-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-700);
  margin-bottom: 0.75rem;
}

.detail-ingredients-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.detail-ingredient-tag {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--ink-700);
  font-size: 0.825rem;
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-sm);
}

.detail-allergens-section {
  width: 100%;
}

.allergen-alert {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem;
  background: rgba(212, 104, 72, 0.05);
  border: 1px solid rgba(212, 104, 72, 0.15);
  border-radius: var(--r-md);
  color: var(--ink-700);
  font-size: 0.875rem;
}

.allergen-alert svg {
  color: var(--salmon);
  flex-shrink: 0;
}

.detail-purchase-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.purchase-qty-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 0.5rem 1rem;
}

.btn-purchase-qty {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-800);
  background: transparent;
  cursor: pointer;
}

.btn-purchase-qty:hover {
  background: rgba(0,0,0,0.06);
}

.purchase-qty-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-900);
  min-width: 20px;
  text-align: center;
}

.btn-add-detail {
  flex: 1;
  min-width: 200px;
  padding: 1.05rem;
  font-size: 1rem;
}


.card-name a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}
.card-name a:hover {
  opacity: 0.8;
}

.card-presentation {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--soy-600);
  margin-top: 0.35rem;
  margin-bottom: 0.5rem;
}
.purchase-qty-control-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}
.purchase-helper-text {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-400);
}



/* ── Steps Interactive Section ────────────────────────── */
.steps-interactive-section {
  position: relative;
  background: var(--bg); /* fondo beige claro */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-sticky-container {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  width: 100%;
  align-items: center;
  position: relative;
}

@media (min-width: 900px) {
  .steps-sticky-container {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

/* Columna de Texto */
.steps-text-column {
  padding: 6rem 1.5rem 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .steps-text-column {
    padding-left: var(--space-2xl);
    height: 100vh;
    padding-block: 0;
  }
}

.steps-header-interactive {
  text-align: left;
  margin-bottom: 3.5rem;
}
.steps-header-interactive .section-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
}

.step-interactive-text-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.step-interactive-item {
  opacity: 0.2;
  transition: opacity 0.4s var(--ease);
}

.step-interactive-item.active {
  opacity: 1;
}

.step-inter-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--soy-500);
  background: rgba(180, 104, 48, 0.08);
  border: 1px solid rgba(180, 104, 48, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-sm);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.step-interactive-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 0.5rem;
}

.step-interactive-item p {
  font-size: 0.95rem;
  color: var(--ink-500);
  line-height: 1.6;
}

/* Columna de Animación */
.steps-visual-column {
  position: relative;
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(245, 235, 220, 0.45) 0%, rgba(235, 222, 203, 0) 70%);
}

@media (min-width: 900px) {
  .steps-visual-column {
    height: 100vh;
  }
}

.product-animation-viewport {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.85);
  perspective: 1200px;
  transform-style: preserve-3d;
}

@media (min-width: 900px) {
  .product-animation-viewport {
    transform: scale(1.15);
  }
}

/* El bowl elegante de salsa */
.elegant-bowl {
  position: absolute;
  bottom: 60px;
  right: 50px;
  width: 100px;
  height: 38px;
  border-radius: 50% / 19px;
  background: var(--surface);
  border: 2px solid var(--border-strong);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  z-index: 5;
}
.bowl-inner {
  position: relative;
  width: 90px;
  height: 30px;
  border-radius: 50% / 15px;
  background: var(--bg-alt);
  overflow: hidden;
}
.bowl-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #150b05, #27160c);
  transform: scaleY(0);
  transform-origin: bottom;
}
.bowl-label {
  position: absolute;
  bottom: -22px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-400);
}

/* Gotas de salsa cayendo */
.soy-drips-container {
  position: absolute;
  top: 130px;
  right: 155px;
  width: 20px;
  height: 200px;
  pointer-events: none;
  z-index: 4;
}
.soy-drip {
  position: absolute;
  width: 4px;
  height: 12px;
  border-radius: 50% / 30%;
  background: #25140b;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
}

/* Tubo principal */
.main-tube-wrapper {
  position: absolute;
  width: 110px;
  height: 230px;
  z-index: 10;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.main-tube {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eae0d0 0%, #e0d2bd 50%, #c4b59f 100%);
  border-radius: var(--r-lg);
  border: 1.5px solid rgba(0,0,0,0.06);
  box-shadow: 
    0 15px 35px rgba(43, 30, 19, 0.15),
    inset 2px 2px 5px rgba(255,255,255,0.7),
    inset -4px -4px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.tube-front {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tube-brand {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: rotate(180deg);
}
.brand-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.tube-stripe {
  position: absolute;
  left: 0;
  top: 15%;
  width: 10px;
  height: 70%;
  background: var(--soy-500);
  opacity: 0.85;
}

.tube-cap-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(to bottom, #d2c5b3, #eae0d0);
  border-bottom: 1.5px solid rgba(0,0,0,0.08);
  border-top-left-radius: var(--r-lg);
  border-top-right-radius: var(--r-lg);
}

.tube-cap-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(to top, #b6a793, #eae0d0);
  border-top: 1.5px solid rgba(0,0,0,0.08);
  border-bottom-left-radius: var(--r-lg);
  border-bottom-right-radius: var(--r-lg);
}

/* Elevador de sushi interior */
.sushi-elevator {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 210px;
  overflow: visible; /* para permitir que las piezas sobresalgan por arriba */
  z-index: -1; /* por detrás de la tapa frontal del tubo */
  transform-style: preserve-3d;
}

.elevator-sushi-piece {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.22),
    0 2px 6px rgba(0,0,0,0.12);
  border: 2px solid var(--surface);
  transform: translate3d(0, 0, 0);
  left: 4px;
  transform-style: preserve-3d;
  will-change: transform, filter;
}

.elevator-sushi-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

/* Apilado inicial de los sushis */
.elevator-sushi-piece.piece-1 {
  top: 20px;
  z-index: 3;
}
.elevator-sushi-piece.piece-2 {
  top: 75px;
  z-index: 2;
}
.elevator-sushi-piece.piece-3 {
  top: 130px;
  z-index: 1;
}

/* Tubo de Salsa (Émbolo) */
.soy-tube {
  position: absolute;
  width: 32px;
  height: 140px;
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--r-md);
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.05),
    inset 1px 1px 3px rgba(255,255,255,0.6);
  z-index: 15;
  overflow: hidden;
  backdrop-filter: blur(2px);
  will-change: transform;
}

.soy-tube-cap {
  width: 100%;
  height: 14px;
  background: linear-gradient(135deg, #2b2b2b 0%, #151515 100%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.soy-tube-liquid {
  width: 100%;
  height: calc(100% - 14px);
  background: linear-gradient(90deg, #180d05 0%, #29160a 50%, #180d05 100%);
  transform-origin: bottom;
  transition: transform 0.1s var(--ease);
}

.soy-tube-body-lines {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80%;
  height: 60%;
  background: linear-gradient(to bottom, 
    transparent 0%, transparent 45%, 
    rgba(255,255,255,0.2) 50%, 
    transparent 55%, transparent 100%
  );
  background-size: 100% 12px;
  pointer-events: none;
}

/* ── Premium Product Demo ───────────────────────────────── */
.product-demo-section {
  --demo-bg: #f8f3ea;
  --demo-line: rgba(60, 30, 10, 0.08);
  --demo-muted: #80664d;
  --demo-ink: #17110a;
  background:
    radial-gradient(circle at 82% 48%, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(180deg, #fbf7ef 0%, var(--demo-bg) 100%);
  border-block: 1px solid var(--demo-line);
  overflow: hidden;
}

.product-demo-shell {
  width: min(100%, 1240px);
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(4.5rem, 8vw, 7rem) var(--container-px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.product-demo-copy {
  max-width: 500px;
}

.product-demo-header {
  margin-bottom: clamp(2rem, 5vw, 3.6rem);
}

.product-demo-eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--soy-500);
  margin-bottom: 0.72rem;
}

.product-demo-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.35rem, 4.6vw, 4.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--demo-ink);
}

.product-demo-title em {
  display: block;
  color: var(--soy-500);
  font-style: italic;
}

.product-demo-steps {
  display: grid;
  gap: 0.85rem;
  counter-reset: demoStep;
}

.product-demo-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--demo-line);
  color: var(--demo-muted);
  opacity: 0.48;
  transform: translateX(0);
  transition:
    opacity 0.36s var(--ease),
    color 0.36s var(--ease),
    transform 0.36s var(--ease);
}

.product-demo-step.active {
  opacity: 1;
  color: var(--demo-ink);
  transform: translateX(6px);
}

.product-demo-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(60, 30, 10, 0.13);
  background: rgba(255, 255, 255, 0.58);
  color: var(--soy-500);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: none;
  transition:
    background 0.36s var(--ease),
    color 0.36s var(--ease),
    box-shadow 0.36s var(--ease),
    transform 0.36s var(--ease);
}

.product-demo-step.active .product-demo-step-num {
  background: var(--demo-ink);
  color: #fff;
  box-shadow: 0 10px 28px rgba(23, 17, 10, 0.16);
  transform: scale(1.04);
}

.product-demo-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 800;
  line-height: 1.15;
  color: currentColor;
  margin-bottom: 0.2rem;
}

.product-demo-step p {
  max-width: 32rem;
  color: var(--demo-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-demo-step.active p {
  color: #5f4a36;
}

.product-demo-stage-wrap {
  position: relative;
  min-height: clamp(440px, 68vw, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-demo-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 0.84 / 1;
  isolation: isolate;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.product-demo-stage::before {
  content: '';
  position: absolute;
  inset: 11% 8% 7%;
  border-radius: 48%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.7), transparent 48%),
    rgba(255, 255, 255, 0.28);
  filter: blur(0.2px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  z-index: -2;
}

.product-demo-camera {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform-origin: 50% 56%;
  will-change: transform;
}

.product-demo-shadow {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 52%;
  height: 8%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(42, 28, 14, 0.12);
  filter: blur(22px);
  z-index: 0;
}

.product-demo-tube,
.product-demo-soy,
.product-demo-sushi {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.product-demo-tube {
  width: 52%;
  height: auto;
  left: 50%;
  bottom: 13%;
  translate: -50% 0;
  z-index: 10;
  filter: drop-shadow(0 28px 42px rgba(45, 29, 13, 0.13));
}

.product-demo-soy {
  width: 18%;
  height: auto;
  left: 50%;
  bottom: 4%;
  translate: -50% 0;
  z-index: 18;
  filter: drop-shadow(0 14px 24px rgba(45, 29, 13, 0.12));
}

.product-demo-sushi-stack {
  position: absolute;
  left: 46%;
  bottom: 58%;
  width: 40%;
  aspect-ratio: 1;
  translate: -50% 0;
  transform-style: preserve-3d;
  z-index: 8;
}

.product-demo-sushi {
  width: 92%;
  height: auto;
  left: 9%;
  bottom: 0;
  border-radius: 50%;
  object-fit: contain;
}

.product-demo-sushi.sushi-1 {
  z-index: 13;
}

.product-demo-sushi.sushi-2 {
  z-index: 12;
  left: 15%;
}

.product-demo-sushi.sushi-3 {
  z-index: 11;
  left: 4%;
}

@media (max-width: 899px) {
  .product-demo-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding-block: 4rem 4.5rem;
  }

  .product-demo-copy {
    max-width: 680px;
  }

  .product-demo-header {
    margin-bottom: 1.55rem;
  }

  .product-demo-title {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .product-demo-steps {
    gap: 0.2rem;
  }

  .product-demo-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.74rem 0;
  }

  .product-demo-step.active {
    transform: none;
  }

  .product-demo-step-num {
    width: 28px;
    height: 28px;
  }

  .product-demo-stage-wrap {
    min-height: clamp(380px, 118vw, 560px);
  }

  .product-demo-stage {
    width: min(100%, 430px);
  }

  .product-demo-tube {
    width: 58%;
  }

  .product-demo-soy {
    width: 20%;
  }
}


/* ── Scroll reveal — GSAP fallback ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .menu-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .wa-float { animation: none !important; }
  .eyebrow-dot { animation: none !important; }
  .scroll-line { animation: none !important; }
  .cart-badge-count,
  .cart-target-pop,
  .cart-fly-img,
  .cart-sidebar-backdrop,
  .cart-sidebar-content,
  .cart-empty,
  .cart-empty-icon,
  .cart-item,
  .cart-item-enter,
  .cart-item-updated,
  .cart-item-qty,
  .product-demo-step,
  .product-demo-step-num,
  .product-demo-camera,
  .product-demo-tube,
  .product-demo-soy,
  .product-demo-sushi {
    animation: none !important;
    transition: none !important;
  }
}

/* ── Mobile Menu Footer Buttons ─────────────────────────── */
.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  width: 100%;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.mobile-footer-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.mobile-footer-btn:active {
  transform: scale(0.97);
}

/* Custom button types with default colored states */
.mobile-footer-btn.btn-wa-light {
  background: #25D366;
  border: 1px solid rgba(18, 140, 126, 0.2);
  color: #ffffff;
  animation: wa-pulse 3s infinite ease-in-out;
}
.mobile-footer-btn.btn-wa-light:hover {
  background: #20ba5a;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.5);
}

.mobile-footer-btn.btn-ig-light {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border: none;
  color: #ffffff;
  animation: ig-pulse 3s infinite ease-in-out 1s;
}
.mobile-footer-btn.btn-ig-light:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 14px rgba(225, 48, 108, 0.5);
}

.mobile-footer-btn.btn-maps-light {
  background: #4285F4;
  border: 1px solid rgba(66, 133, 244, 0.2);
  color: #ffffff;
  animation: maps-pulse 3s infinite ease-in-out 2s;
}
.mobile-footer-btn.btn-maps-light:hover {
  background: #357ae8;
  box-shadow: 0 0 14px rgba(66, 133, 244, 0.5);
}

/* Staggered pulse glow animations */
@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 0 12px 4px rgba(37, 211, 102, 0.2);
  }
}

@keyframes ig-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.45);
  }
  50% {
    box-shadow: 0 0 12px 4px rgba(225, 48, 108, 0.2);
  }
}

@keyframes maps-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.45);
  }
  50% {
    box-shadow: 0 0 12px 4px rgba(66, 133, 244, 0.2);
  }
}

/* ── Empty Cart Return Button ───────────────────────────── */
.btn-empty-return {
  margin-top: 1.25rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  width: auto;
  display: inline-flex;
}

/* ── Video Demo Section ─────────────────────────────────── */
.video-demo-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg, #f5f0e8) 0%, var(--bg-alt, #ede7d8) 100%);
  padding-block: var(--space-xl, 6rem);
  overflow: hidden;
}

/* Ambient light glow behind video */
.video-demo-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(212, 104, 72, 0.14) 0%, rgba(212, 104, 72, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.video-demo-section .container {
  position: relative;
  z-index: 1;
}

/* Custom salmon eyebrow for this section */
.video-demo-section .section-eyebrow {
  color: var(--salmon, #d46848) !important;
  font-weight: 700;
  background-color: rgba(212, 104, 72, 0.07);
  padding: 0.35rem 0.95rem;
  border-radius: var(--r-pill, 9999px);
  border: 1px solid rgba(212, 104, 72, 0.12);
  margin-bottom: 1.25rem;
}

.video-container-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}

.video-wrapper {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border: 4px solid var(--salmon, #d46848) !important;
}

.video-wrapper:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--salmon-light, #e89070) !important;
  box-shadow: 0 30px 60px rgba(212, 104, 72, 0.18), 0 10px 25px rgba(212, 104, 72, 0.1);
}

.video-cta {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ── Hero Sub Badge Shimmer Effect ──────────────────────── */
.shimer-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: badge-shimmer 4.5s infinite ease-in-out;
}

@keyframes badge-shimmer {
  0% {
    left: -150%;
  }
  30%, 100% {
    left: 150%;
  }
}
