/* ==========================================================================
   EXQUISITECES BY LAURA - CSS Optimizado OKLCH
   ========================================================================== */

:root {
  /* Color Strategy: Committed (Editorial Tint) */
  --color-bg-base: oklch(98.39% 0.006 44.57); /* Ivory Editorial #FFF8F2 */
  --color-bg-surface: oklch(99.15% 0.005 44.57); /* Elevated Ivory */
  --color-bg-soft: oklch(97.25% 0.012 44.57); /* Barely Warm Ivory */
  --color-bg-muted: oklch(95.75% 0.015 44.57); /* Inner Paper Tint */
  --color-bg-deep: oklch(18.52% 0.035 346.94); /* Dark Cacao */
  
  --color-text-primary: oklch(14.77% 0.021 346.94); /* Cacao Ink #17040D */
  --color-text-secondary: oklch(45.2% 0.03 44.57); /* Muted Editorial */
  --color-text-disabled: oklch(65% 0.02 44.57);
  
  --color-brand: oklch(60.01% 0.236 348.69); /* Fuchsia Pulse #EC008C */
  --color-brand-hover: oklch(52.42% 0.21 348.69);
  --color-brand-pressed: oklch(45.18% 0.18 348.69);
  --color-brand-subtle: oklch(96.34% 0.025 348.69);
  --color-brand-badge: oklch(84.14% 0.08 348.69);
  
  --color-accent: oklch(62.33% 0.125 54.21); /* Honeyed Earth #C47B57 */
  
  --color-border-soft: oklch(from var(--color-text-primary) l c h / 0.09);
  --color-border-medium: oklch(from var(--color-text-primary) l c h / 0.16);
  --color-border-warm: oklch(from var(--color-accent) l c h / 0.26);
  
  --color-success: oklch(48.24% 0.11 145);
  --color-warning: oklch(72.58% 0.15 78);
  --color-info: oklch(45.62% 0.1 285);
  --color-error: oklch(52.18% 0.2 25);

  /* Semantic Aliases */
  --cream: var(--color-bg-base);
  --paper: var(--color-bg-base);
  --paper-elevated: var(--color-bg-surface);
  --paper-soft: var(--color-bg-soft);
  --paper-muted: var(--color-bg-muted);
  --cacao: var(--color-bg-deep);
  --ink: var(--color-text-primary);
  --ink-m: var(--color-text-secondary);
  --fucsia: var(--color-brand);
  --fucsia-d: var(--color-brand-hover);
  --fucsia-l: var(--color-brand-badge);
  --miel: var(--color-accent);
  --galleta-d: var(--color-accent);
  --texture-story:
    radial-gradient(circle at 18% 24%, oklch(88% 0.045 50 / 0.42) 0 1px, transparent 1.6px),
    radial-gradient(circle at 74% 18%, oklch(76% 0.062 33 / 0.18) 0 1.2px, transparent 1.9px),
    radial-gradient(ellipse at 88% 72%, oklch(87% 0.05 351 / 0.18) 0 18%, transparent 48%),
    linear-gradient(105deg, oklch(100% 0.006 44 / 0.64), transparent 42%),
    repeating-linear-gradient(86deg, transparent 0 12px, oklch(62% 0.024 42 / 0.035) 12px 13px),
    repeating-linear-gradient(176deg, transparent 0 18px, oklch(62% 0.024 42 / 0.028) 18px 19px);
  --texture-visit:
    radial-gradient(circle at 16% 32%, oklch(72% 0.075 42 / 0.15) 0 1.2px, transparent 2px),
    radial-gradient(circle at 82% 58%, oklch(58% 0.04 31 / 0.10) 0 1px, transparent 1.8px),
    radial-gradient(ellipse at 74% 20%, oklch(99% 0.008 42 / 0.54) 0 12%, transparent 42%),
    linear-gradient(135deg, oklch(100% 0.006 44 / 0.48), transparent 38%),
    repeating-linear-gradient(92deg, oklch(56% 0.022 38 / 0.032) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(4deg, transparent 0 22px, oklch(42% 0.018 34 / 0.024) 22px 23px);

  /* Typography */
  --ff-d: Fraunces, Georgia, serif;
  --ff-b: Nunito, system-ui, -apple-system, Segoe UI, sans-serif;
  --ff-s: Sacramento, cursive;

  /* Layout */
  --maxw: 1280px;
  --pad-x: clamp(16px, 4vw, 56px);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows - OKLCH tinted */
  --sh-xs: 0 1px 0 oklch(from var(--ink) l c h / 0.05);
  --sh-sm: 0 10px 26px oklch(from var(--ink) l c h / 0.065);
  --sh-md: 0 16px 42px oklch(from var(--ink) l c h / 0.09);
  --sh-lg: 0 28px 72px oklch(from var(--ink) l c h / 0.13);
  --sh-f: 0 12px 30px oklch(from var(--fucsia) l c h / 0.2);
  
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-b);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

:focus-visible { 
  outline: 3px solid var(--fucsia); 
  outline-offset: 3px; 
}

/* Fix case where outline:none was too aggressive */
.pc-c-btn:focus, .filter-btn:focus, .nav-tog:focus {
  outline: none;
}
.pc-c-btn:focus-visible, .filter-btn:focus-visible, .nav-tog:focus-visible {
  outline: 3px solid var(--fucsia);
}

.container,
.section-container {
  width: min(var(--maxw), calc(100% - (var(--pad-x) * 2)));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(66px, 9vw, 112px);
  overflow: hidden; /* Mantener para recortar fugas, pero ojo con clipping tipografico */
}

.section-head {
  max-width: 820px;
  margin: 0 0 clamp(26px, 5vw, 52px);
}

.section-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--ff-d);
  font-size: clamp(2.35rem, 6vw, 4.5rem);
  font-weight: 520;
  line-height: 1.1; /* Ampliado para evitar clipping vertical */
}

.section-title em,
.story-quote em,
.visit-title em,
.trust-faq-head em,
.footer-v2 h2 em,
h1 em,
h2 em,
h3 em {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}
.co-head h2 em { color: var(--fucsia); font-style: italic; }

