/* ==========================================================================
   Creaciones Cats — hoja de estilos principal
   Paleta cálida crema + rosa, tipografía editorial, componentes redondeados.
   ========================================================================== */

/* ------------------------------------------------------ tipografía local
   Las tres fuentes van empaquetadas en assets/fonts/ (no dependen de Google
   Fonts ni de ningún CDN). Fraunces y Manrope son variables: un solo
   archivo cubre todo el rango de peso/óptica que usa esta hoja de estilos. */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-variable.woff2") format("woff2-variations"),
       url("../fonts/fraunces-variable.woff2") format("woff2");
  font-weight: 300 900;
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grand Hotel";
  src: url("../fonts/grand-hotel-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2-variations"),
       url("../fonts/manrope-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream:        #fff7f2;
  --cream-2:      #fdeee5;
  --cream-3:      #fae2d6;
  --blush:        #fde5ee;
  --blush-2:      #fbd4e3;
  --white:        #ffffff;

  --ink:          #422019;
  --ink-2:        #6d453a;
  --ink-3:        #96705f;

  --pink:         #e0447e;
  --pink-hot:     #f0568e;
  --pink-deep:    #bf2a62;
  --pink-soft:    #ffd9e7;
  --gold:         #f0b04a;
  --leaf:         #7bb98f;

  --brown-deep:   #3b241f;
  --brown-deep-2: #2e1a16;

  --shadow-sm: 0 2px 8px rgba(102, 51, 40, .06);
  --shadow-md: 0 12px 30px -12px rgba(102, 51, 40, .22);
  --shadow-lg: 0 34px 70px -28px rgba(102, 51, 40, .34);
  --shadow-pink: 0 14px 30px -10px rgba(224, 68, 126, .48);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  --shell: 1240px;
  --gutter: clamp(18px, 4vw, 48px);

  --font-display: "Fraunces", "DM Serif Display", Georgia, serif;
  --font-script: "Grand Hotel", "Caveat", cursive;
  --font-ui: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

/* <picture> es solo un contenedor para ofrecer AVIF con WebP de respaldo.
   display:contents lo saca de la caja de diseño para que el <img> de
   adentro se comporte exactamente igual que si no existiera el envoltorio
   (mismo tamaño, mismas reglas de "img" en flex/grid/position). */
picture { display: contents; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(15px, .42vw + 14px, 17px);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}

::selection { background: var(--pink-soft); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 999;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 12px; }

.shell {
  width: min(100% - var(--gutter) * 2, var(--shell));
  margin-inline: auto;
}

.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;
}

/* ---------------------------------------------------------- text helpers */
.script { font-family: var(--font-script); font-weight: 400; color: var(--pink); letter-spacing: .01em; }
.eyebrow {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pink);
}

/* --------------------------------------------------------------- splash */
.splash {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  gap: 20px;
  background: radial-gradient(120% 90% at 50% 20%, #fffaf6 0%, var(--cream-2) 60%, var(--cream-3) 100%);
  animation: splashSafety .01s 4.5s forwards;
}
.splash img { width: clamp(220px, 34vw, 320px); animation: splashPulse 2.6s var(--ease-soft) infinite; }
.splash-bar {
  width: 148px; height: 3px; border-radius: 999px;
  background: rgba(224, 68, 126, .18);
  overflow: hidden;
}
.splash-bar span {
  display: block; height: 100%; width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  animation: splashSlide 1.25s var(--ease-soft) infinite;
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s var(--ease-out), visibility .7s;
  visibility: hidden;
}
@keyframes splashPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.045); } }
@keyframes splashSlide { 0% { transform: translateX(-110%); } 100% { transform: translateX(360%); } }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ------------------------------------------------------- scroll progress */
.progress {
  position: fixed; inset: 0 auto auto 0;
  height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold), var(--pink-hot), var(--pink));
  z-index: 1200;
}

/* --------------------------------------------------------------- header */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 250, 246, .82);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  transition: box-shadow .35s var(--ease-out), background .35s var(--ease-out);
}
.header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -13px;
  height: 14px;
  background: rgba(255, 250, 246, .92);
  -webkit-mask-image: radial-gradient(circle 9px at 12px 0, transparent 98%, #000 100%);
  mask-image: radial-gradient(circle 9px at 12px 0, transparent 98%, #000 100%);
  -webkit-mask-size: 24px 14px;
  mask-size: 24px 14px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  pointer-events: none;
}
.header.is-stuck { box-shadow: 0 12px 34px -22px rgba(102, 51, 40, .5); background: rgba(255, 250, 246, .95); }

.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  padding: 9px 0;
}

.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: clamp(112px, 10vw, 148px); height: auto; display: block; transition: transform .5s var(--ease-out); }
.brand:hover img { transform: rotate(-1.5deg) scale(1.03); }

.nav { display: flex; align-items: center; gap: clamp(10px, 1.5vw, 26px); margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(8px, 1.4vw, 24px); }
.nav-links a {
  position: relative;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 6px 2px;
  transition: color .25s var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; border-radius: 2px;
  background: var(--pink);
  transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover, .nav-links a.is-current { color: var(--pink); }
.nav-links a:hover::after, .nav-links a.is-current::after { transform: scaleX(1); transform-origin: 0 50%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .005em;
  padding: 13px 26px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease-out);
  will-change: transform;
}
.btn svg { width: 19px; height: 19px; flex: 0 0 auto; }
.btn-primary {
  background: linear-gradient(135deg, var(--pink-hot), var(--pink) 55%, var(--pink-deep));
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -12px rgba(224, 68, 126, .58); }
.btn-primary:active { transform: translateY(-1px); }
.btn-lg { padding: 17px 34px; font-size: 1.03rem; }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(224, 68, 126, .16);
}
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }

.nav-cta { padding: 12px 22px; font-size: .92rem; }

.bag {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  flex: 0 0 auto;
  transition: transform .3s var(--ease-out);
}
.bag:hover { transform: translateY(-2px); }
.bag svg { width: 20px; height: 20px; }
.bag span {
  position: absolute; top: -3px; right: -3px;
  min-width: 19px; height: 19px;
  display: grid; place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
}

.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  place-items: center;
  color: var(--ink);
}
.burger svg { width: 22px; height: 22px; }
.burger span { display: grid; place-items: center; }
.burger span[hidden] { display: none; }

/* -------------------------------------------------------- menú móvil (panel)
   A propósito vive fuera de <header>: si quedara anidado dentro de un
   ancestro con backdrop-filter/transform, el navegador confinaría este
   position:fixed dentro de la caja de ese ancestro en vez de la pantalla
   completa (es justo lo que le pasaba a la versión anterior). */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  padding: 18px clamp(18px, 6vw, 34px) clamp(28px, 6vh, 44px);
  background: #fffaf6;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease-out), transform .4s var(--ease-out), visibility .4s;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .mobile-menu {
    background: rgba(255, 250, 246, .98);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
  }
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
}
.mobile-menu-brand img { width: 132px; height: auto; display: block; }
.mobile-menu-close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.mobile-menu-close svg { width: 19px; height: 19px; }
.mobile-menu-links {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3.6vh, 24px);
}
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), color .25s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu-links a {
  opacity: 1;
  transform: none;
}
.mobile-menu-links a:nth-child(1) { transition-delay: .04s; }
.mobile-menu-links a:nth-child(2) { transition-delay: .08s; }
.mobile-menu-links a:nth-child(3) { transition-delay: .12s; }
.mobile-menu-links a:nth-child(4) { transition-delay: .16s; }
.mobile-menu-links a:nth-child(5) { transition-delay: .2s; }
.mobile-menu-links a:nth-child(6) { transition-delay: .24s; }
.mobile-menu-links a:hover, .mobile-menu-links a.is-current { color: var(--pink); }
.mobile-menu-cta { flex: 0 0 auto; margin-top: 6px; }

