/* ============================================================
   LOWKEY PARFUMS — Sistema de diseño
   Dirección: Lujo oscuro cinematográfico (obsidiana + oro)
   Tipografías: Cormorant Garamond (display) + Jost (UI/cuerpo)
   ============================================================ */

/* ---------- 1. Tokens / Variables ---------- */
:root {
  /* Color base de marca */
  --bg:        #0a0a0b;   /* obsidiana */
  --bg-2:      #101013;   /* superficie elevada */
  --bg-3:      #16161a;   /* tarjetas */
  --ivory:     #ece6da;   /* texto principal */
  --ivory-dim: #9a9388;   /* texto secundario */
  --ivory-mute:#6b655c;   /* texto terciario */
  --gold:      #c8a24b;   /* oro de marca */
  --gold-soft: #e6cf94;   /* oro claro */
  --gold-deep: #8c6f2f;   /* oro profundo */
  --line:      rgba(236,230,218,0.12);
  --line-soft: rgba(236,230,218,0.06);
  --cyan:      #8fb9c9;   /* acento frío secundario (combina con el oro) */
  --cyan-soft: #c3e0ea;

  /* Acento por perfume (se sobreescribe en cada página) */
  --accent:      var(--gold);
  --accent-soft: var(--gold-soft);
  --accent-glow: rgba(200,162,75,0.35);

  /* Tipografía */
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans:    "Jost", -apple-system, system-ui, sans-serif;

  /* Escala fluida (clamp = se adapta al ancho de pantalla) */
  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.9rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --step-1:  clamp(1.6rem, 1.3rem + 1.5vw, 2.4rem);
  --step-2:  clamp(2.2rem, 1.6rem + 3vw, 4rem);
  --step-3:  clamp(3rem, 2rem + 5vw, 6.5rem);
  --step-4:  clamp(4rem, 2.4rem + 8vw, 11rem);

  /* Espaciado */
  --pad: clamp(1.25rem, 5vw, 7rem);
  --section: clamp(5rem, 10vw, 11rem);

  /* Otros */
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --maxw: 1500px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: var(--step-0);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, canvas, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--accent); color: #0a0a0b; }

/* ---------- 3. Texturas globales (grano + viñeta) ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  position: fixed; inset: 0; z-index: 8999; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 30%, transparent 55%, rgba(0,0,0,0.55) 100%);
}

/* ---------- 4. Tipografía ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.9em;
}
.eyebrow::before {
  content: ""; width: clamp(20px, 4vw, 48px); height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.is-centered::after {
  content: ""; width: clamp(20px, 4vw, 48px); height: 1px;
  background: linear-gradient(270deg, var(--accent), transparent);
}

.lede { font-size: var(--step-1); line-height: 1.25; font-weight: 300; color: var(--ivory); }
.muted { color: var(--ivory-dim); }
.serif-italic { font-family: var(--display); font-style: italic; }

/* ---------- 5. Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section); position: relative; }
.center { text-align: center; }
.stack > * + * { margin-top: 1.2rem; }

/* ---------- 6. Botones ---------- */
.btn {
  --b: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75em;
  font-family: var(--sans); font-size: var(--step--1); font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.15em 2.4em; position: relative; overflow: hidden;
  border: 1px solid var(--b); color: var(--ivory);
  transition: color 0.5s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--b); transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}
/* Destello cinematográfico que cruza el botón */
.btn::before {
  content: ""; position: absolute; top: 0; bottom: 0; width: 45%; left: -60%; z-index: 1;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.28) 50%, transparent);
  transform: skewX(-18deg); transition: left 0.7s var(--ease); pointer-events: none;
}
.btn:hover::before { left: 120%; }
.btn:hover { color: #0a0a0b; box-shadow: 0 0 26px var(--accent-glow), 0 4px 18px rgba(0,0,0,0.4); }
.btn:hover::after { transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ .btn::before { display: none; } .btn:hover { box-shadow: none; } }
.btn--solid { background: var(--accent); color: #0a0a0b; }
.btn--solid::after { background: var(--ivory); }
.btn--ghost { border-color: var(--line); }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 4px; }

.link-underline { position: relative; color: var(--ivory); display: inline-block; }
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- 7. Header / Nav ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: flex-start;
  padding: clamp(1rem,2.5vw,1.8rem) var(--pad);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10,10,11,0.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  padding-block: clamp(0.7rem,1.5vw,1.1rem);
}
.brand {
  font-family: "Cinzel", var(--display); font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem); letter-spacing: 0.16em; line-height: 1;
  display: inline-block;
  background: linear-gradient(100deg, #9a7a32, #c8a24b 28%, #f7ecc4 50%, #c8a24b 72%, #9a7a32);
  background-size: 230% 100%; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 1px 7px rgba(200,162,75,0.45));
  animation: brandShine 7s linear infinite;
}
.brand b { font-weight: 600; }
.brand .dot { display: none; }
.brand::after {
  content: "Parfums"; text-transform: uppercase; font-family: var(--display); font-weight: 500;
  -webkit-text-fill-color: var(--gold-soft); color: var(--gold-soft); background: none;
  display: block; font-size: 0.4em; letter-spacing: 0.55em; text-indent: 0.55em; margin-top: 0.3em; opacity: 0.82;
}
.nav { display: flex; align-items: center; gap: clamp(0.9rem, 1.9vw, 2.2rem); margin-left: clamp(1.4rem, 3.5vw, 3rem); margin-right: auto; }
.nav a { font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; color: var(--ivory-dim); transition: color 0.4s var(--ease); }
.nav a:hover { color: var(--ivory); }
.nav .cart { color: var(--ivory); }
.nav-toggle { display: none; width: 34px; height: 34px; flex-direction: column; justify-content: center; gap: 6px; }
/* Los iconos del header (lupa, puntos, corazon, carrito) nunca se aplastan */
.header > .lks-toggle, .header > .lk-pts-chip, .header > .lk-signup-cta,
.header > .lkf-toggle, .header > .lk-cart-toggle, .header > .nav-toggle { flex-shrink: 0; }
/* La portada tiene 7 enlaces de menu: pasa a hamburguesa antes que el resto */
@media (max-width: 1560px) {
  .home .nav { display: none; }
  .home .nav-toggle { display: flex; }
  .home .brand { margin-right: auto; }
}
.nav-toggle span { display: block; height: 1px; width: 100%; background: var(--ivory); transition: transform 0.4s var(--ease), opacity 0.3s; }

/* Menú móvil */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999; background: var(--bg);
  display: flex; flex-direction: column; justify-content: safe center; align-items: center;
  gap: clamp(0.8rem, 2.6vh, 1.5rem);
  padding: 5.5rem 1.5rem 3rem;          /* aire arriba/abajo para poder desplazar si la ventana es baja */
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  transform: translateY(-100%); pointer-events: none;
  visibility: hidden;                    /* CERRADO = totalmente invisible: nunca se asoma por arriba */
  transition: transform 0.65s var(--ease), visibility 0s linear 0.65s;
}
.mobile-nav.is-open {
  transform: translateY(0); pointer-events: auto; visibility: visible;
  transition: transform 0.65s var(--ease), visibility 0s;
}
.mobile-nav a { font-family: var(--display); font-size: clamp(1.6rem, 5vw, 2.4rem); line-height: 1.1; color: var(--ivory); }
.mobile-nav a:hover { color: var(--accent); }