.section-sub {
  max-width: 65ch;
  margin: 0;
  color: var(--ink-m);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.eyebrow,
.products-kicker,
.hero-origin,
.modal-eye {
  margin: 0 0 14px;
  color: var(--miel);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn,
.premium-button,
.hero-pedidosya-button,
.trust-review-cta {
  min-height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--r-pill);
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.btn-primary,
.premium-button,
.trust-review-cta {
  background: var(--fucsia);
  color: var(--paper-elevated);
  box-shadow: var(--sh-f);
}

.btn-ghost {
  border: 1px solid var(--color-border-soft);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--sh-xs);
}

.btn:hover,
.premium-button:hover,
.hero-pedidosya-button:hover,
.trust-review-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.btn-block { width: 100%; }

.inline-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.inline-icon--warn { color: var(--miel); }
.btn .inline-icon,
.premium-button svg,
.hero-pedidosya-button img { flex-shrink: 0; }

.rv { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: 80ms; }
.d2 { transition-delay: 160ms; }
.d3 { transition-delay: 240ms; }
.d4 { transition-delay: 320ms; }




.paper-tear::before {
  background: var(--tear-fill);
  opacity: var(--tear-opacity);
}
.paper-tear::after {
  background-image: var(--tear-texture);
  background-size: 34px 34px, 46px 46px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  opacity: 0.82;
  mix-blend-mode: multiply;
}
.paper-tear img { width: 100%; height: 38px; object-fit: cover; opacity: 0; }
.hero .paper-tear--bottom,
.cats .paper-tear--top,
.pdv .paper-tear--bottom,
.trust-section .paper-tear--top {
  --tear-fill: var(--paper);
}
.cats .paper-tear--bottom,
.products .paper-tear--top,
.pdv .paper-tear--top {
  --tear-fill: var(--cream);
}
.products .paper-tear--bottom,
.story .paper-tear--top {
  --tear-fill: var(--cream);
  --tear-texture: var(--texture-story);
}
.story .paper-tear--bottom {
  --tear-fill: var(--paper);
  --tear-texture: var(--texture-visit);
}
.trust-section .paper-tear--bottom,
.footer-v2 .paper-tear--top {
  --tear-fill: var(--cacao);
  --tear-texture:
    radial-gradient(circle at 12% 42%, oklch(35% 0.08 348 / 0.18) 0 1px, transparent 1.8px),
    linear-gradient(96deg, oklch(100% 0.006 44 / 0.04), transparent 42%);
  --tear-opacity: 0.98;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: var(--cream);
  transition: opacity 600ms var(--ease), visibility 600ms var(--ease);
}
.splash.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-inner { display: grid; gap: 18px; justify-items: center; }
.splash-logo { width: min(220px, 58vw); }
.splash-loader { width: 130px; height: 3px; overflow: hidden; border-radius: var(--r-pill); background: var(--color-brand-badge); }
.splash-loader::after { content: ""; display: block; width: 100%; height: 100%; background: var(--fucsia); animation: prefill 1200ms var(--ease) both; }
@keyframes prefill { from { transform: translateX(-100%); } to { transform: none; } }

.ann {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--fucsia);
  color: var(--paper-elevated);
}
.ann-track { display: flex; align-items: center; white-space: nowrap; animation: marquee 34s linear infinite; }
.ann-track span { padding-inline: 22px; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.ann-sep { opacity: 0.5; }
@keyframes marquee { to { transform: translateX(-50%); } }

.nav {
  position: fixed;
  top: 44px;
  left: 22px;
  right: 22px;
  z-index: 1250;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--r-pill);
  background: oklch(from var(--color-bg-base) l c h / 0.92);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(18px);
}
.nav-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 7px 9px 7px 20px; }
.nav-logo img { height: clamp(38px, 4vw, 52px); width: auto; }
.nav-links { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; list-style: none; }
.nav-links a,
.nav-products-toggle {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.nav-products-toggle svg { width: 18px; height: 18px; margin-left: 4px; fill: none; stroke: currentColor; stroke-width: 2; }
.nav-mobile-products { position: relative; }
.nav-products-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--r-lg);
  background: oklch(from var(--color-bg-base) l c h / 0.96);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
}
.nav-products-panel a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--r-md);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}
.nav-products-panel a:hover { background: var(--paper-elevated); color: var(--fucsia); }
.nav-mobile-products:hover .nav-products-panel,
.nav-mobile-products:focus-within .nav-products-panel,
.nav-mobile-products.is-open .nav-products-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-acts { display: flex; align-items: center; gap: 8px; }
.cart-btn,
.nav-tog {
  position: relative;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--color-border-soft);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--sh-xs);
}
.cart-btn svg { width: 24px; height: 24px; }
.cart-count {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding-inline: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  background: var(--fucsia);
  color: var(--paper-elevated);
  font-size: 0.72rem;
  font-weight: 900;
}
.nav-tog { display: none; gap: 4px; }
.nav-tog span { width: 20px; height: 2px; border-radius: 2px; background: currentColor; }
.nav-backdrop { display: none; }

.hero.hero-video {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 16vh, 200px) 0 80px;
  overflow: hidden;
  background: var(--cacao);
  color: var(--paper-elevated);
}

.hero-video-media {
  position: absolute;
  inset: -5%; /* Bleed to allow parallax */
  width: 110%;
  height: 110%;
  z-index: -2;
  will-change: transform;
}
.hero-video-media::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: oklch(0% 0 0 / 0.65); /* Darken to let orb pop */
  z-index: 0;
}
.hero-video-bg { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  filter: brightness(0.6) saturate(1.1) contrast(1.1); 
}

.hero-ambient-orb {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orb-color, var(--fucsia)) 0%, transparent 60%);
  filter: blur(8vw);
  opacity: 0.45;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, background;
  transition: background 0.8s ease;
}

.hero-spatial-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.spatial-text-layer {
  text-align: center;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vh, 32px);
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--pad-x);
}

.hero-origin {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--miel);
  opacity: 0.9;
  text-shadow: 0 4px 12px oklch(0% 0 0 / 0.8);
}

.hero-video-title {
  margin: 0;
  color: var(--paper-elevated);
  font-family: var(--ff-d);
  font-size: clamp(4.5rem, 14vw, 12rem); /* Massive */
  font-weight: var(--hero-wght, 700);
  font-variation-settings: "opsz" var(--hero-opsz, 144);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-shadow: 0 24px 80px oklch(0% 0 0 / 0.9);
  will-change: font-weight, font-variation-settings;
}

.title-line { display: block; }

.hero-word-wrap { 
  position: relative; 
  display: inline-block; 
}

.hero-video-accent { 
  color: var(--fucsia); 
  font-style: italic; 
}
.hero-period { color: var(--fucsia); }

.hero-bottom-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vh, 48px);
  margin-top: clamp(16px, 3vh, 32px);
}

.hero-video-sub { 
  margin: 0; 
  max-width: 600px;
  color: oklch(95% 0.01 44 / 0.9); 
  font-family: var(--ff-d); 
  font-size: clamp(1.2rem, 2.2vw, 1.8rem); 
  line-height: 1.4;
  text-shadow: 0 4px 16px oklch(0% 0 0 / 0.8);
}
.hero-video-sub span { display: block; }
.hero-video-sub .muted-text { 
  font-family: var(--ff-b);
  font-size: 1rem;
  margin-top: 12px;
  opacity: 0.7;
}