/* ----------------------------------------------------------------- hero */
.hero {
  position: relative;
  padding: clamp(28px, 5vw, 62px) 0 clamp(40px, 6vw, 78px);
  background:
    radial-gradient(62% 55% at 84% 16%, rgba(255, 231, 210, .8) 0%, rgba(255, 231, 210, 0) 64%),
    radial-gradient(48% 46% at 6% 4%, rgba(253, 226, 238, .55) 0%, rgba(253, 226, 238, 0) 62%),
    linear-gradient(180deg, #fffcf9 0%, #fff4ec 55%, var(--cream) 100%);
  overflow: hidden;
}
.hero-bokeh {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .6;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 20px 9px 10px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: .86rem;
  font-weight: 700;
  color: var(--ink);
}
.pill-badge i {
  display: grid; place-items: center;
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--pink);
}
.pill-badge i svg { width: 15px; height: 15px; }

.hero h1 {
  margin: 22px 0 0;
  font-size: clamp(2.6rem, 5.4vw, 4.15rem);
  font-weight: 900;
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 100;
}
.hero h1 .script { font-size: 1.12em; line-height: .9; }
.hero h1 .heart { color: var(--pink); font-family: var(--font-ui); font-size: .48em; vertical-align: .35em; }

.hero-lead {
  margin: 20px 0 0;
  max-width: 27ch;
  font-size: clamp(1.02rem, .35vw + .95rem, 1.16rem);
  color: var(--ink-2);
}
.hero-lead .heart { color: var(--pink); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.chip svg { width: 16px; height: 16px; color: var(--pink); }

.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-cta .btn-primary .arrow { transition: transform .4s var(--ease-out); }
.hero-cta .btn-primary:hover .arrow { transform: translateX(5px); }

.hero-trust {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .86rem;
  color: var(--ink-3);
}
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }

/* ------------------------------------------------------------ 3D stage */
.stage-wrap { position: relative; }
.stage {
  position: relative;
  aspect-ratio: 1 / 1.02;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(58% 48% at 50% 22%, rgba(255, 246, 232, .96) 0%, rgba(255, 233, 214, 0) 70%),
    linear-gradient(170deg, #fff4ea 0%, #fbe3d4 52%, #f6d7c8 100%);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.stage::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 108%, rgba(120, 66, 45, .16), transparent 62%);
  pointer-events: none;
}
.stage canvas { width: 100% !important; height: 100% !important; display: block; touch-action: pan-y; }

.stage-fallback {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transition: opacity .9s var(--ease-out);
}
.stage-fallback img {
  width: 68%;
  border-radius: 10px;
  box-shadow: 0 30px 60px -24px rgba(80, 40, 28, .55);
  transform: rotate(-1.4deg);
}
.stage.is-live .stage-fallback { opacity: 0; pointer-events: none; }

.stage-hint {
  position: absolute;
  left: 50%; bottom: 62px;
  white-space: nowrap;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(6px);
  font-size: .74rem;
  font-weight: 700;
  color: var(--ink-2);
  opacity: 0;
  transition: opacity .6s var(--ease-out);
  pointer-events: none;
}
.stage.is-live .stage-hint { opacity: 1; }
@media (hover: none) { .stage-hint { display: none; } }
.stage-hint svg { width: 14px; height: 14px; color: var(--pink); }

.switcher {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -28px;
  position: relative;
  z-index: 3;
}
.switcher button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
}
.switcher button svg { width: 16px; height: 16px; color: var(--pink); transition: color .3s var(--ease-out); }
.switcher button:hover { transform: translateY(-3px); }
.switcher button.is-active {
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.switcher button.is-active svg { color: #fff; }

/* --------------------------------------------------------------- ribbon */
.ribbon-band { background: var(--cream); padding: 0 0 clamp(24px, 4vw, 40px); }
.ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.ribbon > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 16px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}
.ribbon > div + div { border-left: 1px solid var(--cream-3); }
.ribbon svg { width: 24px; height: 24px; color: var(--pink); flex: 0 0 auto; }

/* -------------------------------------------------------------- marquee */
.marquee {
  --speed: 34s;
  overflow: hidden;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink) 45%, var(--pink-hot));
  color: #fff;
  padding: 13px 0;
  transform: rotate(-.55deg) scale(1.02);
  margin: clamp(10px, 3vw, 26px) 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee var(--speed) linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span i { font-style: normal; opacity: .72; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------- sections */
.section { padding: clamp(52px, 7vw, 96px) 0; }
.section-cream { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }

.heading { text-align: center; max-width: 620px; margin: 0 auto clamp(32px, 4vw, 52px); }
.heading .paw { display: inline-grid; place-items: center; color: var(--pink); margin-bottom: 12px; }
.heading .paw svg { width: 30px; height: 30px; }
.heading h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  position: relative;
  display: inline-block;
}
.heading h2 .spark { color: var(--pink); font-family: var(--font-ui); font-size: .5em; vertical-align: .7em; }
.heading p { margin: 12px 0 0; color: var(--ink-3); }

/* -------------------------------------------------------------- catalog */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-lg); }
.card-media {
  position: relative;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  margin: 12px 12px 0;
  border-radius: var(--r-md);
  background: var(--cream-2);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.card:hover .card-media img { transform: scale(1.06); }
.card-tag {
  position: absolute;
  top: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  box-shadow: var(--shadow-pink);
}
.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 {
  font-size: 1.42rem;
  text-align: center;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.card-body h3 .flourish { color: var(--pink); font-family: var(--font-ui); font-size: .62em; }
.card-list { margin: 16px 0 22px; display: grid; gap: 10px; }
.card-list li { display: flex; gap: 10px; font-size: .9rem; line-height: 1.5; }
.card-list svg { width: 16px; height: 16px; color: var(--pink); flex: 0 0 auto; margin-top: 4px; }
.card-body .btn { margin-top: auto; }

/* ------------------------------------------------------------- how / cta */
.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
  align-items: stretch;
}
.panel {
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.4vw, 42px);
  background: linear-gradient(160deg, #fff4f8 0%, var(--blush) 100%);
  box-shadow: var(--shadow-sm);
}
.panel > .heading { margin-bottom: clamp(24px, 3vw, 36px); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { text-align: center; }
.step-icon {
  width: 62px; height: 62px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--pink);
  position: relative;
  transition: transform .45s var(--ease-out);
}
.step:hover .step-icon { transform: translateY(-5px) rotate(-5deg); }
.step-icon svg { width: 26px; height: 26px; }
.step-icon b {
  position: absolute;
  top: -6px; right: -6px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .74rem;
  font-weight: 800;
}
.step strong { display: block; color: var(--ink); font-size: .96rem; }
.step p { margin: 6px 0 0; font-size: .84rem; color: var(--ink-3); }

.delivery {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  justify-content: center;
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 40px);
  background: linear-gradient(165deg, #ffe9f1 0%, var(--blush-2) 100%);
  box-shadow: var(--shadow-sm);
}
.delivery h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-weight: 800; }
.delivery p { margin: 0; font-size: .93rem; }
.delivery-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  color: #fff;
  font-weight: 800;
  font-size: .84rem;
  letter-spacing: .09em;
  box-shadow: var(--shadow-pink);
}
.delivery-ribbon svg { width: 18px; height: 18px; }
.delivery small { font-weight: 700; color: var(--ink); font-size: .88rem; }