/* ---------- 8. Reveal (aparición al hacer scroll) ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal="fade"] { transform: none; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   HERO (compartido home + perfume)
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
/* Portada: hero compacto y título a una escala que NO tape el header */
.home .hero { min-height: 100svh; }
.home .home-title { font-size: var(--step-3); }
.hero-fx { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-glow {
  position: absolute; z-index: 0; left: 50%; top: 46%; transform: translate(-50%,-50%);
  width: min(120vw, 1100px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 62%);
  filter: blur(40px); opacity: 0.9; pointer-events: none;
}
/* Ambiente cinematográfico por familia olfativa (imagen Higgsfield al fondo)
   con paneo lento tipo "Ken Burns" para que la escena se sienta viva */
.pf-ambiente {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-size: cover; background-position: center;
  opacity: 0.36; filter: saturate(0.78) brightness(0.85);
  -webkit-mask-image: radial-gradient(125% 105% at 50% 38%, black 30%, transparent 86%);
          mask-image: radial-gradient(125% 105% at 50% 38%, black 30%, transparent 86%);
  will-change: transform;
  animation: lkKenBurns 52s ease-in-out infinite alternate;
}
@keyframes lkKenBurns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.17) translate(-1.6%, -2.2%); }
}
@media (prefers-reduced-motion: reduce){ .pf-ambiente { animation: none; } }
/* Versión VIDEO del ambiente (Grok): el movimiento es real, sin Ken Burns */
video.pf-ambiente { animation: none; object-fit: cover; width: 100%; height: 100%; }
/* Los heroes de sección necesitan contener su ambiente */
.vt-hero, .ac-hero, .dl-hero, .lkp-hero, .lk-auth-hero { position: relative; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.4; pointer-events: none;
  background:
    linear-gradient(transparent 0, transparent calc(100% - 1px), var(--line-soft) 100%) 0 0 / 100% 88px,
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), var(--line-soft) 100%) 0 0 / 88px 100%;
  mask-image: radial-gradient(120% 90% at 50% 40%, black 30%, transparent 80%);
}

/* ---------- 9. Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem,6vw,5rem) 2rem; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer h4 { font-family: var(--sans); font-size: var(--step--1); letter-spacing: 0.28em; text-transform: uppercase; color: var(--ivory-mute); margin-bottom: 1.4rem; font-weight: 400; }
.footer-links li + li { margin-top: 0.7rem; }
.footer-links a { color: var(--ivory-dim); transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-brand {
  font-family: "Cinzel", var(--display); font-weight: 600;
  font-size: var(--step-3); line-height: 0.92; letter-spacing: 0.05em;
  position: relative; display: inline-block;
  background: linear-gradient(100deg, #9a7a32, #c8a24b 26%, #f7ecc4 50%, #c8a24b 74%, #9a7a32);
  background-size: 230% 100%; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 16px rgba(200,162,75,0.3));
  animation: brandShine 7s linear infinite;
}
.footer-brand span { -webkit-text-fill-color: transparent; color: transparent; }
.footer-brand::after {
  content: "Parfums"; text-transform: uppercase; font-family: var(--display); font-weight: 500;
  -webkit-text-fill-color: var(--gold-soft); color: var(--gold-soft); background: none;
  display: block; font-size: 0.24em; letter-spacing: 0.62em; text-indent: 0.62em; margin-top: 0.4em; opacity: 0.82;
}
.footer-brand::before {
  content: ""; position: absolute; inset: -55% -28%; z-index: -1; pointer-events: none;
  background: radial-gradient(46% 70% at 26% 50%, rgba(200,162,75,0.42), transparent 72%),
             radial-gradient(46% 70% at 74% 50%, rgba(143,185,201,0.34), transparent 72%);
  filter: blur(38px); animation: brandEstela 8s ease-in-out infinite alternate;
}
@keyframes brandShine { from { background-position: 210% 0; } to { background-position: -110% 0; } }
@keyframes brandEstela { from { opacity: 0.5; transform: translateX(-7%); } to { opacity: 1; transform: translateX(7%); } }
@media (prefers-reduced-motion: reduce){
  .brand, .footer-brand, .footer-brand::before { animation: none; }
  .brand, .footer-brand { background-position: 50% 0; }
}
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: clamp(3rem,6vw,5rem); padding-top: 2rem; border-top: 1px solid var(--line-soft); color: var(--ivory-mute); font-size: var(--step--1); letter-spacing: 0.04em; }

/* ============================================================
   HOME
   ============================================================ */
.home-hero-content { position: relative; z-index: 2; }
.home-hero-content .kicker { margin-bottom: clamp(1.5rem,4vw,2.5rem); }
.home-title { font-size: var(--step-4); line-height: 0.86; letter-spacing: -0.02em; }
.home-title .light { color: var(--ivory); }
.home-title em { font-style: italic; color: var(--accent); }
.home-hero-sub { max-width: 46ch; margin-top: clamp(1.5rem,3vw,2.4rem); color: var(--ivory-dim); font-size: var(--step-0); }
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: clamp(2rem,4vw,3rem); }

.scroll-cue { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; color: var(--ivory-mute); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-cue .bar { width: 1px; height: 54px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--ivory); animation: scrolldrop 2.2s var(--ease) infinite; }
@keyframes scrolldrop { 0% { top: -50%; } 70%,100% { top: 100%; } }

/* Manifiesto */
.manifesto { text-align: center; }
.manifesto p { font-family: var(--display); font-size: var(--step-2); line-height: 1.2; font-weight: 300; max-width: 20ch; margin-inline: auto; }
.manifesto .word { color: var(--accent); font-style: italic; }

/* Colección */
.collection-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: clamp(2.5rem,5vw,4rem); }
.collection-head h2 { font-size: var(--step-3); }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2vw,1.6rem); }

.fragrance-card {
  position: relative; display: block; aspect-ratio: 3 / 4.85; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line-soft);
  isolation: isolate;
}
.fragrance-card .card-fx { position: absolute; inset: 0; z-index: 0; opacity: 0.85; transition: transform 1.4s var(--ease); }
.fragrance-card .card-glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(80% 60% at 50% 75%, var(--c-glow, var(--accent-glow)) 0%, transparent 70%); opacity: 0.7; transition: opacity 0.6s; }
/* Foco de vitrina: ilumina el frasco (sobre todo los de foto oscura) sin lavar los claros */
.fragrance-card::before {
  content: ""; position: absolute; left: 50%; top: 30%; width: 86%; height: 56%;
  transform: translate(-50%,-50%); z-index: 1; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,255,255,0.10), rgba(255,255,255,0.04) 52%, transparent 76%);
}
.fragrance-card .bottle { position: absolute; left: 50%; top: 31%; transform: translate(-50%,-50%); z-index: 2; height: 50%; width: auto; transition: transform 1s var(--ease); filter: drop-shadow(0 26px 36px rgba(0,0,0,0.62)); }
.fragrance-card .card-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: clamp(2.2rem,5vw,3rem) clamp(1.2rem,2vw,1.8rem) clamp(1.2rem,2vw,1.7rem);
  background: linear-gradient(180deg, transparent 0%, rgba(8,8,9,0.55) 32%, rgba(8,8,9,0.93) 62%, rgba(6,6,7,0.99) 100%); }