.hero-video-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 1024px) {
  .hero.hero-video { padding-top: 120px; perspective: 800px; }
  .spatial-text-layer { transform: translateZ(50px); }
  .hero-video-title { font-size: clamp(4rem, 16vw, 6rem); }
}
.premium-button { min-width: 214px; position: relative; transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease; }
.premium-button:hover { transform: translateY(-2px); box-shadow: 0 16px 32px oklch(from var(--primary) l c h / 0.35); }
.premium-button svg { width: 18px; height: 18px; transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.premium-button:hover svg { transform: translate(2px, -2px); }
.hero-pedidosya-button {
  min-width: 164px;
  background: #F52F41;
  color: var(--paper-elevated);
  border: 1px solid oklch(from var(--paper-elevated) l c h / 0.18);
  box-shadow: 0 12px 30px oklch(58% 0.22 25 / 0.24);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
}
.hero-pedidosya-button:hover { transform: translateY(-2px); box-shadow: 0 16px 38px oklch(58% 0.22 25 / 0.35); background: #FF3B4D; }
.hero-pedidosya-button img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 2;
}

/* --- HERO ANIMATIONS (Premium Editorial) --- */
:root {
  --hero-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-loaded .stagger-1 { animation: heroFadeDown 0.8s var(--hero-ease) forwards; }
.hero-loaded .stagger-2 { animation: heroLift 0.9s var(--hero-ease) 0.1s forwards; opacity: 0; }
.hero-loaded .stagger-3 { animation: heroLift 0.9s var(--hero-ease) 0.25s forwards; opacity: 0; }
.hero-loaded .stagger-4 { animation: heroLift 0.8s var(--hero-ease) 0.4s forwards; opacity: 0; }
.hero-loaded .stagger-5 { animation: heroLift 0.8s var(--hero-ease) 0.55s forwards; opacity: 0; }

.hero-unloaded .stagger-1, .hero-unloaded .stagger-2, .hero-unloaded .stagger-3, .hero-unloaded .stagger-4, .hero-unloaded .stagger-5 { opacity: 0; }

@keyframes heroFadeDown { 0% { opacity: 0; transform: translateY(-15px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes heroLift { 0% { opacity: 0; transform: translateY(28px); } 100% { opacity: 1; transform: translateY(0); } }

/* Editorial Word Transitions */
.word-fade-out { opacity: 0; transform: translateY(12px) scale(0.96); transform-origin: left bottom; transition: all 280ms var(--hero-ease); }
.word-fade-in { opacity: 1; transform: translateY(0) scale(1); transform-origin: left bottom; transition: all 400ms var(--hero-ease); }

.cats {
  padding: 0;
  background: rgb(243, 232, 227);
}
.cats .section-head,
.products .section-head,
.trust-head { margin-inline: auto; text-align: center; }
.cats .section-sub,
.products .section-sub,
.trust-head .section-sub { margin-inline: auto; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: clamp(520px, 66svh, 720px);
  background: var(--cacao);
  overflow: hidden;
}
.cat-card {
  position: relative;
  min-height: clamp(520px, 66svh, 720px);
  overflow: hidden;
  border-radius: 0;
  background: var(--cacao);
  color: var(--paper-elevated);
  box-shadow: none;
  isolation: isolate;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(28px) scale(0.985);
  transition:
    clip-path 900ms var(--ease),
    transform 900ms var(--ease),
    opacity 700ms var(--ease);
}
.cat-card + .cat-card {
  border-left: 1px solid oklch(from var(--paper-elevated) l c h / 0.12);
}
.cat-card + .cat-card .cat-card-overlay::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  z-index: 0;
  width: 2px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    oklch(from var(--paper-elevated) l c h / 0.04) 16%,
    oklch(from var(--paper-elevated) l c h / 0.28) 50%,
    oklch(from var(--paper-elevated) l c h / 0.04) 84%,
    transparent 100%
  );
}
.cats-grid.is-open .cat-card,
.no-js .cat-card {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
}
.cats-grid.is-open .cat-card:nth-child(2) { transition-delay: 110ms; }
.cats-grid.is-open .cat-card:nth-child(3) { transition-delay: 220ms; }
.cat-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(1.04) contrast(1.06);
  transform: scale(1.03);
  transition: transform 900ms var(--ease), filter 500ms var(--ease);
}
.cat-card::before,
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.cat-card::before {
  background:
    linear-gradient(180deg, oklch(from var(--cacao) l c h / 0.64) 0%, oklch(from var(--cacao) l c h / 0.34) 7%, transparent 22%),
    radial-gradient(circle at 50% 34%, transparent 0 34%, oklch(from var(--cacao) l c h / 0.44) 100%),
    linear-gradient(180deg, oklch(from var(--paper-elevated) l c h / 0.07), transparent 30%, oklch(from var(--cacao) l c h / 0.76)),
    linear-gradient(90deg, oklch(from var(--cacao) l c h / 0.22), transparent 48%);
  opacity: 0.98;
  transition: opacity 420ms var(--ease), background 420ms var(--ease);
}
.cat-card::after {
  z-index: 0;
  background:
    radial-gradient(circle at 24% 22%, oklch(from var(--paper-elevated) l c h / 0.08) 0 1px, transparent 1.6px),
    radial-gradient(circle at 76% 68%, oklch(from var(--miel) l c h / 0.07) 0 1px, transparent 1.8px),
    repeating-linear-gradient(98deg, transparent 0 12px, oklch(from var(--paper-elevated) l c h / 0.025) 12px 13px);
  background-size: 28px 28px, 36px 36px, 100% 100%;
  mix-blend-mode: soft-light;
  opacity: 0.44;
}
.cat-card:hover img,
.cat-card:focus-visible img {
  filter: brightness(0.72) saturate(1.09) contrast(1.07);
  transform: scale(1.095);
}
.cat-card:hover::before,
.cat-card:focus-visible::before {
  opacity: 0.86;
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  padding: clamp(28px, 5vw, 72px);
  text-align: left;
  background: transparent;
  transform: translateY(10px);
  transition: transform 500ms var(--ease);
}
.cat-card-overlay > * {
  position: relative;
  z-index: 1;
}
.cat-card:hover .cat-card-overlay,
.cat-card:focus-visible .cat-card-overlay {
  transform: translateY(0);
}
.cat-card-name {
  max-width: 8ch;
  font-family: var(--ff-d);
  font-size: clamp(3.15rem, 6vw, 6.25rem);
  font-weight: 620;
  line-height: 0.92;
  color: var(--paper-elevated);
  text-wrap: balance;
  text-shadow: 0 18px 48px oklch(from var(--ink) l c h / 0.42);
}
.cat-card-note {
  max-width: 22ch;
  margin: 0;
  color: oklch(from var(--paper-elevated) l c h / 0.82);
  font-weight: 850;
  line-height: 1.25;
  opacity: 0.86;
}
.cat-card-cta {
  color: var(--paper-elevated);
  font-weight: 900;
  background: transparent;
  border: 0;
  opacity: 0.76;
  transform: translateY(6px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease), letter-spacing 300ms var(--ease);
}
.cat-card:hover .cat-card-cta,
.cat-card:focus-visible .cat-card-cta {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: 0.02em;
}
.cat-card .arrow {
  display: inline-block;
  transition: transform 300ms var(--ease);
}
.cat-card:hover .arrow,
.cat-card:focus-visible .arrow {
  transform: translateX(5px);
}
.combos {
  position: relative;
  padding-block: clamp(78px, 10vw, 128px);
  background: var(--cream);
  overflow: hidden;
}
.combos-swiper { width: 100%; overflow: visible !important; margin-bottom: 48px; }
#combos-grid { display: flex; background: transparent; }
.combos-swiper .swiper-slide { height: auto; }
.combo-card-v2 {
  position: relative;
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--r-xl);
  background: var(--paper);
  box-shadow: var(--sh-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.combo-card-v2:hover {
  border-color: var(--color-border-medium);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.combos-swiper .swiper-slide-active .combo-card-v2 {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg), 0 12px 48px oklch(from var(--fucsia) l c h / 0.13);
  border-color: var(--color-border-medium);
}
.combos-swiper .swiper-slide-active .combo-card-v2:hover { transform: translateY(-8px); }
.combos-swiper .swiper-pagination-progressbar {
  top: auto !important;
  bottom: -32px !important;
  height: 2px !important;
  width: 120px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: var(--color-border-soft) !important;
  border-radius: 2px;
  overflow: hidden;
}
.combos-swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--fucsia) !important;
  border-radius: 2px;
}
.combo-badge-v2 {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-border-warm);
  background: var(--paper-elevated);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 950;
  box-shadow: var(--sh-sm);
}
.combo-img-v2 {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  background: var(--paper-elevated);
}
.combo-category-v2 {
  display: block;
  margin: 18px 18px 0;
  color: var(--miel);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.combo-name-v2 {
  margin: 4px 18px 5px;
  color: var(--ink);
  font-family: var(--ff-d);
  font-size: clamp(1.22rem, 2.1vw, 1.58rem);
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.combo-includes-v2 {
  flex: 1;
  margin: 0 18px;
  color: var(--ink-m);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}
.combo-foot-v2 { display: grid; grid-template-columns: minmax(104px, auto) 1fr; align-items: center; gap: 10px; margin-top: auto; padding: 18px; }
.combo-price-block-v2 { display: grid; gap: 1px; min-height: 48px; align-content: center; justify-content: start; } /* Target tactil visual */
.combo-price-old-v2 { color: var(--color-text-disabled); font-size: 0.75rem; text-decoration: line-through; }
.combo-price-main-v2 { color: var(--fucsia); font-family: var(--ff-d); font-size: 1.8rem; font-weight: 750; line-height: 1.1; } /* line-height ampliado */
.combo-add { min-height: 60px; height: 60px; padding-inline: 20px; border: 0; border-radius: var(--r-pill); background: var(--fucsia); color: var(--paper-elevated); font-weight: 950; box-shadow: var(--sh-f); }

/* Swiper Pagination - Area tactil ampliada */
.swiper-pagination-bullet {
  width: 44px !important;
  height: 44px !important;
  background: transparent !important;
  opacity: 1 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}
.swiper-pagination-bullet::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border-medium);
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.swiper-pagination-bullet-active::after {
  background: var(--ink);
  transform: scale(1.4);
}

.products { background: var(--cream); }
.catalog-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
.filters,
.subfilters,
.pdv-region-filters,
.pdv-zone-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar, .subfilters::-webkit-scrollbar, .pdv-region-filters::-webkit-scrollbar, .pdv-zone-filters::-webkit-scrollbar { display: none; }

.filter-btn,
.pdv-region-btn,
.pdv-zone-btn {
  min-height: 48px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--sh-xs);
  transition: transform 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
}
.filter-btn:hover,
.pdv-region-btn:hover,
.pdv-zone-btn:hover {
  border-color: var(--color-border-medium);
  box-shadow: var(--sh-sm);
  transform: translateY(-1px);
}
.filter-btn.active,
.filter-btn[aria-pressed="true"],
.pdv-region-btn.active,
.pdv-region-btn[aria-pressed="true"],
.pdv-zone-btn.active,
.pdv-zone-btn[aria-pressed="true"] { background: var(--paper); color: var(--ink); border-color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink), var(--sh-sm); }