/* ---------------------------------------------------------------- video */
.film {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  min-height: clamp(340px, 46vw, 520px);
  display: grid;
  align-items: end;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.film video, .film > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.film::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(52, 30, 25, .34) 0%, rgba(48, 28, 23, .8) 58%, rgba(38, 21, 17, .95) 100%),
    linear-gradient(100deg, rgba(38, 21, 17, .82) 0%, rgba(38, 21, 17, .22) 62%, transparent 100%),
    radial-gradient(70% 60% at 20% 30%, rgba(224, 68, 126, .26), transparent 70%);
}
.film-body { padding: clamp(26px, 4vw, 52px); color: #fff8f4; max-width: 640px; }
.film-body h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.9rem); font-weight: 800; }
.film-body h2 .script { color: var(--pink-soft); }
.film-body p { margin: 14px 0 0; color: rgba(255, 244, 238, .84); }
.film-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 46px);
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.film-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.film-stats div span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 244, 238, .68); font-weight: 700; }
.film-sound {
  position: absolute;
  top: 18px; right: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.film-sound i { width: 7px; height: 7px; border-radius: 50%; background: var(--pink-hot); animation: livePulse 2s var(--ease-soft) infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }

/* -------------------------------------------------------------- gallery */
.gallery-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery figure {
  position: relative;
  flex: 0 0 clamp(180px, 22vw, 232px);
  margin: 0;
  scroll-snap-align: start;
  aspect-ratio: 3 / 3.4;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.gallery figure:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-lg); }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; }
.gallery figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(46, 26, 22, .78));
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }

.review {
  flex: 0 0 clamp(210px, 24vw, 250px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px 22px;
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
  margin: 0;
}
.review .quote { font-family: var(--font-display); font-size: 2.6rem; line-height: .5; color: var(--pink-soft); }
.review blockquote { margin: 0; font-size: .9rem; color: var(--ink-2); font-weight: 600; }
.review .stars { color: var(--gold); letter-spacing: 2px; }
.review .who {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  font-size: .82rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 2px;
}
.review .who .dot { color: var(--pink); font-weight: 700; }

.arrow-btn {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  transition: transform .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
}
.arrow-btn:hover { background: var(--pink); color: #fff; transform: scale(1.08); }
.arrow-btn svg { width: 20px; height: 20px; }

/* ------------------------------------------------------------- lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 5vw;
  background: rgba(40, 22, 18, .82);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease-out), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 620px);
  max-height: 86vh;
  border-radius: var(--r-md);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .7);
  transform: scale(.94);
  transition: transform .5s var(--ease-out);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
}
.lightbox-close svg { width: 22px; height: 22px; }

/* ------------------------------------------------------------- contacto */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 24px;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card i { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--blush); color: var(--pink); }
.contact-card i svg { width: 21px; height: 21px; }
.contact-card strong { color: var(--ink); font-size: 1.02rem; }
.contact-card span { font-size: .88rem; color: var(--ink-3); word-break: break-word; }

/* --------------------------------------------------------------- footer */
.footer {
  position: relative;
  margin-top: clamp(24px, 5vw, 58px);
  padding: clamp(54px, 6vw, 72px) 0 clamp(48px, 5vw, 64px);
  overflow: hidden;
  background: linear-gradient(115deg, #3b211d 0%, #321c19 100%);
  color: rgba(255, 240, 233, .78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .95fr 1.08fr .9fr;
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
}
.footer-brand { padding-top: 2px; }
.footer h4 {
  margin: 2px 0 18px;
  color: #fff8f3;
  font-family: var(--font-display);
  font-size: 1.03rem;
  line-height: 1.1;
  font-weight: 700;
}
.footer-heading-caps {
  font-size: .94rem !important;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-brand img { display: block; width: clamp(185px, 16vw, 230px); }
.footer-brand p { margin: 19px 0 0; font-size: .9rem; line-height: 1.4; }
.footer-brand p .heart { color: var(--pink-hot); }
.footer-about { max-width: 340px; margin: 19px 0 0 !important; color: rgba(255, 240, 233, .78); font-size: .9rem; line-height: 1.5; }
.footer-about .heart { color: var(--pink-hot); }
.socials { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 19px; }
.socials a {
  width: 43px; height: 43px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: #fff8f3;
  transition: transform .35s var(--ease-out), background .35s var(--ease-out);
}
.socials a:hover { background: var(--pink); transform: translateY(-4px); }
.socials svg { width: 19px; height: 19px; }
.footer-list { display: grid; gap: 14px; font-size: .9rem; }
.footer-list li { display: flex; align-items: center; gap: 10px; }
.footer-list svg { width: 16px; height: 16px; color: var(--pink-hot); flex: 0 0 auto; }
.footer-list a,
.footer-list span { color: rgba(255, 240, 233, .75); line-height: 1.35; }
.footer-list a:hover { color: #fff; }
.footer-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 240, 233, .78);
  font-size: .9rem;
}
.footer-handle svg { width: 17px; height: 17px; color: var(--pink-hot); }
.footer-handle:hover { color: #fff; }
.footer-bottom { display: none; }

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-heading-caps { white-space: normal; }
}

/* ------------------------------------------------------------- floating */
.floating {
  position: fixed;
  right: clamp(14px, 2.4vw, 26px);
  bottom: clamp(14px, 2.4vw, 26px);
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  box-shadow: 0 16px 34px -12px rgba(60, 30, 22, .5);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), opacity .35s var(--ease-out);
}
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab svg { width: 27px; height: 27px; }
.fab-wa { position: relative; background: #25d366; color: #fff; }
.fab-wa::after {
  content: "";
  position: absolute;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .55);
  animation: fabRing 2.6s var(--ease-soft) infinite;
  pointer-events: none;
}
@keyframes fabRing { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(1.7); opacity: 0; } }
.fab-top { background: var(--white); color: var(--ink); opacity: 0; pointer-events: none; }
.fab-top.is-visible { opacity: 1; pointer-events: auto; }

/* --------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }

/* --------------------------------------------------------------- mobile */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .stage-wrap { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero-copy { text-align: left; }
  .hero-lead { max-width: 40ch; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ribbon { grid-template-columns: 1fr 1fr; }
  .ribbon > div:nth-child(3) { border-left: 0; }
  .ribbon > div:nth-child(n+3) { border-top: 1px solid var(--cream-3); }
}

@media (max-width: 860px) {
  .nav-links, .nav .btn { display: none; }
  .burger { display: grid; }
  .nav { margin-left: auto; gap: 10px; }

  .steps { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .film { align-items: end; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(2.15rem, 9.4vw, 2.8rem); }
  .ribbon { grid-template-columns: 1fr; }
  .ribbon > div + div { border-left: 0; border-top: 1px solid var(--cream-3); }
  .switcher button { padding: 10px 15px; font-size: .78rem; }
  .switcher { margin-top: -16px; }
  .hero-cta .btn-lg { padding: 15px 20px; font-size: .92rem; gap: 8px; }
  .hero-cta .btn-lg svg { width: 17px; height: 17px; }
  .film-stats { gap: 18px 26px; }
  .fab { width: 54px; height: 54px; }
}

/* Sólo se desactiva lo verdaderamente intrusivo. Las microinteracciones
   (hover, fades, tilt) se mantienen: Windows activa reduced-motion por defecto
   en muchas instalaciones y la web quedaría plana. */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .fab-wa::after { animation: none; }
  .splash img { animation: none; }
  .hero-bokeh { display: none; }
}

/* ============================================================ catálogo v2 */
[hidden] { display: none !important; }
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(224, 68, 126, .16);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .8fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-chip {
  min-height: 40px;
  padding: 8px 15px;
  border: 1px solid rgba(224, 68, 126, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink-2);
  font-size: .8rem;
  font-weight: 800;
  transition: color .25s var(--ease-out), background .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.filter-chip:hover { transform: translateY(-2px); color: var(--pink); }
.filter-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px -14px rgba(66, 32, 25, .7);
}
.catalog-search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.catalog-search .search-icon {
  position: absolute;
  left: 14px;
  color: var(--pink);
  pointer-events: none;
}
.catalog-search .search-icon svg { width: 18px; height: 18px; }
.catalog-search input,
.catalog-sort select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(109, 69, 58, .14);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: .82rem;
  outline: 0;
  box-shadow: var(--shadow-sm);
}
.catalog-search input { padding: 9px 14px 9px 42px; }
.catalog-search input:focus,
.catalog-sort select:focus,
.variant-field select:focus,
.complaint-form input:focus,
.complaint-form select:focus,
.complaint-form textarea:focus,
.cart-note textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(224, 68, 126, .12); }
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-3);
  font-size: .75rem;
  font-weight: 800;
  white-space: nowrap;
}
.catalog-sort select {
  min-width: 170px;
  padding: 9px 30px 9px 12px;
  border-radius: var(--r-sm);
  cursor: pointer;
}
.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 2px 20px;
  color: var(--ink-3);
  font-size: .78rem;
  font-weight: 700;
}
.catalog-quote-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink-deep);
  text-align: right;
}
.catalog-quote-note svg { width: 15px; height: 15px; }
.product-grid { align-items: stretch; }
.product-card .card-media { margin: 12px 12px 0; }
.product-code {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(46, 26, 22, .42);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.product-title-row h3 {
  justify-content: flex-start;
  text-align: left;
  font-size: clamp(1.22rem, 1.5vw, 1.42rem);
}
.product-category {
  display: block;
  margin-top: 5px;
  color: var(--pink);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-price {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--pink-deep);
  font-family: var(--font-display);
  font-size: .95rem;
  line-height: 1;
  white-space: nowrap;
}
.product-lead {
  margin: 14px 0 0;
  color: var(--ink-3);
  font-size: .86rem;
  line-height: 1.55;
}
.product-card .card-list { margin-bottom: 18px; }
.product-card .card-list li { font-size: .84rem; }
.check-mark {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--pink);
  font-size: .72rem;
  font-weight: 900;
}
.variant-field {
  display: grid;
  gap: 6px;
  margin-top: auto;
  color: var(--ink-3);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.variant-field select {
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(109, 69, 58, .14);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-size: .82rem;
  outline: 0;
  cursor: pointer;
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}
.product-actions .btn {
  flex: 1 1 auto;
  margin-top: 0;
  min-height: 44px;
  padding: 11px 14px;
  font-size: .82rem;
}
.product-actions .btn svg { width: 17px; height: 17px; }
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--pink-deep);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}
.text-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease-out); }
.text-link:hover svg { transform: translateX(4px); }
.catalog-empty {
  padding: 46px 24px;
  border: 1px dashed rgba(224, 68, 126, .26);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .62);
  text-align: center;
}
.catalog-empty .paw { display: grid; place-items: center; color: var(--pink); }
.catalog-empty .paw svg { width: 34px; height: 34px; }
.catalog-empty strong { display: block; margin-top: 12px; color: var(--ink); font-family: var(--font-display); font-size: 1.3rem; }
.catalog-empty p { margin: 7px 0 18px; color: var(--ink-3); font-size: .9rem; }
.noscript-note {
  margin: 22px 0 0;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  background: var(--cream-2);
  color: var(--ink-2);
  font-size: .84rem;
  text-align: center;
}
.noscript-note a { color: var(--pink-deep); font-weight: 800; text-decoration: underline; }