.fragrance-card .card-cat { font-size: var(--step--1); letter-spacing: 0.28em; text-transform: uppercase; color: var(--c-accent, var(--accent)); }
.fragrance-card h3 { font-size: var(--step-0); line-height: 1.1; margin-top: 0.4rem; }
.fragrance-card .card-note { color: var(--ivory-dim); font-size: var(--step--1); margin-top: 0.3rem; }
.fragrance-card .card-cta { margin-top: 0; max-height: 0; overflow: hidden; font-size: var(--step--1); letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory); display: inline-flex; gap: 0.6em; opacity: 0; transform: translateY(8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), max-height 0.5s var(--ease), margin-top 0.5s var(--ease); }
.fragrance-card:hover .card-cta { opacity: 1; transform: none; max-height: 2.4rem; margin-top: 0.9rem; }
/* (el movimiento 3D del frasco lo maneja levitate.js) */
.fragrance-card:hover .card-fx { transform: scale(1.08); }
.fragrance-card:hover .card-glow { opacity: 1; }
.fragrance-card::after { content: ""; position: absolute; inset: 0; z-index: 3; border: 1px solid transparent; transition: border-color 0.5s; }
.fragrance-card:hover::after { border-color: var(--c-accent, var(--accent)); }
.fragrance-card.is-soon { pointer-events: none; }
.fragrance-card .soon-tag { position: absolute; top: 1rem; right: 1rem; z-index: 3; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-mute); border: 1px solid var(--line); padding: 0.4em 0.8em; }

/* Tira de valores */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem,3vw,3rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: clamp(2.5rem,5vw,4rem); }
.value h4 { font-family: var(--display); font-size: var(--step-1); color: var(--accent); }
.value p { color: var(--ivory-dim); font-size: var(--step--1); margin-top: 0.6rem; letter-spacing: 0.02em; }

/* ============================================================
   PÁGINA DE PERFUME
   ============================================================ */
.pf-hero { min-height: 100svh; }
.pf-hero .wrap { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 2rem; }
.pf-hero-bottle { position: relative; display: flex; justify-content: center; }
.pf-hero-bottle .bottle { height: min(78vh, 720px); width: auto; filter: drop-shadow(0 50px 70px rgba(0,0,0,0.6)); will-change: transform; }
.pf-hero-bottle .reflection { position: absolute; bottom: -2%; left: 50%; transform: translateX(-50%) scaleY(-1); height: 22%; opacity: 0.18; filter: blur(3px); mask-image: linear-gradient(black, transparent); }

/* Fotos de producto con TRANSPARENCIA REAL (webp con alfa): el frasco
   flota sobre el tema oscuro con su sombra; sin máscaras ni óvalos. */
.product { filter: drop-shadow(0 26px 34px rgba(0,0,0,0.6)); }
.pf-hero-bottle .product { height: min(76vh, 700px); width: auto; filter: drop-shadow(0 40px 55px rgba(0,0,0,0.55)); will-change: transform; }
.fragrance-card .bottle.product { height: 62%; }
.buy-final .bf-bottle.product { height: clamp(300px, 46vh, 500px); }

/* Vitrina de un solo producto (cuando hay una sola foto) */
.showcase { text-align: center; }
.showcase-stage { position: relative; display: flex; justify-content: center; align-items: center; padding-block: clamp(1.5rem,4vw,3rem); }
.showcase-stage .glow { position: absolute; width: min(82vw, 700px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%); filter: blur(30px); z-index: 0; }
.showcase-stage img { position: relative; z-index: 1; height: clamp(320px, 56vh, 600px); width: auto; filter: drop-shadow(0 40px 50px rgba(0,0,0,0.5)); }
.showcase-cap { color: var(--ivory-mute); font-size: var(--step--1); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 1rem; }

/* ===== Galería del producto ("El objeto") ===== */
.pf-gallery { position: relative; display: flex; align-items: center; justify-content: center; gap: clamp(.3rem,1.5vw,1.1rem); padding-block: clamp(1.5rem,4vw,3rem); }
.pf-gallery .glow { position: absolute; width: min(82vw, 700px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%); filter: blur(30px); z-index: 0; pointer-events: none; }
.pf-gal-viewport { position: relative; z-index: 1; overflow: hidden; width: min(78vw, 560px); max-width: 100%; touch-action: pan-y; cursor: grab; }
.pf-gal-viewport:active { cursor: grabbing; }
.pf-gal-track { display: flex; will-change: transform; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.pf-gal-slide { flex: 0 0 100%; width: 100%; height: clamp(300px, 54vh, 580px); object-fit: contain; filter: drop-shadow(0 40px 50px rgba(0,0,0,0.5)); user-select: none; -webkit-user-drag: none; }
.pf-gal-nav { position: relative; z-index: 4; flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(200,162,75,.5); background: rgba(10,10,11,.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--accent-soft); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: opacity .3s, border-color .3s, box-shadow .3s; }
.pf-gal-nav svg { width: 18px; height: 18px; }
.pf-gal-nav:hover { border-color: var(--accent-soft); box-shadow: 0 0 18px var(--accent-glow); }
.pf-gal-nav.off { opacity: .22; pointer-events: none; }
.pf-gallery.is-single .pf-gal-nav { display: none; }
.pf-gal-dots { display: flex; gap: .55rem; justify-content: center; margin-top: 1.3rem; }
.pf-gal-dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: 1px solid var(--accent); background: transparent; cursor: pointer; transition: background .3s, transform .3s; }
.pf-gal-dot.is-on { background: var(--accent); transform: scale(1.15); }
@media (max-width: 760px) { .pf-gal-viewport { width: min(86vw, 460px); } .pf-gal-nav { width: 40px; height: 40px; } }
.pf-hero-copy .pf-cat { margin-bottom: 1.5rem; }
.pf-name { font-size: clamp(2.3rem, 1.4rem + 4.2vw, 5.4rem); line-height: 0.95; overflow-wrap: break-word; }
.pf-name em { font-style: italic; color: var(--accent); display: block; }
.pf-tagline { font-family: var(--display); font-style: italic; font-size: var(--step-1); color: var(--ivory-dim); margin-top: 1.2rem; }
.pf-hero-meta { display: flex; gap: 2.5rem; margin-top: clamp(1.8rem,4vw,2.6rem); flex-wrap: wrap; }
.pf-hero-meta .m { }
.pf-hero-meta .m span { display: block; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ivory-mute); }
.pf-hero-meta .m strong { font-family: var(--display); font-weight: 400; font-size: var(--step-1); color: var(--ivory); }
.pf-hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: clamp(2rem,4vw,2.8rem); }
.pf-price { font-family: var(--display); font-size: var(--step-2); }
.pf-price small { font-family: var(--sans); font-size: 0.9rem; color: var(--ivory-mute); letter-spacing: 0.04em; }
.pf-hero-decant { margin-top: 1.2rem; max-width: 420px; }
.pf-hero-decant-lbl { display: inline-flex; align-items: center; gap: 0.4em; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory-mute); margin-bottom: 0.65rem; }
.pf-hero-decant-btns { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.pf-decant-btn { flex: 1 1 150px; padding: 0.7em 1.1em; font-size: 0.78rem; }
.pf-decant-btn:hover { border-color: var(--accent); color: var(--ivory); }

/* Frase de apertura (storytelling) */
.pf-opening { text-align: center; }
.pf-opening p { font-family: var(--display); font-size: var(--step-2); line-height: 1.18; font-weight: 300; max-width: 22ch; margin-inline: auto; }
.pf-opening em { font-style: italic; color: var(--accent); }

/* Galería */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(0.8rem,1.5vw,1.4rem); grid-auto-rows: clamp(180px, 22vw, 320px); }
.gallery figure { position: relative; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line-soft); cursor: zoom-in; }
.gallery img, .gallery .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery figure:hover img, .gallery figure:hover .ph { transform: scale(1.06); }
.gallery .g-tall { grid-column: span 5; grid-row: span 2; }
.gallery .g-wide { grid-column: span 7; }
.gallery .g-sm  { grid-column: span 4; }
.gallery .g-md  { grid-column: span 3; }
.gallery figcaption { position: absolute; left: 1rem; bottom: 1rem; font-size: var(--step--1); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory); opacity: 0; transform: translateY(6px); transition: 0.5s var(--ease); }
.gallery figure:hover figcaption { opacity: 1; transform: none; }
/* Placeholder de imagen (mientras no hay foto real) */
.ph { display: flex; align-items: center; justify-content: center; background:
  radial-gradient(80% 80% at 50% 30%, color-mix(in srgb, var(--accent) 14%, var(--bg-3)) 0%, var(--bg-2) 70%); }