.subfilters { justify-content: center; margin-bottom: 18px; }

.catalog-view-toggle,
.pdv-view-toggle {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border-soft);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--sh-sm);
}
.catalog-view-toggle svg,
.pdv-view-toggle svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; }
.catalog-view-toggle svg *,
.pdv-view-toggle svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.catalog-view-toggle .icon-list,
.catalog-view-toggle.is-grid .icon-grid,
.pdv-view-toggle .icon-list,
.pdv-view-toggle.is-grid .icon-grid { display: none; }
.catalog-view-toggle.is-grid .icon-list,
.pdv-view-toggle.is-grid .icon-list { display: block; }

.celiac-banner {
  max-width: 820px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 auto 28px;
  padding: 14px 16px;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--r-lg);
  background: var(--paper);
  color: var(--ink-m);
  box-shadow: var(--sh-xs);
}
#product-grid { margin-inline: auto; }
#product-grid.is-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 1120px;
}
#product-grid.list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1120px;
}
.pc-card {
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--r-xl);
  background: var(--paper);
  box-shadow: var(--sh-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.pc-card:hover {
  border-color: var(--color-border-medium);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
#product-grid.is-grid .pc-card { display: flex; flex-direction: column; }
#product-grid.is-grid .pc-img { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
#product-grid.is-grid .pc-img img { width: 100%; height: 100%; object-fit: cover; }
#product-grid.is-grid .pc-info { min-width: 0; padding: 18px 18px 0; text-align: left; }
.pc-category { display: block; color: var(--miel); font-size: 0.7rem; font-weight: 950; letter-spacing: 0.12em; text-transform: uppercase; }
.pc-title { margin: 4px 0 5px; color: var(--ink); font-family: var(--ff-d); font-size: clamp(1.22rem, 2.1vw, 1.58rem); line-height: 1.1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pc-units-text { color: var(--ink-m); font-size: 0.82rem; font-weight: 800; }
.pc-price { display: block; margin-top: 7px; color: var(--ink); font-family: var(--ff-d); font-size: 1.8rem; font-weight: 750; line-height: 1.1; }
.pc-card-ingredients { display: none; }
.pc-i-btn {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--paper-elevated);
  color: var(--ink);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px var(--color-border-soft);
}
.pc-actions { display: grid; grid-template-columns: minmax(104px, auto) 1fr; gap: 10px; margin-top: auto; padding: 18px; }
.pc-counter {
  min-height: 48px;
  min-width: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--r-pill);
  background: var(--cream);
  box-shadow: inset 0 0 0 1px oklch(from var(--paper-elevated) l c h / 0.72);
}
.pc-c-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--paper-elevated);
  color: var(--ink);
  box-shadow: var(--sh-sm);
  transition: transform 150ms var(--ease);
}
.pc-c-btn:active:not(:disabled) { transform: scale(0.92); }
.pc-c-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.pc-c-btn svg { width: 16px; height: 16px; }
.pc-c-val { width: 24px; text-align: center; font-weight: 950; }
.pc-add-btn {
  min-height: 48px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--fucsia);
  color: var(--paper-elevated);
  font-weight: 950;
  box-shadow: var(--sh-f);
}
#product-grid.list .pc-card { display: grid; grid-template-columns: 165px 1fr 130px; align-items: stretch; min-height: 148px; }
#product-grid.list .pc-img { width: 165px; overflow: hidden; }
#product-grid.list .pc-img img { width: 100%; height: 100%; object-fit: cover; }
#product-grid.list .pc-info { min-width: 0; padding: 14px 16px; display: flex; flex-direction: column; }
#product-grid.list .pc-title { font-size: 1.15rem; -webkit-line-clamp: 2; }
#product-grid.list .pc-price { font-size: 1.35rem; margin-top: 3px; }
#product-grid.list .pc-i-btn { display: inline-flex; margin-top: auto; padding: 0 10px; min-height: 34px; font-size: 0.78rem; }
#product-grid.list .pc-card-ingredients { display: none; }
#product-grid.list .pc-actions { display: flex; flex-direction: column; justify-content: center; padding: 14px 12px; margin-top: 0; gap: 10px; }
#product-grid.list .pc-counter { display: flex; min-width: unset; width: 100%; min-height: 40px; }
#product-grid.list .pc-add-btn { width: 100%; min-height: 44px; font-size: 0.9rem; }

.story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.story > * {
  position: relative;
  z-index: 1;
}
.story::before,
.story::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.story {
  background-color: var(--cream);
  background-image: var(--texture-story);
  background-size: 34px 34px, 46px 46px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}