/* ============================================================= carrito */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1800;
  background: rgba(38, 20, 17, .56);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: fadeIn .3s var(--ease-out);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cart-drawer {
  position: fixed;
  z-index: 1850;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 470px);
  height: 100vh;
  height: 100dvh;
  padding: 28px clamp(20px, 4vw, 32px);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--white);
  border-left: 1px solid rgba(66, 32, 25, .08);
  box-shadow: -30px 0 80px -24px rgba(46, 26, 22, .58);
  visibility: hidden;
  pointer-events: none;
  transform: translateX(105%);
  transition: transform .5s var(--ease-out), visibility .5s;
}
.cart-drawer.is-open { transform: none; visibility: visible; pointer-events: auto; }
/* El eyebrow rosa claro (--pink) pierde legibilidad sobre fondos claros
   (contraste ~3.7:1, por debajo del mínimo recomendado). Aquí, donde va
   sobre blanco puro, se usa el tono más oscuro (--pink-deep, ~5.6:1). */
.cart-head .eyebrow { color: var(--pink-deep); }
.cart-help { color: var(--ink-2); }
.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(109, 69, 58, .12);
  flex: 0 0 auto;
}
.cart-head h2 { margin-top: 3px; font-size: clamp(1.8rem, 5vw, 2.3rem); }
.icon-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
}
.icon-btn:hover { transform: rotate(5deg) scale(1.05); background: var(--pink); color: #fff; }
.icon-btn svg { width: 19px; height: 19px; }
.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  flex: 0 0 auto;
  min-height: 0;
  max-height: min(42vh, 320px);
  padding: 20px 2px;
  overflow-y: auto;
}
.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.cart-item img {
  width: 72px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
}
.cart-item-main { min-width: 0; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; }
.cart-item-heading,
.cart-item-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.cart-item-heading strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: .98rem; line-height: 1.15; }
.cart-item-heading small { display: block; margin-top: 4px; color: var(--ink-3); font-size: .72rem; line-height: 1.3; }
.cart-remove {
  padding: 2px 0;
  color: var(--pink-deep);
  font-size: .68rem;
  font-weight: 800;
  white-space: nowrap;
}
.cart-remove:hover { text-decoration: underline; }
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  padding: 3px;
  border-radius: 999px;
  background: var(--cream-2);
}
.qty-control button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--ink);
}
.qty-control button:hover { background: var(--pink); color: #fff; }
.qty-control button svg { width: 14px; height: 14px; }
.qty-control b { min-width: 20px; color: var(--ink); font-size: .78rem; text-align: center; }
.cart-item-price { align-self: center; color: var(--pink-deep); font-family: var(--font-display); font-size: .92rem; font-weight: 800; }
.cart-empty {
  display: grid;
  place-items: center;
  align-content: center;
  flex: 1 1 auto;
  min-height: 220px;
  padding: 24px;
  text-align: center;
}
.cart-empty .paw { color: var(--pink); }
.cart-empty .paw svg { width: 42px; height: 42px; }
.cart-empty strong { margin-top: 12px; color: var(--ink); font-family: var(--font-display); font-size: 1.2rem; }
.cart-empty p { margin: 6px 0 18px; color: var(--ink-3); font-size: .84rem; }
.cart-foot { display: grid; gap: 13px; padding-top: 16px; border-top: 1px solid rgba(109, 69, 58, .12); flex: 0 0 auto; }
.cart-discount {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: var(--blush);
  color: var(--pink-deep);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.4;
}
.cart-discount svg { width: 16px; height: 16px; flex: 0 0 auto; }
.cart-note { display: grid; gap: 6px; color: var(--ink-2); font-size: .76rem; font-weight: 800; }
.cart-note textarea {
  width: 100%;
  min-height: 70px;
  resize: vertical;
  padding: 10px 12px;
  border: 1px solid rgba(109, 69, 58, .14);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: .8rem;
  outline: 0;
}
.cart-total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; color: var(--ink-3); font-size: .8rem; font-weight: 800; }
.cart-total strong { color: var(--ink); font-family: var(--font-display); font-size: 1.35rem; }
.cart-foot .btn { min-height: 48px; }
.cart-help { color: var(--ink-3); font-size: .68rem; line-height: 1.4; text-align: center; }
.is-disabled,
.is-disabled:hover { opacity: .45 !important; cursor: not-allowed !important; transform: none !important; }