.ph span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-mute); }

/* Pirámide olfativa */
.pyramid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.pyramid-visual { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.pyramid-visual .ring { position: absolute; border-radius: 50%; border: 1px solid var(--line); inset: 0; }
.pyramid-visual .ring.r2 { inset: 14%; }
.pyramid-visual .ring.r3 { inset: 28%; }
.pyramid-visual .core { width: 36%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); filter: blur(6px); opacity: 0.7; animation: breathe 6s var(--ease-soft) infinite; }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: 0.55; } 50% { transform: scale(1.12); opacity: 0.85; } }
.note-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }

.notes-col { }
.note-group { padding-block: 1.6rem; border-top: 1px solid var(--line); }
.note-group:last-child { border-bottom: 1px solid var(--line); }
.note-group .ng-head { display: flex; align-items: baseline; gap: 1rem; }
.note-group .ng-head h4 { font-family: var(--sans); font-size: var(--step--1); letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); font-weight: 400; }
.note-group .ng-head .ng-when { color: var(--ivory-mute); font-size: 0.75rem; letter-spacing: 0.04em; }
.note-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.note-chip { display: inline-flex; align-items: center; gap: 0.55em; padding: 0.55em 1.1em; border: 1px solid var(--line); border-radius: 999px; font-size: var(--step--1); letter-spacing: 0.06em; color: var(--ivory); transition: border-color 0.4s, color 0.4s, background 0.4s; }
.note-chip .ico { width: 16px; height: 16px; color: var(--accent); }
.note-chip:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); }

/* Sección interactiva (medidores) */
.meters { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem,4vw,3.5rem) clamp(2rem,5vw,5rem); }
.meter .m-top { display: flex; justify-content: space-between; align-items: baseline; }
.meter .m-label { font-size: var(--step--1); letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-dim); }
.meter .m-val { font-family: var(--display); font-size: var(--step-1); color: var(--accent); }
.meter .track { position: relative; height: 2px; background: var(--line); margin-top: 1rem; overflow: hidden; }
.meter .fill { position: absolute; inset: 0; transform-origin: left; transform: scaleX(0); background: linear-gradient(90deg, var(--gold-deep), var(--accent)); transition: transform 1.4s var(--ease); }
.meter.is-visible .fill { transform: scaleX(var(--v, 0.5)); }
.meter .ticks { display: flex; justify-content: space-between; margin-top: 0.7rem; font-size: 0.7rem; color: var(--ivory-mute); letter-spacing: 0.1em; }

/* Historia narrativa (parallax) */
.story { position: relative; overflow: hidden; }
.story-bg { position: absolute; inset: -10% 0; z-index: 0; background-size: cover; background-position: center; opacity: 0.22; will-change: transform; }
.story-bg.ph { opacity: 0.3; }
.story-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--bg) 18%, transparent 70%), linear-gradient(var(--bg), transparent 25%, transparent 75%, var(--bg)); }
.story-content { position: relative; z-index: 2; max-width: 54ch; }
.story-content .chapter { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ivory-mute); margin-bottom: 1.5rem; }
.story-content h2 { font-size: var(--step-3); margin-bottom: clamp(1.5rem,3vw,2.2rem); }
.story-content p { color: var(--ivory-dim); font-size: var(--step-0); }
.story-content p + p { margin-top: 1.3rem; }
.story-pull { font-family: var(--display); font-style: italic; font-size: var(--step-1); color: var(--ivory); border-left: 1px solid var(--accent); padding-left: 1.5rem; margin-block: 2rem; }

/* ¿Para quién es? */
.persona-head { max-width: 40ch; margin-bottom: clamp(2.5rem,5vw,4rem); }
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2vw,1.6rem); }
.persona-card { padding: clamp(1.6rem,3vw,2.4rem); border: 1px solid var(--line); background: linear-gradient(160deg, var(--bg-2), var(--bg)); position: relative; overflow: hidden; transition: border-color 0.5s, transform 0.6s var(--ease); }
.persona-card::before { content: ""; position: absolute; top: 0; left: 0; width: 40%; height: 1px; background: linear-gradient(90deg, var(--accent), transparent); }
.persona-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.persona-card .p-ico { width: 30px; height: 30px; color: var(--accent); margin-bottom: 1.4rem; }
.persona-card h4 { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ivory-mute); font-family: var(--sans); font-weight: 400; }
.persona-card .p-val { font-family: var(--display); font-size: var(--step-1); margin-top: 0.5rem; color: var(--ivory); }
.persona-card p { color: var(--ivory-dim); font-size: var(--step--1); margin-top: 0.7rem; }

/* CTA final */
.buy-final { position: relative; text-align: center; overflow: hidden; }
.buy-final .bf-bottle { height: clamp(220px, 40vh, 420px); margin-inline: auto; filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6)); margin-bottom: 2.5rem; }
.buy-final h2 { font-size: var(--step-3); }
.buy-final .bf-price { font-family: var(--display); font-size: var(--step-2); margin-top: 1rem; }
.buy-final .bf-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.buy-final .bf-note { color: var(--ivory-mute); font-size: var(--step--1); margin-top: 1.5rem; letter-spacing: 0.06em; }

/* Doble formato: botella vs decant (en página de producto) */
.pf-decant { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,2vw,1.5rem); max-width: 760px; margin-inline: auto; }
.pd-col { text-align: center; border: 1px solid var(--line); padding: clamp(1.6rem,3vw,2.4rem); background: linear-gradient(160deg, var(--bg-2), var(--bg)); }
.pd-col.is-decant { border-color: var(--accent); }
.pd-tag { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ivory-mute); }
.pd-col.is-decant .pd-tag { color: var(--accent); }
.pd-price { font-family: var(--display); font-size: var(--step-2); margin: 0.6rem 0 1.4rem; }
.pd-price small { font-family: var(--sans); font-size: 0.9rem; color: var(--ivory-mute); letter-spacing: 0.04em; }
.pd-sizes { display: grid; gap: 0.6rem; }
.pd-sizes .btn { width: 100%; padding: 0.85em 1em; justify-content: space-between; letter-spacing: 0.12em; }
.pd-sizes .btn .pz { color: var(--accent-soft); }
@media (max-width: 560px){ .pf-decant { grid-template-columns: 1fr; } }