.story::before {
  background:
    radial-gradient(ellipse at 12% 78%, oklch(93% 0.028 60 / 0.74), transparent 44%),
    radial-gradient(ellipse at 80% 16%, oklch(96% 0.025 30 / 0.58), transparent 36%);
  mix-blend-mode: multiply;
  opacity: 0.72;
}
.story::after {
  background-image:
    repeating-linear-gradient(23deg, transparent 0 9px, oklch(45% 0.018 35 / 0.026) 9px 10px),
    repeating-linear-gradient(113deg, transparent 0 15px, oklch(98% 0.01 70 / 0.34) 15px 16px);
  opacity: 0.48;
}
.story-grid { display: grid; grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr); gap: clamp(28px, 6vw, 72px); align-items: center; }
.story-photo-wrap { position: relative; }
.story-photo {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.story-photo img {
  width: min(112%, 640px);
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: rotate(-1.2deg);
}
.story-quote { margin: 0; font-family: var(--ff-d); font-size: clamp(2.35rem, 5vw, 4.25rem); font-weight: 300; line-height: 1.1; }
.story-text { max-width: 65ch; color: var(--ink-m); font-size: 1.05rem; }
.story-sign { color: var(--fucsia); font-family: var(--ff-s); font-size: 2.2rem; font-weight: 400; } /* Sacramento font */

.visit-title { margin: 0 0 20px; font-family: var(--ff-d); font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.1; }
.visit-address { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; color: var(--ink); }
.visit-address svg { width: 26px; height: 26px; color: var(--fucsia); flex: 0 0 auto; }
.visit-address-t { font-family: var(--ff-d); font-size: 1.08rem; font-weight: 560; }
.visit-address-d { color: var(--ink-m); }
.visit-hours { margin: 18px 0; background: oklch(from var(--cream) l c h / 0.84); }
.visit-hours-title { display: flex; gap: 8px; align-items: center; font-weight: 950; }
.visit-hours-title svg { width: 20px; height: 20px; color: var(--fucsia); }
.visit-hours-day { margin-top: 10px; font-family: var(--ff-d); font-style: italic; font-weight: 300; font-size: 1.05rem; color: var(--ink-m); }
.visit-hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--color-border-soft); }
.visit-hours-row.closed { color: var(--color-text-disabled); }
.visit-actions .btn { min-height: 52px; }
.map-blob { overflow: hidden; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.map-blob img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.pdv { background: var(--cream); }
.pdv .section-head {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.pdv .section-sub { margin-inline: auto; }
.pdv-visit-card {
  width: min(660px, 100%);
  margin: 0 auto clamp(28px, 5vw, 46px);
  background: oklch(98.39% 0.006 44.57);
  background-image: var(--texture-visit);
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--sh-md);
}
.pdv-controls { display: flex; align-items: center; gap: 12px; margin: 0 auto 16px; max-width: 820px; }
.pdv-filter-stack { min-width: 0; flex: 1; display: grid; gap: 8px; }
.pdv-region-filters { justify-content: center; }
.pdv-region-btn { min-width: 112px; justify-content: center; }
.pdv-zone-filters { flex: 1; }
.pdv-count { text-align: center; color: var(--ink-m); font-weight: 900; }
.pdv-grid { display: grid; gap: 12px; max-width: 920px; margin: 0 auto; }
.pdv-grid.is-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pdv-card { padding: 18px; border: 1px solid var(--color-border-soft); border-radius: var(--r-lg); background: var(--paper); box-shadow: var(--sh-sm); transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease); }
.pdv-card:hover { border-color: var(--color-border-medium); box-shadow: var(--sh-md); transform: translateY(-2px); }
.pdv-region { color: var(--ink-m); font-size: 0.68rem; font-weight: 950; letter-spacing: 0.12em; text-transform: uppercase; }
.pdv-zone { margin-top: 3px; color: var(--miel); font-size: 0.72rem; font-weight: 950; letter-spacing: 0.1em; text-transform: uppercase; }
.pdv-name { margin: 6px 0 5px; font-family: var(--ff-d); font-size: 1.3rem; line-height: 1.1; }
.pdv-addr { margin: 0 0 12px; color: var(--ink-m); }
.pdv-instagram { min-height: 48px; display: inline-flex; align-items: center; gap: 8px; color: var(--fucsia); font-weight: 950; }
.pdv-cta { display: grid; gap: 20px; justify-items: center; margin-top: 24px; }
.b2b { max-width: 760px; padding: clamp(24px, 4vw, 42px) 0 0; border: 0; border-radius: 0; background: transparent; color: var(--ink); text-align: center; box-shadow: none; }
.b2b h3 { margin: 0; font-family: var(--ff-d); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.b2b p { color: var(--ink-m); }

.trust-section {
  scroll-margin-top: 142px;
  background:
    radial-gradient(ellipse at 18% 14%, oklch(from var(--miel) l c h / 0.09), transparent 34%),
    linear-gradient(180deg, var(--cream), var(--paper-elevated) 52%, var(--cream));
}
.trust-section .container { width: min(1180px, calc(100% - (var(--pad-x) * 2))); }
.trust-head {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: clamp(20px, 3vw, 34px);
}
.trust-proof {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  margin: 0 auto 18px;
  padding: 14px 20px;
  border: 1px solid var(--color-border-soft);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--sh-md);
}
.trust-score { font-family: var(--ff-d); font-size: clamp(2.15rem, 4vw, 3.15rem); line-height: 1; }
.trust-stars,
.trust-card-stars { color: var(--miel); letter-spacing: 2px; }
.trust-proof-copy,
.trust-google { color: var(--ink-m); font-size: 0.82rem; font-weight: 900; }
.trust-google { display: inline-flex; align-items: center; gap: 6px; }
.trust-google svg { width: 18px; height: 18px; }
.trust-review-action { display: flex; justify-content: center; margin-bottom: clamp(32px, 5vw, 58px); }
.trust-layout { display: flex; flex-direction: column; gap: clamp(36px, 5vw, 64px); }

/* ── TESTIMONIOS MARQUEE ───── */
.tt-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 64px, black calc(100% - 64px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 64px, black calc(100% - 64px), transparent);
  padding-block: 18px;
  margin-top: -18px;
}
.tt { display: flex; gap: 20px; width: max-content; animation: tt-go 52s linear infinite; }
.tt:hover { animation-play-state: paused; }
.tc {
  position: relative;
  flex-shrink: 0;
  width: clamp(320px, 27vw, 380px);
  min-height: 250px;
  background: var(--paper);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: var(--sh-sm);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.tc:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-medium);
  box-shadow: var(--sh-md);
}
.tc-stars { color: var(--miel); font-size: .88rem; letter-spacing: 2px; }
.tc-text { font-family: var(--ff-d); font-size: 1.02rem; font-weight: 420; font-style: italic; color: var(--ink-m); line-height: 1.62; flex: 1; margin: 0; }
.tc-auth { display: flex; align-items: center; gap: 11px; border-top: 1px solid var(--color-border-soft); padding-top: 14px; }
.tc-av { width: 38px; height: 38px; border: 1px solid var(--color-border-warm); border-radius: 50%; background: var(--paper-elevated) !important; display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 800; color: var(--ink) !important; flex-shrink: 0; letter-spacing: .04em; }
.tc-name { font-size: .84rem; font-weight: 800; color: var(--ink); }
@keyframes tt-go { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 9px)); } }

.trust-faq-panel {
  max-width: 980px;
  width: 100%;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--r-xl);
  background: var(--paper);
  box-shadow: var(--sh-md);
}
.trust-faq-head h3 { margin: 0 0 clamp(18px, 2.5vw, 28px); font-family: var(--ff-d); font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.05; color: var(--ink); }
.faq-list { display: grid; gap: 0; }
.faq-item { overflow: hidden; border: none; border-top: 1px solid var(--color-border-soft); border-radius: 0; background: transparent; transition: background 180ms var(--ease), box-shadow 180ms var(--ease); }
.faq-item:last-child { border-bottom: 1px solid var(--color-border-soft); }
.faq-item[open] { background: var(--paper-elevated); box-shadow: inset 0 1px 0 var(--color-border-soft), inset 0 -1px 0 var(--color-border-soft); }
.faq-item summary { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 6px; color: var(--ink); font-weight: 850; font-size: 1.02rem; cursor: pointer; list-style: none; transition: color 180ms var(--ease), padding 180ms var(--ease); }
.faq-item summary:hover { color: var(--color-text-secondary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--color-border-medium); background: var(--paper); flex: 0 0 auto; transition: transform 300ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease); font-size: 0; color: var(--ink); }
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon { transform: rotate(45deg); border-color: var(--ink); box-shadow: var(--sh-xs); }
.faq-item[open] summary ~ * { animation: faq-open 280ms var(--ease); }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.faq-body { max-width: 72ch; padding: 0 52px 22px 6px; color: var(--ink-m); font-size: 0.96rem; line-height: 1.7; }

/* ── Final CTA ── */
.trust-final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 760px;
  margin-inline: auto;
  margin-top: clamp(36px, 5vw, 56px);
  padding: clamp(24px, 4vw, 40px) 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.trust-final-cta p {
  margin: 0;
  font-family: var(--ff-d);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
}