/* ========================================================== blog + FAQ */
.reviews-section { background: #fffaf6; }
.reviews-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  width: max-content;
  gap: 14px;
  will-change: transform;
}
.reviews-grid {
  display: flex;
  flex: 0 0 auto;
  width: max-content;
  gap: 14px;
}
.review-card {
  flex: 0 0 clamp(190px, 17.3vw, 250px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 218px;
  padding: 24px 20px;
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.review-card .quote { font-family: var(--font-display); font-size: 2.7rem; line-height: .45; color: var(--pink-soft); }
.review-card blockquote { margin: 0; color: var(--ink-2); font-size: .86rem; font-weight: 600; line-height: 1.55; }
.review-card .stars { margin-top: auto; color: var(--gold); letter-spacing: 2px; }
.review-card .who { color: var(--ink); font-size: .78rem; font-weight: 800; }
.review-card .dot { color: var(--pink); }
.reviews-viewport.is-static { overflow-x: auto; scrollbar-width: thin; }
.reviews-viewport.is-static .reviews-track { transform: none !important; }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: start;
}
.faq-grid > .heading { margin: 0; text-align: left; }
.faq-grid > .heading .paw { display: grid; justify-content: start; }
.faq-grid > .heading .btn { margin-top: 22px; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border-bottom: 1px solid rgba(109, 69, 58, .15);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 62px;
  padding: 14px 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 700;
  text-align: left;
}
.faq-question b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
}
.faq-question[aria-expanded="true"] b { transform: rotate(45deg); background: var(--pink); color: #fff; }
.faq-answer { padding: 0 48px 16px 0; }
.faq-answer p { margin: 0; color: var(--ink-3); font-size: .88rem; line-height: 1.65; }
.blog-section { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream-2);
  text-align: left;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--pink-deep);
  font-size: .68rem;
  font-weight: 800;
}
.blog-body { display: flex; flex-direction: column; flex: 1; padding: 20px 20px 22px; }
.blog-body small { color: var(--pink); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.blog-body h3 { margin-top: 8px; font-size: 1.28rem; }
.blog-body p { margin: 10px 0 18px; color: var(--ink-3); font-size: .84rem; line-height: 1.55; }
.blog-body .text-link { justify-content: flex-start; margin-top: auto; }
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(46, 26, 22, .52);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s var(--ease-out), visibility .35s;
}
.article-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.article-modal-card {
  position: relative;
  width: min(100%, 700px);
  max-height: min(86vh, 760px);
  overflow-y: auto;
  padding: clamp(26px, 5vw, 52px);
  border-radius: var(--r-xl);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(.98);
  transition: transform .45s var(--ease-out);
}
.article-modal.is-open .article-modal-card { transform: none; }
.article-close { position: absolute; top: 18px; right: 18px; }
.article-modal-card h2 { max-width: 560px; margin-top: 10px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.article-date { margin: 10px 0 0; color: var(--ink-3); font-size: .78rem; font-weight: 700; }
.article-content { display: grid; gap: 14px; margin: 24px 0; color: var(--ink-2); font-size: .93rem; line-height: 1.75; }
.article-content p { margin: 0; }

/* ============================================== libro de reclamaciones */
.complaints-grid {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: start;
}
.complaints-grid > .heading { margin: 0; text-align: left; }
.complaints-grid > .heading .paw { display: grid; justify-content: start; }
.complaints-privacy { display: block; margin-top: 22px; color: var(--ink-3); font-size: .76rem; line-height: 1.55; }
.complaint-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--r-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.complaint-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-2);
  font-size: .76rem;
  font-weight: 800;
}
.complaint-form input,
.complaint-form select,
.complaint-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(109, 69, 58, .14);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-size: .84rem;
  outline: 0;
}
.complaint-form textarea { resize: vertical; min-height: 88px; }
.complaint-form .btn { min-height: 48px; margin-top: 2px; }
.form-help { color: var(--ink-3); font-size: .72rem; text-align: center; }
.form-help a { color: var(--pink-deep); font-weight: 800; text-decoration: underline; }
.form-notice {
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.45;
}
.form-notice.success { background: #e4f6e9; color: #247447; }
.form-notice.error { background: var(--blush); color: var(--pink-deep); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ================================================ vídeo vertical scroll */
.video-experience {
  position: fixed;
  inset: 0;
  z-index: 2400;
  background: #211512;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s var(--ease-out), visibility .45s;
}
.video-experience.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.video-scroll-track {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .42) transparent;
}
.video-scroll-track::after { content: ""; display: block; height: 300vh; }
.video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}
.video-sticky video {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -3;
  width: min(46vw, 480px);
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  background: #32201b;
}
.video-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(33, 21, 18, .93) 0%, rgba(33, 21, 18, .35) 34%, rgba(33, 21, 18, .15) 66%, rgba(33, 21, 18, .82) 100%),
    linear-gradient(180deg, rgba(33, 21, 18, .5), transparent 35%, rgba(33, 21, 18, .68));
}
.video-experience-copy {
  position: absolute;
  left: max(24px, calc(50% - 560px));
  bottom: clamp(70px, 13vh, 130px);
  width: min(34vw, 400px);
  color: #fff8f4;
}
.video-experience-copy .eyebrow { color: var(--pink-soft); }
.video-experience-copy h2 { margin-top: 12px; color: #fff; font-size: clamp(2.2rem, 5vw, 4.5rem); }
.video-experience-copy p { max-width: 34ch; margin: 16px 0 0; color: rgba(255, 248, 244, .78); font-size: .95rem; }
.video-step-dots { display: flex; gap: 7px; margin-top: 22px; }
.video-step-dots span { width: 28px; height: 4px; border-radius: 999px; background: rgba(255, 255, 255, .28); transition: background .3s var(--ease-out), width .3s var(--ease-out); }
.video-step-dots span.is-active { width: 52px; background: var(--pink-hot); }
.video-experience-topbar {
  position: absolute;
  top: 22px;
  left: max(24px, calc(50% - 560px));
  right: max(24px, calc(50% - 560px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 248, 244, .8);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.video-experience-topbar > span { display: inline-flex; align-items: center; gap: 7px; }
.video-experience-topbar svg { width: 17px; height: 17px; color: var(--pink-soft); }
.icon-btn.light { background: rgba(255, 255, 255, .12); color: #fff; box-shadow: none; }
.icon-btn.light:hover { background: var(--pink); }
.video-experience-progress {
  position: absolute;
  left: max(24px, calc(50% - 560px));
  right: max(24px, calc(50% - 560px));
  bottom: 30px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
}
.video-experience-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: var(--pink-hot); }
.video-scroll-hint {
  position: absolute;
  right: max(24px, calc(50% - 560px));
  bottom: 48px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 248, 244, .75);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: opacity .3s var(--ease-out);
}
.video-scroll-hint svg { width: 16px; height: 16px; animation: scrollHint 1.6s var(--ease-soft) infinite; }
.video-scroll-hint.is-hidden { opacity: 0; }
@keyframes scrollHint { 0%, 100% { transform: translateY(-3px); } 50% { transform: translateY(4px); } }
.film-open { margin-top: 24px; border-color: rgba(255, 255, 255, .28); color: #fff; background: rgba(255, 255, 255, .12); }
.film-open:hover { color: var(--ink); background: #fff; }

@media (max-width: 1100px) {
  .catalog-toolbar { grid-template-columns: 1fr 1fr; }
  .catalog-filters { grid-column: 1 / -1; }
  .catalog-sort { justify-content: flex-end; }
  .nav-links { gap: 8px; }
  .nav-links a { font-size: .82rem; }
  .nav-cta { padding-inline: 15px; font-size: .78rem; }
}

@media (max-width: 860px) {
  .catalog-toolbar { grid-template-columns: 1fr; }
  .catalog-filters { grid-column: auto; }
  .catalog-sort { justify-content: flex-start; }
  .catalog-search { order: 2; }
  .catalog-sort { order: 3; }
  .catalog-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
  .catalog-quote-note { text-align: left; }
  .faq-grid,
  .complaints-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-grid > .heading,
  .complaints-grid > .heading { text-align: center; }
  .faq-grid > .heading .paw,
  .complaints-grid > .heading .paw { justify-content: center; }
  .faq-grid > .heading .btn { margin-top: 16px; }
  .video-experience-copy { left: 24px; bottom: 80px; width: min(44vw, 360px); }
  .video-experience-topbar,
  .video-experience-progress { left: 24px; right: 24px; }
  .video-scroll-hint { right: 24px; }
}

@media (max-width: 560px) {
  .mobile-menu { overflow-y: auto; }
  .mobile-menu-links { justify-content: flex-start; gap: 9px; padding: 20px 0; }
  .mobile-menu-links a { font-size: 1.3rem; }
  .product-title-row { gap: 8px; }
  .product-title-row h3 { font-size: 1.18rem; }
  .product-price { font-size: .82rem; padding: 6px 8px; }
  .product-actions { align-items: stretch; flex-direction: column; gap: 11px; }
  .product-actions .btn { width: 100%; }
  .product-actions .text-link { justify-content: flex-end; }
  .review-card { flex-basis: min(82vw, 320px); }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .cart-drawer { padding: 22px 18px; }
  .video-sticky video { width: 100%; }
  .video-shade { background: linear-gradient(180deg, rgba(33, 21, 18, .62), rgba(33, 21, 18, .14) 40%, rgba(33, 21, 18, .9) 100%); }
  .video-experience-copy { left: 22px; right: 22px; bottom: 82px; width: auto; }
  .video-experience-copy h2 { font-size: clamp(2rem, 11vw, 3.25rem); }
  .video-experience-copy p { font-size: .86rem; }
  .video-experience-topbar { top: 16px; left: 18px; right: 18px; }
  .video-experience-progress { left: 18px; right: 18px; bottom: 23px; }
  .video-scroll-hint { right: 18px; bottom: 42px; font-size: .65rem; }
  .video-experience-topbar > span { font-size: .62rem; }
}

/* --------------------------- páginas independientes -------------------- */
.standalone-page { background: var(--cream); }
.standalone-page main { min-height: 48vh; }
.standalone-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(94px, 12vw, 155px) 0 clamp(58px, 8vw, 92px);
  color: #fff8f4;
  background:
    radial-gradient(circle at 84% 12%, rgba(240, 86, 142, .32), transparent 24%),
    radial-gradient(circle at 15% 95%, rgba(247, 196, 89, .17), transparent 30%),
    linear-gradient(120deg, #241716, #4b252d 54%, #7b3451);
}
.standalone-hero::after {
  position: absolute;
  right: -8%;
  bottom: -46%;
  width: 42vw;
  height: 42vw;
  min-width: 260px;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(255, 255, 255, .03), 0 0 0 44px rgba(255, 255, 255, .025);
  content: "";
}
.standalone-hero.compact { padding-block: clamp(72px, 9vw, 112px) clamp(48px, 6vw, 70px); }
.standalone-hero-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.standalone-hero h1 { max-width: 760px; margin-top: 12px; color: #fff; font-size: clamp(2.55rem, 7vw, 6.2rem); line-height: .98; }
.standalone-hero h1 .script { color: var(--pink-soft); }
.standalone-hero p { max-width: 600px; margin-top: 22px; color: rgba(255, 248, 244, .76); font-size: clamp(.98rem, 1.6vw, 1.1rem); }
.standalone-seal { flex: 0 0 140px; display: grid; place-items: center; width: 140px; height: 140px; border: 1px solid rgba(255, 255, 255, .34); border-radius: 50%; color: var(--pink-soft); text-align: center; transform: rotate(7deg); }
.standalone-seal span { display: block; font-family: var(--font-display); font-size: 2.4rem; line-height: .8; }
.standalone-seal small { color: rgba(255, 248, 244, .76); font-size: .62rem; font-weight: 800; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.standalone-section { padding-top: clamp(58px, 8vw, 104px); }
.standalone-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start; gap: clamp(38px, 8vw, 120px); }
.standalone-copy { padding-top: 12px; }
.standalone-kicker { display: block; margin-bottom: 12px; color: var(--pink-deep); font-size: .68rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.standalone-copy h2 { max-width: 530px; color: var(--ink); font-size: clamp(2rem, 4vw, 3.65rem); line-height: 1.02; }
.standalone-copy h2 .script { color: var(--pink); }
.standalone-copy > p { max-width: 480px; margin-top: 20px; color: var(--ink-3); line-height: 1.8; }
.standalone-note { display: flex; align-items: flex-start; gap: 14px; max-width: 440px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(87, 49, 43, .12); }
.standalone-note svg { flex: 0 0 24px; width: 24px; height: 24px; color: var(--pink); }
.standalone-note div { display: grid; gap: 4px; }
.standalone-note strong { color: var(--ink); font-size: .88rem; }
.standalone-note span { color: var(--ink-3); font-size: .8rem; line-height: 1.55; }
.standalone-form { display: grid; gap: 15px; margin: 0; padding: clamp(22px, 4vw, 38px); border: 1px solid rgba(87, 49, 43, .12); border-radius: 24px; background: rgba(255, 255, 255, .62); box-shadow: var(--shadow-md); }
.standalone-form .form-row { gap: 15px; }
.standalone-form label { color: var(--ink); }
.standalone-form input, .standalone-form select, .standalone-form textarea { border-color: rgba(87, 49, 43, .16); background: rgba(255, 255, 255, .82); }
.standalone-form .btn { justify-self: start; }
.standalone-form .form-help { text-align: left; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.contact-stack { display: grid; gap: 12px; margin-top: 30px; max-width: 440px; }
.standalone-contact-card { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid rgba(87, 49, 43, .11); border-radius: 16px; color: var(--ink); background: rgba(255, 255, 255, .6); transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s; }
a.standalone-contact-card:hover { border-color: rgba(224, 68, 126, .32); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.standalone-contact-card > svg { flex: 0 0 25px; width: 25px; height: 25px; color: var(--pink); }
.standalone-contact-card span { display: grid; gap: 3px; }
.standalone-contact-card strong { font-size: .88rem; }
.standalone-contact-card small { color: var(--ink-3); font-size: .77rem; }
.legal-section { padding-top: clamp(48px, 7vw, 90px); }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); align-items: start; justify-content: center; gap: clamp(38px, 8vw, 110px); }
.legal-index { position: sticky; top: 106px; display: grid; gap: 11px; padding: 18px 0; }
.legal-index .standalone-kicker { margin-bottom: 5px; }
.legal-index a { color: var(--ink-3); font-size: .8rem; transition: color .2s; }
.legal-index a:hover { color: var(--pink-deep); }
.legal-copy { padding: clamp(24px, 5vw, 50px); border: 1px solid rgba(87, 49, 43, .11); border-radius: 24px; background: rgba(255, 255, 255, .62); }
.legal-updated { margin-bottom: 30px; color: var(--pink-deep); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.legal-copy h2 { margin: 30px 0 10px; color: var(--ink); font-family: var(--font-display); font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
.legal-copy h2:first-of-type { margin-top: 0; }
.legal-copy p { color: var(--ink-3); font-size: .94rem; line-height: 1.85; }
.legal-copy a { color: var(--pink-deep); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 760px) {
  .standalone-hero-inner { align-items: flex-start; }
  .standalone-seal { flex-basis: 92px; width: 92px; height: 92px; }
  .standalone-seal span { font-size: 1.8rem; }
  .standalone-seal small { font-size: .5rem; }
  .standalone-grid, .legal-layout { grid-template-columns: 1fr; gap: 34px; }
  .legal-index { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0; }
  .legal-index .standalone-kicker { grid-column: 1 / -1; }
  .legal-copy { padding: 24px 20px; }
}

@media (max-width: 460px) {
  .standalone-hero-inner { display: block; }
  .standalone-seal { margin-top: 28px; }
  .standalone-form { padding: 20px 16px; border-radius: 18px; }
  .standalone-form .btn { width: 100%; justify-content: center; }
}

/* ============================================ Iconografía SVG (reemplaza glifos)
   Estas clases antes contenían caracteres tipográficos (♥ ★ ✦ ✧ ✓) y se
   dimensionaban con font-size. Ahora contienen SVG y necesitan tamaño propio. */
.heart > svg,
.spark > svg,
.flourish > svg {
  display: block;
  width: 1em;
  height: 1em;
}
.hero h1 .heart { display: inline-block; width: .42em; height: .42em; vertical-align: .18em; }
.hero-lead .heart { display: inline-block; width: .95em; height: .95em; vertical-align: -.1em; }
.heading h2 .spark { display: inline-block; width: .44em; height: .44em; vertical-align: .22em; }
.card-body h3 .flourish { display: inline-block; width: .55em; height: .55em; vertical-align: -.02em; }
.footer-brand p .heart { display: inline-block; width: 1em; height: 1em; vertical-align: -.15em; }

.stars { display: inline-flex; align-items: center; gap: 3px; letter-spacing: 0 !important; }
.stars > svg { display: block; width: 15px; height: 15px; }
.hero-trust .stars > svg { width: 16px; height: 16px; }
.review .stars > svg,
.review-card .stars > svg { width: 15px; height: 15px; }

.check-mark > svg { width: 11px; height: 11px; color: var(--pink-hot, #d33b74); }
.card-tag > svg { width: 13px; height: 13px; flex: 0 0 auto; }

.standalone-seal span > svg { display: block; width: 2.2rem; height: 2.2rem; }
.marquee-track span i { display: inline-flex; align-items: center; vertical-align: -.12em; }
.marquee-track span i > svg { display: block; width: .78em; height: .78em; }

@media (max-width: 720px) {
  .standalone-seal span > svg { width: 1.7rem; height: 1.7rem; }
}

/* =========================================================================
   CHATBOT — Luna, asistente virtual
   ========================================================================= */

/* Los botones flotantes suben para dejar sitio a la burbuja del chat. */
.floating { bottom: clamp(88px, 11vh, 108px); }

.cc-chat {
  position: fixed;
  right: clamp(14px, 2.4vw, 26px);
  bottom: clamp(14px, 2.4vw, 26px);
  z-index: 960;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  font-family: var(--font-ui, system-ui, sans-serif);
}

/* ------------------------------------------------------------- burbuja */
.cc-chat-launcher {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: linear-gradient(140deg, #fff, #ffeef4);
  box-shadow: 0 12px 30px rgba(70, 33, 35, .26);
  cursor: pointer;
  transition: transform .28s cubic-bezier(.2, .9, .3, 1.2), box-shadow .28s;
}
.cc-chat-launcher img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.cc-chat-launcher:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 38px rgba(70, 33, 35, .32); }
.cc-chat-launcher:active { transform: scale(.97); }

/* Latido suave para llamar la atención sin ser molesto. */
.cc-chat-launcher::after {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(223, 76, 130, .45);
  border-radius: 50%;
  content: "";
  animation: ccChatPulse 2.8s ease-out infinite;
}
@keyframes ccChatPulse {
  0% { opacity: .7; transform: scale(.9); }
  70% { opacity: 0; transform: scale(1.25); }
  100% { opacity: 0; transform: scale(1.25); }
}
.cc-chat.is-open .cc-chat-launcher::after { display: none; }

.cc-chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--pink-hot, #d33b74);
  font-size: .66rem;
  font-weight: 900;
}

/* ------------------------------------------------------------- panel */
.cc-chat-panel {
  display: flex;
  flex-direction: column;
  width: min(378px, calc(100vw - 28px));
  /* 210px reservados = separación inferior + pila de botones flotantes
     (gatita + botón "volver arriba" cuando está visible) + margen de
     seguridad, para que el panel nunca quede empujado fuera de la
     pantalla en ventanas de poca altura (ver nota de altura de vh). */
  height: min(560px, calc(100vh - 210px));
  max-height: calc(100vh - 210px);
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(80, 39, 35, .12);
  border-radius: 22px;
  background: #fffaf7;
  box-shadow: 0 26px 70px rgba(60, 28, 30, .28);
  transform-origin: bottom right;
  animation: ccChatIn .28s cubic-bezier(.2, .9, .3, 1.05) both;
}
.cc-chat-panel[hidden] { display: none; }
@keyframes ccChatIn {
  from { opacity: 0; transform: translateY(14px) scale(.94); }
  to { opacity: 1; transform: none; }
}

.cc-chat-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 15px;
  color: #fff5f2;
  background: linear-gradient(120deg, #2b1a19, #5a2f36);
}
.cc-chat-head-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: #fff;
}
.cc-chat-head-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cc-chat-head-text { flex: 1; min-width: 0; }
.cc-chat-head-text strong { display: block; font-size: .92rem; }
.cc-chat-head-text small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  color: rgba(255, 245, 242, .72);
  font-size: .68rem;
}
.cc-chat-head-text small i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55d98a;
  box-shadow: 0 0 0 3px rgba(85, 217, 138, .22);
}
.cc-chat-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 245, 242, .8);
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cc-chat-close:hover { color: #fff; background: rgba(255, 255, 255, .2); }
.cc-chat-close svg { width: 17px; height: 17px; }

/* ------------------------------------------------------------- mensajes */
.cc-chat-log {
  flex: 1;
  min-height: 0;
  padding: 16px 15px 6px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(80, 39, 35, .2) transparent;
}
.cc-chat-log::-webkit-scrollbar { width: 6px; }
.cc-chat-log::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(80, 39, 35, .18); }

.cc-chat-msg { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 12px; }
.cc-chat-msg-user { justify-content: flex-end; }
.cc-chat-avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffeef4;
}
.cc-chat-avatar img { width: 100%; height: 100%; object-fit: cover; }

.cc-chat-bubble {
  max-width: 78%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: .82rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.cc-chat-msg-bot .cc-chat-bubble {
  border: 1px solid rgba(80, 39, 35, .08);
  border-bottom-left-radius: 5px;
  color: #101010;
  background: #fff;
  box-shadow: 0 3px 12px rgba(79, 37, 35, .05);
}
.cc-chat-msg-user .cc-chat-bubble {
  border-bottom-right-radius: 5px;
  color: #fff;
  background: linear-gradient(125deg, #df4c82, #b63167);
}
.cc-chat-bubble p { margin: 0; }
.cc-chat-bubble p + p { margin-top: 8px; }
.cc-chat-bubble strong { font-weight: 800; }
.cc-chat-bubble a { color: var(--pink-hot, #c22a63); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.cc-chat-msg-user .cc-chat-bubble a { color: #fff; }
.cc-chat-list { margin: 0; padding-left: 18px; display: grid; gap: 6px; }
.cc-chat-list + .cc-chat-list,
.cc-chat-bubble p + .cc-chat-list,
.cc-chat-list + p { margin-top: 8px; }
.cc-chat-list li { line-height: 1.5; }

/* ------------------------------------------------------- volver al inicio */
.cc-chat-restart { margin: 0 0 14px 38px; }
.cc-chat-restart-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border: 1px solid rgba(80, 39, 35, .18);
  border-radius: 999px;
  color: #6d453a;
  background: #fff;
  font-family: inherit;
  font-size: .74rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s, color .2s;
}
.cc-chat-restart-btn:hover { color: #a82e5a; background: #ffeef4; transform: translateY(-1px); }
.cc-chat-restart-btn svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* Puntos de "escribiendo…" */
.cc-chat-dots { display: inline-flex; gap: 4px; padding: 2px 0; }
.cc-chat-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d99bb3;
  animation: ccChatDot 1.3s ease-in-out infinite;
}
.cc-chat-dots i:nth-child(2) { animation-delay: .18s; }
.cc-chat-dots i:nth-child(3) { animation-delay: .36s; }
@keyframes ccChatDot {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* ------------------------------------------------------------- derivación */
.cc-chat-handoff { margin: 0 0 14px 38px; }
.cc-chat-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(125deg, #25d366, #128c4a);
  box-shadow: 0 8px 20px rgba(18, 140, 74, .3);
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.cc-chat-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(18, 140, 74, .38); }
.cc-chat-wa svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------- sugerencias */
.cc-chat-suggestions { display: flex; flex-wrap: wrap; gap: 7px; padding: 2px 2px 12px 38px; }
.cc-chat-suggestions[hidden] { display: none; }
.cc-chat-suggestions button {
  padding: 8px 13px;
  border: 1px solid rgba(223, 76, 130, .3);
  border-radius: 999px;
  color: #a82e5a;
  background: #fff;
  font-family: inherit;
  font-size: .74rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.cc-chat-suggestions button:hover { background: #ffeef4; transform: translateY(-1px); }

/* ------------------------------------------------------------- entrada */
.cc-chat-form {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  padding: 11px 13px;
  border-top: 1px solid rgba(80, 39, 35, .1);
  background: #fff;
}
.cc-chat-form textarea {
  flex: 1;
  min-width: 0;
  height: 42px;
  max-height: 110px;
  padding: 11px 14px;
  border: 1px solid rgba(80, 39, 35, .16);
  border-radius: 16px;
  outline: 0;
  color: #33201f;
  background: #fffaf7;
  font-family: inherit;
  font-size: .82rem;
  line-height: 1.4;
  resize: none;
}
.cc-chat-form textarea:focus { border-color: var(--pink, #df4c82); box-shadow: 0 0 0 3px rgba(223, 76, 130, .12); }
.cc-chat-form textarea:disabled { opacity: .6; }
.cc-chat-send {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(125deg, #df4c82, #b63167);
  cursor: pointer;
  transition: transform .2s, opacity .2s;
}
.cc-chat-send:hover { transform: scale(1.06); }
.cc-chat-send:disabled { opacity: .5; cursor: default; transform: none; }
.cc-chat-send svg { width: 18px; height: 18px; }

.cc-chat-foot {
  margin: 0;
  padding: 0 14px 11px;
  color: #a08c88;
  background: #fff;
  font-size: .63rem;
  text-align: center;
}

/* ------------------------------------------------------------- responsive */
@media (max-width: 560px) {
  .cc-chat-panel {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    height: min(78vh, calc(100vh - 100px));
  }
  .cc-chat-launcher { width: 58px; height: 58px; }
  .cc-chat-launcher img { width: 50px; height: 50px; }
  .floating { bottom: clamp(80px, 10vh, 96px); }
  .cc-chat-suggestions { padding-left: 4px; }
  .cc-chat-handoff { margin-left: 4px; }
}

/* Con el panel abierto en móvil ocultamos los otros flotantes. */
@media (max-width: 560px) {
  .cc-chat.is-open ~ .floating,
  .cc-chat.is-open .cc-chat-launcher { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cc-chat-launcher::after { animation: none; }
  .cc-chat-panel { animation: none; }
  .cc-chat-dots i { animation: none; opacity: .6; }
}

/* =========================================================================
   CHATBOT v2 — la gatita reemplaza al botón de WhatsApp y encabeza la pila.
   Orden final de abajo hacia arriba: [subir] , [gatita]. Nada más abajo.
   ========================================================================= */

/* .floating ahora vive DENTRO de .cc-chat, así que deja de ser fija:
   la posición la controla el contenedor .cc-chat. */
.cc-chat .floating {
  position: static;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* La gatita va arriba del botón de subir. */
.cc-chat .floating .cc-chat-launcher { order: 1; }
.cc-chat .floating .fab-top { order: 2; }

/* El contenedor apila el panel encima de los botones. */
.cc-chat {
  align-items: flex-end;
  gap: 14px;
}

/* El botón verde de WhatsApp se retiró del layout flotante. */
.floating .fab-wa { display: none; }

/* La gatita ya no necesita fondo: el PNG trae su propio marco rosado. */
.cc-chat-launcher {
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 10px 26px rgba(70, 33, 35, .28);
}
.cc-chat-launcher img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: contain;
}
.cc-chat-launcher::after { inset: -4px; border-color: rgba(223, 76, 130, .5); }

.cc-chat-badge { top: 0; right: 0; }

@media (max-width: 560px) {
  .cc-chat-launcher, .cc-chat-launcher img { width: 60px; height: 60px; }
  /* Con el chat abierto en móvil, la pila entera se oculta para no estorbar. */
  .cc-chat.is-open .floating { display: none; }
}

/* El botón de subir usa opacity:0, lo que reservaba un hueco vacío debajo
   de la gatita mientras no se ha hecho scroll. Dentro de la pila del chat
   lo colapsamos para que la gatita quede pegada abajo y no sobre nada. */
.cc-chat .floating .fab-top:not(.is-visible) {
  display: none;
}
.cc-chat .floating .fab-top.is-visible {
  animation: ccFabIn .3s cubic-bezier(.2, .9, .3, 1.1) both;
}
@keyframes ccFabIn {
  from { opacity: 0; transform: translateY(8px) scale(.85); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cc-chat .floating .fab-top.is-visible { animation: none; }
}

/* ============================================================ Carrito
   Campos opcionales de contacto (nombre / WhatsApp) del checkout. */
.cart-contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cart-note-half { gap: 6px; }
.cart-note-half span i { color: var(--ink-3); font-style: normal; font-weight: 700; opacity: .7; }
.cart-note-half input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(109, 69, 58, .14);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: .8rem;
  outline: 0;
  box-sizing: border-box;
}
.cart-note-half input:focus,
.cart-note textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(224, 68, 126, .12);
}

@media (max-width: 480px) {
  .cart-contact-fields { grid-template-columns: 1fr; }
}