/* ===== Guía rápida (inteligencia del perfume) ===== */
.guia-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: clamp(1.8rem,3vw,2.6rem); }
.g-badge { display: inline-flex; align-items: center; gap: 0.55em; border: 1px solid var(--line); padding: 0.55em 1.1em; border-radius: 999px; font-size: var(--step--1); color: var(--ivory); letter-spacing: 0.04em; }
.g-badge i { font-style: normal; }
.guia-metrics { display: grid; gap: 1rem; max-width: 680px; margin-bottom: clamp(1.8rem,3vw,2.6rem); }
.gm { display: grid; grid-template-columns: 150px 1fr auto; gap: 1rem; align-items: center; border-bottom: 1px solid var(--line-soft); padding-bottom: 0.8rem; }
.gm-l { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-dim); }
.gm-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 0.18em; }
.gm-dots { display: inline-flex; gap: 0.45rem; }
.gm-dots .dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--line); }
.gm-dots .dot.on { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.gm-bar { position: relative; height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; }
.gm-bar i { position: absolute; inset: 0 auto 0 0; background: linear-gradient(90deg, var(--gold-deep), var(--accent)); border-radius: 2px; }
.gm-v { font-family: var(--display); font-size: var(--step-0); color: var(--ivory); white-space: nowrap; }
.guia-tags { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,3vw,3rem); margin-bottom: clamp(2rem,4vw,3rem); }
.guia-tags h4 { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ivory-mute); margin-bottom: 0.8rem; font-weight: 400; }
.g-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.g-chip { border: 1px solid var(--line); padding: 0.45em 1em; border-radius: 999px; font-size: var(--step--1); color: var(--ivory); }
.guia-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,2vw,1.5rem); }
.gcol { border: 1px solid var(--line); padding: clamp(1.4rem,2.5vw,2rem); background: linear-gradient(160deg, var(--bg-2), var(--bg)); }
.gcol.ok { border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.gcol h3 { font-family: var(--display); font-size: var(--step-1); margin-bottom: 1rem; }
.gcol ul { color: var(--ivory-dim); font-size: var(--step--1); }
.gcol li { padding: 0.35rem 0 0.35rem 1.4rem; position: relative; }
.gcol.ok li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.gcol.no li::before { content: "—"; position: absolute; left: 0; color: var(--ivory-mute); }
@media (max-width: 720px){
  .gm { grid-template-columns: 105px 1fr auto; gap: 0.7rem; }
  .guia-tags, .guia-cols { grid-template-columns: 1fr; }
}

/* ===== Stock ===== */
.stock-badge { display: inline-flex; align-items: center; gap: 0.5em; font-size: var(--step--1); letter-spacing: 0.08em; padding: 0.45em 1em; border-radius: 999px; border: 1px solid; }
.stock-badge::before { content: "●"; font-size: 0.7em; }
.sb-ok   { color: #8fce9a; border-color: rgba(143,206,154,0.4); }
.sb-med  { color: #e6cf94; border-color: rgba(230,207,148,0.4); }
.sb-low  { color: #e0a45c; border-color: rgba(224,164,92,0.45); }
.sb-crit { color: #d98b6f; border-color: rgba(217,139,111,0.5); }
.sb-out  { color: #9a9388; border-color: rgba(154,147,136,0.4); }
.sb-out::before { content: "○"; }

/* ===== Ofertas y sellos premium ===== */
.price-old { color: var(--ivory-mute); text-decoration: line-through; text-decoration-color: rgba(217,139,111,0.85); font-size: 0.55em; margin-right: 0.25em; font-family: var(--sans); letter-spacing: 0; }
.tag-deal { display: inline-flex; align-items: center; gap: 0.4em; font-size: var(--step--1); letter-spacing: 0.06em; padding: 0.45em 1em; border-radius: 999px; border: 1px solid; }
.tag-deal.offer { color: #e8927a; border-color: rgba(232,146,122,0.5); background: rgba(232,146,122,0.08); }
.tag-deal.premium { color: #e6cf94; border-color: rgba(230,207,148,0.5); background: rgba(230,207,148,0.06); }
.tag-deal.crown { color: #f3dc8e; border-color: rgba(243,220,142,0.6); background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(243,220,142,0.04)); box-shadow: 0 0 18px rgba(212,175,55,0.22); }

/* Ribbons en tarjetas del catálogo (las pone ribbons.js) */
.card-ribbon { position: absolute; top: 0.8rem; left: 0.8rem; z-index: 4; font-size: 0.62rem; letter-spacing: 0.06em; padding: 0.4em 0.8em; border-radius: 999px; background: rgba(10,10,11,0.9); border: 1px solid; pointer-events: none; }
.card-ribbon.offer { color: #e8927a; border-color: rgba(232,146,122,0.6); }
.card-ribbon.premium { color: #e6cf94; border-color: rgba(230,207,148,0.55); }
.card-ribbon.crown { color: #f3dc8e; border-color: rgba(243,220,142,0.7); box-shadow: 0 0 14px rgba(212,175,55,0.28); }

/* Las fotos de producto mantienen su proporción original (no se deforman ni recortan) */
.pf-hero-bottle .product, .showcase-stage img, .bf-bottle.product, .fragrance-card .bottle.product { object-fit: contain; }

/* Barra de compra fija (móvil) */
.buy-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem var(--pad); background: rgba(10,10,11,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); transform: translateY(110%); transition: transform 0.5s var(--ease);
}
.buy-bar.is-visible { transform: none; }
.buy-bar .bb-name { font-family: var(--display); font-size: 1.2rem; line-height: 1; }
.buy-bar .bb-price { color: var(--ivory-dim); font-size: var(--step--1); }
.buy-bar .btn { padding: 0.9em 1.6em; }

/* Lightbox galería */
.lightbox { position: fixed; inset: 0; z-index: 9500; display: grid; place-items: center; padding: 4vw; background: rgba(6,6,7,0.92); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img, .lightbox .ph { max-width: 90vw; max-height: 86vh; width: auto; }
.lightbox .lb-close { position: absolute; top: 4vw; right: 4vw; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-dim); }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 2.5rem; transform: translate(-50%, 160%); opacity: 0; visibility: hidden; z-index: 9600; background: var(--bg-3); border: 1px solid var(--accent); padding: 1em 1.6em; font-size: var(--step--1); letter-spacing: 0.04em; color: var(--ivory); transition: transform 0.5s var(--ease), opacity 0.4s var(--ease), visibility 0.4s; max-width: 90vw; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

/* Cursor personalizado (solo escritorio con ratón) */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
.cursor-dot { width: 6px; height: 6px; background: var(--ivory); transform: translate(-50%,-50%); }
.cursor-ring { width: 38px; height: 38px; border: 1px solid var(--ivory); transform: translate(-50%,-50%); transition: width 0.3s, height 0.3s, opacity 0.3s; }
.cursor-ring.is-hover { width: 60px; height: 60px; }

/* ============================================================
   RESPONSIVE — diseñado para móvil, no encogido
   ============================================================ */
@media (max-width: 1024px) {
  .pf-hero .wrap { grid-template-columns: 1fr; text-align: center; gap: 1rem; padding-top: 5.5rem; }
  .pf-hero-bottle { order: -1; }
  .pf-hero-bottle .bottle, .pf-hero-bottle .product { height: min(54vh, 500px); }
  .pf-hero-meta, .pf-hero-actions { justify-content: center; }
  .pyramid { grid-template-columns: 1fr; }
  .pyramid-visual { max-width: 360px; margin-inline: auto; }
  .story-content { max-width: none; }
  .story-veil { background: linear-gradient(var(--bg), rgba(10,10,11,0.6) 40%, var(--bg)); }
}
/* El menú completo (7 apartados) necesita ancho; debajo de 1080px usamos la
   hamburguesa, que ya incluye Academia y todos los apartados. */
@media (max-width: 1120px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .brand { margin-right: auto; } /* sin nav, la marca empuja los iconos a la derecha */
}
@media (max-width: 880px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .meters { grid-template-columns: 1fr 1fr; }
  .persona-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(160px, 40vw, 240px); }
  .gallery .g-tall, .gallery .g-wide, .gallery .g-sm, .gallery .g-md { grid-column: span 1; grid-row: span 1; }
  .gallery .g-tall { grid-row: span 2; }
  .buy-bar { display: flex; }
  .cursor-dot, .cursor-ring { display: none; }
}
/* Header compacto en pantallas muy pequeñas (los controles inyectados) */
@media (max-width: 400px) {
  .header { padding-inline: 0.8rem; }
  .brand { font-size: 0.95rem; }
  .lks-toggle { width: 36px !important; height: 36px !important; margin-left: 0.3rem !important; }
  .lks-toggle svg { width: 19px !important; height: 19px !important; }
  .lk-pts-chip { margin-left: 0.3rem !important; padding: 0.26rem 0.5rem !important; font-size: 0.66rem !important; }
  .lk-cart-toggle { margin-left: 0.3rem !important; width: 36px !important; }
}

@media (max-width: 560px) {
  :root { --maxw: 100%; }
  .collection-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .meters { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .pf-hero-meta { gap: 1.5rem; }
  .scroll-cue { display: none; }   /* en móvil estorba; el usuario ya sabe deslizar */
  .home-hero-actions, .pf-hero-actions, .bf-actions { width: 100%; }
  .home-hero-actions .btn, .bf-actions .btn { flex: 1 1 auto; }
}

/* ============================================================
   ADAPTIVE PERFORMANCE ENGINE — modo low power (perf-low)
   La estética se mantiene; se apagan los efectos más costosos.
   ============================================================ */
.perf-low .grain { display: none; }                      /* blend-mode caro en GPUs débiles */
.perf-low .pf-ambiente { animation: none; }              /* sin Ken Burns */
.perf-low .btn::before { display: none; }                /* sin destello */
.perf-low .brand, .perf-low .footer-brand,
.perf-low .footer-brand::before { animation: none; }
.perf-low .lkp-medal .halo { animation: none; }
.perf-low .scroll-cue .bar::after { animation: none; }
.perf-low .header.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }

/* Accesibilidad: foco visible global */
:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 3px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 10000; background: var(--accent); color: #0a0a0b; padding: 0.8em 1.4em; letter-spacing: 0.1em; }
.skip-link:focus { left: 0; }

/* ===== Reseñas ===== */
.resenas { max-width: 880px; }
.rs-stars { display: inline-flex; gap: 2px; color: var(--accent); vertical-align: middle; }
.rs-star { width: 1.05em; height: 1.05em; }
.rs-star:not(.on) { color: rgba(236,230,218,0.20); }
.rs-empty-sum { color: var(--ivory-dim); font-family: var(--display); font-style: italic; font-size: var(--step-1); }
.rs-avg { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.rs-avg-num { font-family: var(--display); font-size: clamp(2.4rem,6vw,3.4rem); line-height: 1; color: var(--ivory); }
.rs-avg .rs-stars { font-size: 1.25rem; }
.rs-count { color: var(--ivory-mute); font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; }

.rs-list { margin-top: 2.2rem; display: grid; gap: 1rem; }
.rs-card { border: 1px solid rgba(236,230,218,0.10); border-radius: 4px; padding: 1.3rem 1.4rem; background: rgba(236,230,218,0.015); }
.rs-card-h { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.rs-card-h .rs-stars { font-size: 0.95rem; }
.rs-date { color: var(--ivory-mute); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.rs-card-t { color: var(--ivory); font-size: 1.05rem; font-weight: 500; margin: 0.7rem 0 0.3rem; }
.rs-card-x { color: var(--ivory-dim); line-height: 1.5; margin: 0.5rem 0 0; white-space: pre-line; }
.rs-card-f { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.9rem; font-size: 0.78rem; }
.rs-author { color: var(--ivory); letter-spacing: 0.04em; }
.rs-rol { color: var(--accent-soft); border: 1px solid rgba(200,162,75,0.4); border-radius: 999px; padding: 0.1em 0.7em; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; }
.rs-verified { display: inline-flex; align-items: center; gap: 0.35em; color: #6fbf83; font-size: 0.72rem; letter-spacing: 0.04em; margin-left: auto; }
.rs-verified svg { width: 1.05em; height: 1.05em; }

/* Zona de escritura */
.rs-mine { margin-top: 2.2rem; }
.rs-cta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; padding: 1.4rem 1.5rem; border: 1px dashed rgba(236,230,218,0.16); border-radius: 4px; }
.rs-cta p { color: var(--ivory-dim); margin: 0; }
.rs-note { color: var(--ivory-mute); font-size: 0.9rem; padding: 1.1rem 1.3rem; border: 1px solid rgba(236,230,218,0.08); border-radius: 4px; }
.rs-mine-box { border: 1px solid rgba(200,162,75,0.28); border-radius: 4px; padding: 1.3rem 1.4rem; background: rgba(200,162,75,0.04); }
.rs-mine-h { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.6rem; }
.rs-mine-h strong { color: var(--ivory); font-weight: 500; }
.rs-badge { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.2em 0.7em; border-radius: 999px; }
.rs-badge.pend { color: #d9b25c; background: rgba(217,178,92,0.12); }
.rs-badge.ok { color: #6fbf83; background: rgba(111,191,131,0.12); }
.rs-badge.no { color: #d08a7a; background: rgba(208,138,122,0.12); }
.rs-mine-actions { display: flex; gap: 1.2rem; margin-top: 0.9rem; }
.rs-link { background: none; border: none; color: var(--accent-soft); cursor: pointer; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0; }
.rs-link:hover { color: var(--ivory); }
.rs-link.danger { color: var(--ivory-mute); }
.rs-link.danger:hover { color: #d08a7a; }

.rs-form { border: 1px solid rgba(236,230,218,0.12); border-radius: 4px; padding: 1.5rem; display: grid; gap: 1rem; }
.rs-form-h { color: var(--ivory); font-family: var(--display); font-size: 1.4rem; margin: 0; }
.rs-rate { display: inline-flex; gap: 0.2rem; }
.rs-rate-b { background: none; border: none; cursor: pointer; color: var(--accent); padding: 0.1rem; line-height: 0; }
.rs-rate-b .rs-star { width: 1.9rem; height: 1.9rem; transition: transform 0.15s; }
.rs-rate-b:hover .rs-star { transform: scale(1.12); }
.rs-input { width: 100%; background: #16161a; border: 1px solid rgba(236,230,218,0.14); color: var(--ivory); padding: 0.8em 0.95em; font-family: var(--sans); font-size: 0.95rem; border-radius: 3px; }
.rs-input:focus { outline: none; border-color: var(--accent-soft); }
.rs-area { resize: vertical; min-height: 90px; line-height: 1.5; }
.rs-form-actions { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
.rs-form-note { color: var(--ivory-mute); font-size: 0.74rem; margin: 0; }

.rs-toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 16px); z-index: 9800; background: #16161a; border: 1px solid rgba(200,162,75,0.5); color: var(--ivory); padding: 0.85em 1.4em; border-radius: 4px; font-size: 0.9rem; box-shadow: 0 10px 40px rgba(0,0,0,0.5); opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; max-width: 90vw; text-align: center; }
.rs-toast.show { opacity: 1; transform: translate(-50%, 0); }
.rs-toast.err { border-color: rgba(208,138,122,0.6); }

/* ===== Lightbox de la galería (ver foto en grande) ===== */
.pf-lb { position: fixed; inset: 0; z-index: 9900; background: rgba(8,8,9,0.95); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.pf-lb.open { opacity: 1; pointer-events: auto; }
.pf-lb-stage { width: 90vw; height: 86vh; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.pf-lb-img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6)); animation: pflbin 0.35s ease; }
@keyframes pflbin { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
.pf-lb-close { position: absolute; top: 1.2rem; right: 1.4rem; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(236,230,218,0.25); background: rgba(10,10,11,0.6); color: var(--ivory); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.pf-lb-close:hover { border-color: var(--ivory); }
.pf-lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(200,162,75,0.5); background: rgba(10,10,11,0.7); color: var(--accent-soft); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.3s, box-shadow 0.3s; }
.pf-lb-nav:hover { border-color: var(--accent-soft); box-shadow: 0 0 16px var(--accent-glow); }
.pf-lb-nav.prev { left: 1.4rem; } .pf-lb-nav.next { right: 1.4rem; }
.pf-lb-nav svg, .pf-lb-close svg { width: 20px; height: 20px; }
.pf-lb-nav.off { opacity: 0.25; pointer-events: none; }
.pf-lb-single .pf-lb-nav, .pf-lb-single .pf-lb-count { display: none; }
.pf-lb-count { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: var(--ivory-mute); font-size: 0.8rem; letter-spacing: 0.16em; }
@media (max-width: 600px) { .pf-lb-nav { width: 42px; height: 42px; } .pf-lb-nav.prev { left: 0.6rem; } .pf-lb-nav.next { right: 0.6rem; } .pf-lb-stage { width: 94vw; height: 80vh; } }

/* Botón compartir (héroe del perfume) */
.lk-share-btn { display: inline-flex; align-items: center; gap: 0.5em; background: none; border: 1px solid rgba(236,230,218,0.18); color: var(--ivory-dim); padding: 0.7em 1.1em; border-radius: 3px; cursor: pointer; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; transition: border-color 0.3s, color 0.3s; }
.lk-share-btn:hover { border-color: var(--accent); color: var(--ivory); }
.lk-share-btn svg { width: 1.05em; height: 1.05em; }

/* ===== La Tienda (catálogo filtrable) ===== */
.tienda-hero { text-align: center; padding: clamp(7rem, 14vh, 10rem) 0 clamp(2rem, 4vw, 3rem); }
.tienda-title { font-family: var(--display); font-size: clamp(2.6rem, 1.8rem + 4vw, 5rem); line-height: 1; margin-top: 0.8rem; color: var(--ivory); }
.tienda-sub { max-width: 48ch; margin: 1rem auto 0; }
.tienda-filtros { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 1.2rem 1.6rem; padding: 1.4rem 1.5rem; border: 1px solid var(--line); border-radius: 6px; background: rgba(236,230,218,0.015); margin-bottom: 1.6rem; }
.tf-row.tf-buscar { display: flex; align-items: center; gap: 0.6rem; flex: 1 1 240px; border-bottom: 1px solid rgba(236,230,218,0.18); color: var(--ivory-mute); padding-bottom: 0.3rem; }
.tf-buscar svg { width: 18px; height: 18px; flex: none; }
.tf-input { flex: 1; background: none; border: none; color: var(--ivory); font-family: var(--sans); font-size: 0.95rem; outline: none; padding: 0.3em 0; min-width: 0; }
.tf-input::placeholder { color: var(--ivory-mute); }
.tf-group { display: flex; flex-direction: column; gap: 0.5rem; }
.tf-label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ivory-mute); }
.tf-select { background: #16161a; border: 1px solid rgba(236,230,218,0.14); color: var(--ivory); padding: 0.6em 0.9em; font-family: var(--sans); font-size: 0.9rem; border-radius: 4px; min-width: 180px; cursor: pointer; }
.tf-select:focus { outline: none; border-color: var(--accent-soft); }
.tf-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tf-chip { background: none; border: 1px solid rgba(236,230,218,0.16); color: var(--ivory-dim); padding: 0.5em 1em; border-radius: 999px; font-size: 0.78rem; cursor: pointer; transition: border-color 0.25s, color 0.25s, background 0.25s; }
.tf-chip:hover { color: var(--ivory); border-color: rgba(236,230,218,0.4); }
.tf-chip.is-on { background: var(--accent); border-color: var(--accent); color: #0a0a0b; }
.tienda-barra { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.tienda-count { color: var(--ivory-mute); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; }
.tienda-limpiar { background: none; border: none; color: var(--accent-soft); cursor: pointer; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }
.tienda-limpiar:hover { color: var(--ivory); }
.tienda-empty { color: var(--ivory-mute); text-align: center; padding: 3rem 0; font-family: var(--display); font-style: italic; font-size: 1.3rem; }
.tienda-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.shop-card { position: relative; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: linear-gradient(180deg, rgba(236,230,218,0.02), transparent); text-decoration: none; color: inherit; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.shop-card:hover { border-color: color-mix(in srgb, var(--c-accent, #c8a24b) 55%, transparent); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
.sc-img { position: relative; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.sc-img::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--c-accent, #c8a24b) 30%, transparent) 0%, transparent 65%); filter: blur(20px); }
.sc-img img { position: relative; max-height: 100%; max-width: 82%; object-fit: contain; filter: drop-shadow(0 14px 20px rgba(0,0,0,0.5)); transition: transform 0.4s var(--ease); }
.shop-card:hover .sc-img img { transform: scale(1.05); }
.sc-body { padding: 0 1.2rem 1.2rem; display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.sc-brand { color: var(--accent); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; }
.sc-name { font-family: var(--display); font-size: 1.15rem; line-height: 1.1; color: var(--ivory); margin: 0.15rem 0; }
.sc-note { color: var(--ivory-mute); font-size: 0.76rem; margin: 0; }
.sc-foot { display: flex; align-items: baseline; justify-content: space-between; margin-top: auto; padding-top: 0.8rem; }
.sc-price { font-family: var(--display); font-size: 1.05rem; color: var(--ivory); }
.sc-price s { color: var(--ivory-mute); font-size: 0.8rem; margin-right: 0.2em; }
.sc-cta { color: var(--accent-soft); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.sc-badge { position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3em 0.7em; border-radius: 999px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.sc-badge.oferta { color: #e6a45c; background: rgba(230,164,92,0.14); border: 1px solid rgba(230,164,92,0.4); }
.sc-badge.premium { color: var(--accent-soft); background: rgba(200,162,75,0.12); border: 1px solid rgba(200,162,75,0.4); }
.sc-badge.corona { color: #f0d98a; background: rgba(240,217,138,0.14); border: 1px solid rgba(240,217,138,0.45); }
@media (max-width: 540px) { .tienda-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; } .sc-name { font-size: 1rem; } .sc-img { padding: 0.8rem; } }

/* ===== Ofertas del momento (Tienda) ===== */
.ofertas-sec { padding-block: clamp(1rem, 3vw, 2rem) clamp(0.5rem, 2vw, 1rem); }
.ofertas-sec .wrap { border: 1px solid rgba(230,164,92,0.3); border-radius: 10px; padding: clamp(1.4rem,3vw,2.2rem); background: radial-gradient(120% 100% at 0% 0%, rgba(230,164,92,0.08), transparent 60%); }
.ofertas-head { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.ofertas-eyebrow { display: inline-flex; align-items: center; gap: 0.5em; color: #e6a45c; font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.ofertas-eyebrow .lkic { width: 1.2em; height: 1.2em; }
.ofertas-sub { color: var(--ivory-dim); font-size: 0.85rem; margin: 0; }
.ofertas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.oferta-card { position: relative; display: flex; flex-direction: column; border: 1px solid rgba(230,164,92,0.35); border-radius: 8px; overflow: hidden; background: rgba(230,164,92,0.04); text-decoration: none; color: inherit; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.oferta-card:hover { transform: translateY(-4px); border-color: rgba(230,164,92,0.7); box-shadow: 0 16px 38px rgba(0,0,0,0.45), 0 0 24px rgba(230,164,92,0.18); }
.of-badge { position: absolute; top: 0.7rem; right: 0.7rem; z-index: 2; background: #e6a45c; color: #1a1109; font-weight: 600; font-size: 0.74rem; letter-spacing: 0.04em; padding: 0.3em 0.6em; border-radius: 999px; }
.of-img { position: relative; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.of-img::before { content: ""; position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--c-accent,#c8a24b) 32%, transparent), transparent 65%); filter: blur(18px); }
.of-img img { position: relative; max-height: 100%; max-width: 80%; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,0.5)); }
.of-body { padding: 0 1rem 1rem; }
.of-brand { color: var(--accent); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; }
.of-name { font-family: var(--display); font-size: 1.05rem; line-height: 1.1; color: var(--ivory); margin: 0.2rem 0 0.5rem; }
.of-prices s { color: var(--ivory-mute); font-size: 0.85rem; margin-right: 0.4em; }
.of-prices strong { font-family: var(--display); font-weight: 400; color: #e6a45c; font-size: 1.2rem; }
@media (max-width: 540px) { .ofertas-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; } }

/* ===== EXÓTICOS (portada) ===== */
.sr-anchor { display: block; height: 0; scroll-margin-top: 90px; }
.exoticos-home { position: relative; overflow: hidden; }
.exo-aura { position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 50% at 50% -5%, rgba(200,162,75,0.16), transparent 70%),
    radial-gradient(40% 60% at 100% 110%, rgba(200,162,75,0.10), transparent 70%); }
.exoticos-home .wrap { position: relative; z-index: 1; }
.exo-head { text-align: center; max-width: 56ch; margin: 0 auto clamp(1.6rem, 4vw, 2.6rem); }
.exo-eyebrow { display: inline-flex; align-items: center; gap: 0.5em; color: var(--gold-soft);
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.9rem; }
.exo-eyebrow .ico { width: 1.2em; height: 1.2em; color: var(--gold); }
.exoticos-home h2 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.2rem); line-height: 1; margin: 0;
  background: linear-gradient(180deg, var(--ivory), var(--gold-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.exo-sub { color: var(--ivory-dim); font-size: 1rem; margin: 0.9rem auto 0; max-width: 48ch; }

.exo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: clamp(0.8rem, 2vw, 1.3rem); }
.exo-card { position: relative; display: flex; flex-direction: column; text-decoration: none; color: inherit;
  border: 1px solid rgba(200,162,75,0.28); border-radius: 10px; overflow: hidden;
  background: linear-gradient(180deg, rgba(200,162,75,0.05), rgba(255,255,255,0.015));
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s; }
.exo-card:hover { transform: translateY(-6px); border-color: rgba(200,162,75,0.65);
  box-shadow: 0 20px 46px rgba(0,0,0,0.5), 0 0 30px rgba(200,162,75,0.16); }
.exo-tag { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: #14110a; background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding: 0.32em 0.7em; border-radius: 999px; }
.exo-img { position: relative; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.exo-img::before { content: ""; position: absolute; width: 74%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--c-accent,#c8a24b) 36%, transparent), transparent 65%); filter: blur(20px); }
.exo-img img { position: relative; max-height: 100%; max-width: 82%; object-fit: contain; filter: drop-shadow(0 14px 22px rgba(0,0,0,0.55)); transition: transform 0.5s var(--ease); }
.exo-card:hover .exo-img img { transform: translateY(-4px) scale(1.04); }
.exo-body { padding: 0 1.1rem 1.2rem; }
.exo-brand { color: var(--gold-soft); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; }
.exo-name { font-family: var(--display); font-weight: 500; font-size: 1.15rem; line-height: 1.08; color: var(--ivory); margin: 0.25rem 0 0.4rem; }
.exo-note { color: var(--ivory-mute); font-size: 0.78rem; margin: 0 0 0.7rem; }
.exo-foot-row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }
.exo-price { font-family: var(--display); font-weight: 600; color: var(--gold-soft); font-size: 1.18rem; }
.exo-go { color: var(--ivory-dim); font-size: 0.78rem; letter-spacing: 0.04em; transition: color 0.3s; }
.exo-card:hover .exo-go { color: var(--gold-soft); }
.exo-foot { text-align: center; margin-top: clamp(1.6rem, 4vw, 2.4rem); }
.exo-cta { display: inline-block; text-decoration: none; color: var(--gold-soft);
  font-size: 0.92rem; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(200,162,75,0.5); border-radius: 999px; padding: 0.9em 2.2em;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s; }
.exo-cta:hover { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #14110a; border-color: transparent; box-shadow: 0 12px 30px rgba(200,162,75,0.22); }
@media (max-width: 540px) { .exo-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; } .exo-img { padding: 0.8rem; } .exo-body { padding: 0 0.7rem 0.9rem; } }

/* ===== ÉLITE SUPREMOS / PRÓXIMAMENTE (portada) ===== */
.elite-sec { position: relative; overflow: hidden; }
.elite-aura { position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(205,183,138,0.10), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.015), transparent 30%); }
.elite-sec .wrap { position: relative; z-index: 1; }
.elite-eyebrow { color: #cdb78a; }
.elite-eyebrow .ico { color: #cdb78a; }
.elite-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(244px, 1fr)); gap: clamp(0.8rem, 2vw, 1.3rem); }
.elite-card { position: relative; display: flex; flex-direction: column; min-height: 220px; overflow: hidden;
  padding: 1.5rem 1.4rem 1.4rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.006));
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s; }
.elite-card::before { content: "\2726"; position: absolute; top: -0.3rem; right: 0.4rem; font-size: 5.5rem; line-height: 1;
  color: color-mix(in srgb, var(--c-accent, #cdb78a) 12%, transparent); pointer-events: none; }
.elite-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--c-accent,#cdb78a) 55%, transparent);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 26px color-mix(in srgb, var(--c-accent,#cdb78a) 14%, transparent); }
.elite-tag { align-self: flex-start; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: var(--ivory-dim); border: 1px solid rgba(255,255,255,0.18); padding: 0.3em 0.7em; border-radius: 999px; margin-bottom: 1.1rem; }
.elite-origin { display: block; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-accent, #cdb78a); margin-bottom: 0.35rem; }
.elite-name { position: relative; z-index: 1; font-family: var(--display); font-weight: 500; font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem); line-height: 1.04; margin: 0 0 0.6rem;
  background: linear-gradient(180deg, var(--ivory), color-mix(in srgb, var(--c-accent,#cdb78a) 70%, var(--ivory)));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.elite-note { color: var(--ivory-mute); font-size: 0.82rem; line-height: 1.5; margin: 0 0 1.2rem; flex: 1 1 auto; }
.elite-notify { align-self: flex-start; text-decoration: none; color: var(--gold-soft); font-size: 0.8rem; letter-spacing: 0.04em;
  border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s; }
.elite-notify:hover { color: var(--gold); border-color: color-mix(in srgb, var(--gold) 50%, transparent); }
@media (max-width: 540px) { .elite-grid { grid-template-columns: 1fr; } .elite-card { min-height: 0; } }