.footer-v2 {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 96px) 0 0;
  background:
    radial-gradient(ellipse at 18% 0%, oklch(from var(--fucsia) l c h / 0.18), transparent 35%),
    radial-gradient(ellipse at 88% 18%, oklch(from var(--miel) l c h / 0.08), transparent 34%),
    linear-gradient(180deg, oklch(from var(--cacao) calc(l + 0.025) c h), var(--cacao) 42%, oklch(from var(--cacao) calc(l - 0.018) c h));
  color: var(--paper-elevated);
}
.footer-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 24%, oklch(100% 0.006 44 / 0.055) 0 1px, transparent 1.6px),
    linear-gradient(110deg, transparent, oklch(100% 0.006 44 / 0.045) 48%, transparent);
  background-size: 30px 30px, 100% 100%;
  opacity: 0.55;
  mix-blend-mode: screen;
}
.footer-v2::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(100% 0.006 44 / 0.28), transparent);
  pointer-events: none;
}
.footer-shell { position: relative; z-index: 1; }
.footer-cta-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 34vw, 430px);
  display: flex;
  align-items: flex-end;
  padding: clamp(30px, 5.4vw, 58px);
  border: 1px solid oklch(100% 0.006 44 / 0.14);
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at 84% 24%, oklch(from var(--fucsia) l c h / 0.16), transparent 38%),
    linear-gradient(135deg, oklch(100% 0.006 44 / 0.085), oklch(100% 0.006 44 / 0.025));
  box-shadow: 0 32px 100px oklch(0% 0 0 / 0.28), inset 0 1px 0 oklch(100% 0.006 44 / 0.12);
}
.footer-cta-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid oklch(100% 0.006 44 / 0.075);
  border-radius: calc(var(--r-xl) - 12px);
  pointer-events: none;
}
.footer-cta-copy { max-width: 850px; }
.footer-logo { width: clamp(96px, 9vw, 132px); height: auto; margin-bottom: clamp(20px, 3vw, 32px); filter: brightness(0) invert(1); opacity: 0.92; }
.footer-v2 h2 { margin: 0; font-family: var(--ff-d); font-size: clamp(2.55rem, 5.6vw, 5.25rem); font-weight: 420; line-height: 1.03; text-wrap: balance; }
.footer-cta-copy p { max-width: 48ch; margin: 18px 0 0; color: oklch(100% 0.006 44 / 0.74); font-size: clamp(1rem, 1.35vw, 1.16rem); line-height: 1.65; }
.footer-grid { display: grid; grid-template-columns: minmax(300px, 1.35fr) repeat(3, minmax(160px, 1fr)); gap: clamp(26px, 4vw, 56px); margin-top: clamp(42px, 6vw, 68px); }
.footer-block { min-width: 0; }
.footer-block h3 { margin: 0 0 16px; color: var(--fucsia-l); font-size: 0.74rem; font-weight: 950; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-block a,
.footer-address { min-height: 40px; display: flex; align-items: center; gap: 11px; color: oklch(100% 0.006 44 / 0.78); font-weight: 850; transition: color 200ms var(--ease), transform 200ms var(--ease); }
.footer-block a:hover { color: var(--paper-elevated); transform: translateX(3px); }
.footer-address svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.15; stroke-linecap: round; stroke-linejoin: round; color: var(--fucsia); flex: 0 0 auto; filter: drop-shadow(0 8px 18px oklch(from var(--fucsia) l c h / 0.24)); }
.footer-address small { color: oklch(100% 0.006 44 / 0.56); font-weight: 800; }
.footer-hours { margin-top: 12px; }
.footer-hours div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-top: 1px solid oklch(100% 0.006 44 / 0.09); color: oklch(100% 0.006 44 / 0.62); }
.footer-hours strong { color: oklch(100% 0.006 44 / 0.9); white-space: nowrap; }
.footer-block--links { display: flex; flex-direction: column; }
.footer-block--links a { width: fit-content; }
.footer-social-icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: oklch(100% 0.006 44 / 0.12); border: 1px solid oklch(100% 0.006 44 / 0.08); flex: 0 0 44px; transition: background 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease); }
.footer-social-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.05; stroke-linecap: round; stroke-linejoin: round; color: var(--paper-elevated); }
.footer-social-icon svg path,
.footer-social-icon svg circle,
.footer-social-icon svg rect { fill: none; stroke: currentColor; }
.footer-block a:hover .footer-social-icon { background: var(--fucsia); border-color: var(--fucsia); transform: scale(1.04); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: clamp(40px, 5vw, 62px); padding: 22px 0 26px; border-top: 1px solid oklch(100% 0.006 44 / 0.11); color: oklch(100% 0.006 44 / 0.6); font-size: 0.84rem; }
.footer-bottom a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid oklch(100% 0.006 44 / 0.12);
  border-radius: var(--r-pill);
  color: var(--paper-elevated);
  font-weight: 900;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
}
.footer-bottom a:hover { transform: translateY(-1px); border-color: oklch(100% 0.006 44 / 0.28); background: oklch(100% 0.006 44 / 0.08); }

.cart-overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: none;
  background: oklch(14.77% 0.021 346.94 / 0.48);
  backdrop-filter: blur(4px);
}
.cart-overlay.open,
.modal-overlay.open { display: block; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1700;
  width: min(420px, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  box-shadow: -22px 0 60px oklch(14.77% 0.021 346.94 / 0.2);
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
}
.cart-drawer.open { transform: none; }
.cart-head { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--color-border-soft); }
.cart-head h3 { margin: 0; font-family: var(--ff-d); font-size: 1.8rem; }
.cart-close,
.modal-close,
.co-close { width: 48px; height: 48px; border: 1px solid var(--color-border-soft); border-radius: 50%; background: var(--paper); color: var(--ink); font-size: 1.5rem; display: grid; place-items: center; box-shadow: var(--sh-xs); }
.cart-body { flex: 1; overflow: auto; padding: 18px; }
.cart-empty { min-height: 280px; display: grid; place-items: center; align-content: center; gap: 8px; color: var(--ink-m); text-align: center; }
.cart-empty svg { width: 82px; height: 82px; color: var(--miel); }
.cart-empty p { margin: 0; color: var(--ink); font-family: var(--ff-d); font-size: 1.7rem; }
.cart-item { display: grid; grid-template-columns: 74px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--color-border-soft); }
.cart-item-img { width: 74px; height: 74px; overflow: hidden; border: 1px solid var(--color-border-soft); border-radius: var(--r-md); background: var(--paper); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-weight: 950; line-height: 1.15; }
.cart-item-pres { color: var(--ink-m); font-size: 0.82rem; }
.cart-item-price { color: var(--ink); font-weight: 950; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 44px; height: 44px; border: 1px solid var(--color-border-soft); border-radius: 50%; background: var(--paper); font-weight: 950; font-size: 1.2rem; box-shadow: var(--sh-xs); }
.qty-btn,
.co-close {
  position: relative;
  font-size: 0;
}
.qty-btn::before,
.qty-btn::after,
.co-close::before,
.co-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.qty-btn[data-qty="+"]::after { transform: translate(-50%, -50%) rotate(90deg); }
.qty-btn[data-qty="-"]::after { display: none; }
.co-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.co-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.qty-num { min-width: 24px; text-align: center; font-weight: 950; }
.cart-foot { padding: 18px; border-top: 1px solid var(--color-border-soft); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.cart-total-lbl { color: var(--ink-m); font-weight: 900; }
.cart-total-num { color: var(--ink); font-family: var(--ff-d); font-size: 2rem; font-weight: 750; }
.cart-foot-note { color: var(--ink-m); font-size: 0.84rem; text-align: center; }

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1750;
  width: min(560px, calc(100vw - 28px));
  max-height: min(86dvh, 760px);
  overflow: auto;
  display: none;
  transform: translate(-50%, -50%);
  border-radius: var(--r-xl);
  background: var(--cream);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--color-border-soft);
}
.modal.open { display: block; }
.modal-wide { width: min(900px, calc(100vw - 28px)); }
.modal-body { padding: 24px; }
.modal-close { position: absolute; top: 14px; right: 14px; }
.ing-modal-img { width: 100%; max-height: 260px; object-fit: cover; border-radius: var(--r-lg); margin-bottom: 18px; }
.modal-title { margin: 0; font-family: var(--ff-d); font-size: 2rem; line-height: 1.1; }
.modal-pres { color: var(--ink-m); }
.ing-list { display: grid; gap: 9px; margin: 16px 0 0; padding: 0; list-style: none; }
.ing-list li { display: flex; gap: 10px; align-items: flex-start; }
.ing-dot { width: 8px; height: 8px; margin-top: 9px; border-radius: 50%; background: var(--miel); flex: 0 0 auto; }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 2400; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; padding: 12px 16px; border-radius: 999px; background: var(--ink); color: var(--paper-elevated); font-weight: 900; transition: opacity 220ms var(--ease), transform 220ms var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.co-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; border-bottom: 1px solid var(--color-border-soft); position: sticky; top: 0; background: var(--cream); z-index: 2; }
.co-head h2 { margin: 0; font-family: var(--ff-d); font-size: clamp(1.5rem, 4vw, 2rem); line-height: 1.1; }
.co-body { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.co-summary { padding: 18px; border-radius: var(--r-lg); background: var(--paper); box-shadow: var(--sh-xs); }
.co-summary h4 { font-family: var(--ff-d); font-style: italic; font-size: 1.15rem; color: var(--fucsia); margin-bottom: 10px; font-weight: 300; }
.co-line { display: flex; justify-content: space-between; gap: 18px; padding: 7px 0; border-bottom: 1px solid var(--color-border-soft); font-size: 0.88rem; }
.co-line:last-child { border-bottom: 0; }
.co-total { font-weight: 800; font-size: 1rem; padding-top: 10px; margin-top: 4px; border-top: 2px solid var(--ink); border-bottom: 0 !important; }
.co-total span:last-child { color: var(--fucsia); }
.co-form { display: flex; flex-direction: column; gap: 20px; }
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-form label { display: grid; gap: 7px; color: var(--ink); font-weight: 700; font-size: 0.82rem; }
.co-form input:not([type=radio]):not([type=checkbox]):not([type=file]) { min-height: 48px; width: 100%; border: 1.5px solid var(--color-border-soft); border-radius: var(--r-sm); padding: 0 14px; font-size: 0.9rem; background: var(--paper-elevated); transition: border-color .2s; }
.co-form input:not([type=radio]):not([type=checkbox]):not([type=file]):focus { outline: none; border-color: var(--fucsia); }
.co-form input[type=radio] { width: 18px; height: 18px; min-height: unset; flex-shrink: 0; accent-color: var(--fucsia); cursor: pointer; margin: 0; }
.co-section-t { display: block; font-family: var(--ff-b); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fucsia); margin-bottom: 12px; }
.co-section-d { font-size: 0.84rem; color: var(--ink-m); margin-bottom: 12px; line-height: 1.5; }
.co-req { color: var(--fucsia); font-style: normal; }
.co-radio { display: flex; flex-direction: column; gap: 8px; }
.co-radio-item { display: flex !important; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--color-border-soft); border-radius: var(--r-lg); background: var(--paper-elevated); min-height: 48px; cursor: pointer; transition: border-color .2s, background .2s; }
.co-radio-item input[type=radio] { margin-top: 3px; accent-color: var(--fucsia); }
.co-radio-item strong { font-size: 0.9rem; display: block; margin-bottom: 2px; }
.co-radio-item span { color: var(--ink-m); font-size: 0.78rem; line-height: 1.45; display: block; }
.co-radio-item.on { border-color: var(--fucsia); background: oklch(from var(--fucsia) l c h / 0.05); }
.co-bank { background: var(--paper); border-radius: var(--r-lg); padding: 16px; display: flex; flex-direction: column; gap: 0; box-shadow: var(--sh-xs); }
.co-bank-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--color-border-soft); gap: 8px; font-size: 0.85rem; flex-wrap: wrap; }
.co-bank-row:last-child { border-bottom: 0; padding-bottom: 0; }
.co-k { color: var(--ink-m); font-size: 0.78rem; flex-shrink: 0; }
.co-v { color: var(--ink); font-weight: 700; display: flex; align-items: center; gap: 7px; font-family: 'Courier New', monospace; word-break: break-all; }
.co-bank-total { padding-top: 10px; border-top: 2px solid var(--ink); border-bottom: 0 !important; }
.co-bank-total .co-v { font-family: var(--ff-d); font-size: 1.2rem; color: var(--fucsia); font-weight: 400; }
.co-copy { font-size: 0.7rem; font-weight: 700; background: oklch(14.77% 0.021 346.94 / 0.08); padding: 3px 8px; border-radius: 999px; cursor: pointer; transition: background .2s; border: 0; font-family: var(--ff-b); }
.co-copy:hover, .co-copy.copied { background: var(--color-success); color: var(--paper-elevated); }
.co-file-label { display: flex; flex-direction: column; gap: 6px; cursor: pointer; }
.co-file { min-height: 58px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 2px dashed var(--color-border-soft); border-radius: var(--r-lg); background: var(--paper); cursor: pointer; transition: border-color .2s, background .2s; }
.co-file:hover { border-color: var(--fucsia); background: oklch(from var(--fucsia) l c h / 0.05); }
.co-file.has-file { border-color: var(--color-success); border-style: solid; background: oklch(from var(--color-success) l c h / 0.05); }
.co-file svg { width: 22px; height: 22px; color: var(--ink-m); flex-shrink: 0; }
.co-file-name { font-size: 0.84rem; color: var(--ink-m); }
.co-submit { margin-top: 4px; }
.co-status { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding-top: 8px; }
.co-spinner { width: 80px; height: 80px; margin: 0 auto 20px; }
.co-spinner svg,
.co-success svg { width: 80px; height: 80px; }
.co-spin-c { animation: coSpin 1.2s linear infinite; transform-origin: center; }
@keyframes coSpin { to { transform: rotate(360deg); } }
.co-status h3 { font-family: var(--ff-d); font-size: 1.6rem; margin-bottom: 10px; }
.co-status p { color: var(--ink-m); font-size: 0.94rem; line-height: 1.55; max-width: 400px; margin: 0 auto 14px; }
.co-mail { display: flex; align-items: center; gap: 12px; background: var(--paper); border-radius: var(--r-lg); padding: 14px 18px; margin-bottom: 18px; box-shadow: var(--sh-xs); }
.co-mail svg { width: 22px; height: 22px; color: var(--fucsia); flex-shrink: 0; }
.co-mail strong { font-size: 0.8rem; display: block; }
.co-mail span { font-size: 0.88rem; color: var(--ink-m); }
.co-steps { display: flex; flex-direction: column; gap: 6px; text-align: left; margin: 20px 0 0; padding: 0; list-style: none; }
.co-steps li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--color-border-soft); font-size: 0.84rem; color: var(--ink-m); }
.co-steps li:last-child { border-bottom: 0; }
.co-steps li::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--color-border-soft); flex-shrink: 0; }
.co-steps li.done { color: var(--color-success); }
.co-steps li.done::before { background: var(--color-success); }
.co-steps li.active { color: var(--ink); font-weight: 700; }
.co-steps li.active::before { background: var(--fucsia); box-shadow: 0 0 0 3px oklch(from var(--fucsia) l c h / 0.15); }
.co-confirm { text-align: center; padding: 16px 0 24px; }
.co-confirm-icon { width: 56px; height: 56px; background: var(--color-success); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--paper-elevated); }
.co-confirm-icon svg { width: 26px; height: 26px; }
.co-confirm h3 { font-family: var(--ff-d); font-size: 1.5rem; margin-bottom: 8px; }
.co-confirm p { font-size: 0.9rem; color: var(--ink-m); line-height: 1.55; }
.co-success { width: 80px; height: 80px; margin: 0 auto 20px; }

.fab-stack { position: fixed; right: 18px; bottom: 18px; z-index: 1300; display: grid; gap: 10px; }
.fab { width: 56px; height: 56px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--fucsia); color: var(--paper-elevated); box-shadow: var(--sh-f); cursor: pointer; }
.fab svg { width: 24px; height: 24px; }
#fab-undo { background: var(--paper-elevated); color: var(--fucsia); border: 1px solid var(--color-border-medium); }
#fab-undo:hover { background: var(--paper-soft); }

/* Utilities for inline style migration */
.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }
.d-inline-flex { display: inline-flex; }
.pos-rel { position: relative; }
.text-center { text-align: center; }
.m-t-40 { margin-top: 40px; }
.justify-start { justify-content: flex-start; }
.overflow-hidden { overflow: hidden !important; }

/* Hero Word Animations */
/* End of animations */

@media (max-width: 1100px) {
  .nav { top: 40px; left: 12px; right: 12px; }
  .nav-inner { min-height: 60px; padding-left: 14px; }
  .nav-tog { display: inline-grid; }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    margin: 0 12px;
    padding: 16px;
    border-radius: var(--r-xl);
    background: var(--cream);
    box-shadow: var(--sh-lg);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms var(--ease);
  }
  .nav.open .nav-links { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a,
  .nav-products-toggle { width: 100%; justify-content: flex-start; padding-inline: 12px; border-radius: var(--r-md); }
  .nav-products-panel {
    position: static;
    min-width: 0;
    display: grid;
    gap: 4px;
    padding: 0 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-products-panel[hidden] { display: none; }
  .nav-products-panel a { min-height: 48px; color: var(--ink-m); }
  .nav-backdrop { position: fixed; inset: 0; z-index: 1240; border: 0; background: oklch(14.77% 0.021 346.94 / 0.18); }
  body.nav-open .nav-backdrop { display: block; }
}

@media (max-width: 900px) {
  .story-grid,
  .footer-grid,
  .footer-cta-panel { grid-template-columns: 1fr; }
  .footer-v2 { padding-top: 58px; }
  .footer-cta-panel {
    min-height: clamp(330px, 58vw, 430px);
    align-items: flex-end;
  }
  .footer-grid { gap: 34px; }
  .cats-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    min-height: clamp(540px, 72svh, 660px);
  }
  .cat-card {
    min-height: clamp(180px, 24svh, 220px);
  }
  .cat-card + .cat-card {
    border-left: 0;
    border-top: 1px solid oklch(from var(--paper-elevated) l c h / 0.12);
  }
  .cat-card + .cat-card .cat-card-overlay::before {
    inset: -1px 0 auto;
    width: auto;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      oklch(from var(--paper-elevated) l c h / 0.04) 16%,
      oklch(from var(--paper-elevated) l c h / 0.28) 50%,
      oklch(from var(--paper-elevated) l c h / 0.04) 84%,
      transparent 100%
    );
  }
  .cat-card-overlay {
    align-items: center;
    padding: clamp(22px, 7vw, 42px);
    text-align: center;
  }
  .cat-card-name {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 3.45rem);
    line-height: 0.96;
  }
  .cat-card-note {
    font-size: 0.94rem;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding-bottom: 82px; }
}

@media (max-width: 640px) {
  .container,
  .section-container { width: min(100% - 28px, var(--maxw)); }
  .section { padding-block: 64px; }
  .section-head { text-align: left; }
  .section-title { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .ann { height: 32px; }
  .hero.hero-video { min-height: 100svh; padding: 98px 0 38px; }
  .hero-video-title { font-size: clamp(3.2rem, 15.6vw, 4.8rem); line-height: 1.1; }
  .hero-video-sub { max-width: 31ch; font-size: clamp(1.08rem, 4.7vw, 1.25rem); }
  .hero-video-ctas { flex-direction: column; width: 100%; max-width: 270px; margin-inline: auto; }
  .hero-video-ctas .premium-button { width: 100%; min-width: auto; }
  .hero-video-ctas .hero-pedidosya-button { width: 100%; min-width: auto; background: #F52F41; border: 1px solid oklch(100% 0 0 / 0.18); }
  .cat-card { min-height: clamp(170px, 23svh, 205px); max-height: none; }
  .cat-card-name { font-size: clamp(2.15rem, 10vw, 3.1rem); }
  .cat-card-overlay { gap: 8px; }
  #product-grid.is-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  #product-grid.is-grid .pc-info { padding: 14px 14px 0; }
  #product-grid.is-grid .pc-title { font-size: clamp(1rem, 4.4vw, 1.2rem); }
  #product-grid.is-grid .pc-actions { grid-template-columns: 1fr; padding: 14px; }
  #product-grid.is-grid .pc-counter,
  #product-grid.is-grid .pc-add-btn { width: 100%; }
  #product-grid.list { grid-template-columns: 1fr; gap: 10px; }
  #product-grid.list .pc-card { grid-template-columns: 120px 1fr 110px; min-height: 130px; }
  #product-grid.list .pc-img { width: 120px; }
  #product-grid.list .pc-info { padding: 12px 14px; }
  #product-grid.list .pc-title { font-size: 1rem; }
  #product-grid.list .pc-price { font-size: 1.15rem; }
  #product-grid.list .pc-actions { padding: 12px 10px; }
  .combo-foot-v2 { grid-template-columns: 1fr; align-items: stretch; }
  .combo-add { width: 100%; min-height: 60px; height: 60px; }
  .pdv-controls { align-items: flex-start; }
  .pdv-grid.is-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .pdv-card { padding: 14px; }
  .pdv-name { font-size: 1.08rem; }
  .trust-section { scroll-margin-top: 118px; }
  .trust-section .container { width: min(100% - 28px, var(--maxw)); }
  .trust-head { margin-bottom: 22px; }
  .trust-proof {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: var(--r-xl);
    padding: 16px;
    gap: 10px 14px;
  }
  .trust-review-action { justify-content: flex-start; margin-bottom: 34px; }
  .tt-wrap {
    margin-inline: -14px;
    mask-image: linear-gradient(90deg, transparent, black 22px, black calc(100% - 22px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 22px, black calc(100% - 22px), transparent);
  }
  .tc {
    width: min(310px, calc(100vw - 56px));
    min-height: 236px;
    padding: 22px;
  }
  .trust-faq-panel {
    padding: 22px 18px;
    border-radius: var(--r-lg);
  }
  .trust-faq-head h3 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .faq-item summary {
    min-height: 58px;
    padding: 16px 0;
    font-size: 0.98rem;
  }
  .faq-body { padding: 0 0 18px; }
  .trust-final-cta { flex-direction: column; align-items: stretch; }
  .footer-v2 { padding-top: 64px; }
  .footer-cta-panel {
    min-height: 330px;
    padding: 28px 22px;
    border-radius: var(--r-lg);
  }
  .footer-cta-panel::before { inset: 12px; border-radius: calc(var(--r-lg) - 8px); }
  .footer-logo { width: 96px; margin-bottom: 20px; }
  .footer-v2 h2 { font-size: clamp(2.35rem, 12vw, 3.35rem); }
  .footer-cta-copy p { font-size: 0.98rem; }
  .footer-grid { margin-top: 36px; }
  .footer-block h3 { margin-bottom: 12px; }
  .footer-block a,
  .footer-address { min-height: 44px; }
  .footer-hours div { padding: 12px 0; }
  .footer-bottom a { width: 100%; justify-content: center; }
  .co-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; scroll-behavior: auto !important; }
}

/* ── Estado de stock en las tarjetas de producto ── */
.pc-stock {
  display: inline-block;
  font-family: var(--ff-b);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  margin: 4px 0;
}
.pc-stock-low { color: var(--color-warning); background: oklch(from var(--color-warning) l c h / 0.12); }
.pc-stock-out { color: var(--color-error); background: oklch(from var(--color-error) l c h / 0.1); }
.pc-add-btn[disabled],
.combo-add[disabled] { opacity: .5; cursor: not-allowed; }
.co-opt { font-style: italic; color: var(--ink-m); font-weight: 400; }
.co-form textarea {
  width: 100%;
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--r-md);
  background: var(--color-bg-surface);
  resize: vertical;
}
