/* ==========================================================================
   Zeøna Life — Tienda de reserva
   Sistema de diseño basado en la hoja de estilos oficial + tokens del tema Impact
   ========================================================================== */

:root {
  /* Paleta */
  --zeona-blue: #1E5064;
  --zeona-ink: #123746;
  --zeona-turquoise: #32C8C8;
  --zeona-coral: #FA645A;
  --zeona-yellow: #FAC846;
  --zeona-purple: #8C64DC;
  --zeona-blush: #FAB4AA;
  --zeona-aqua: #6EBEC8;
  --zeona-white: #F8F6F3;
  --zeona-card: #FDFCFA;
  --zeona-grey: #B8B2B0;
  /* Versiones oscuras de la paleta, para texto sobre foto clara */
  --zeona-coral-dark: #8C2F28;
  --zeona-purple-dark: #543092;
  --zeona-teal-dark: #0F4F53;
  --border: rgba(30, 80, 100, 0.12);

  /* Tipografía */
  --font-display: "Nunito Sans", "Quicksand", sans-serif;
  --font-body: "Manrope", "Inter", sans-serif;

  /* Forma */
  --radius-block: 24px;
  --radius-lg: 32px;
  --radius-input: 10px;
  --radius-pill: 999px;

  /* Sombra */
  --shadow-sm: 0 2px 8px rgba(30, 80, 100, .08);
  --shadow: 0 5px 15px rgba(30, 80, 100, .10);
  --shadow-md: 0 5px 30px rgba(30, 80, 100, .12);
  --shadow-block: 0 18px 50px rgba(30, 80, 100, .14);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--zeona-blue);
  background: var(--zeona-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  padding: 15px 32px; border-radius: var(--radius-pill);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--coral { background: var(--zeona-coral); color: #fff; }
.btn--coral:hover { background: #f4544a; }
.btn--turquoise { background: var(--zeona-turquoise); color: var(--zeona-ink); }
.btn--blue { background: var(--zeona-blue); color: #fff; }
.btn--ghost { background: transparent; color: var(--zeona-blue); box-shadow: inset 0 0 0 2px var(--zeona-blue); }
.btn--ghost:hover { background: var(--zeona-blue); color: #fff; }
.btn--light { background: #fff; color: var(--zeona-blue); }
.btn--sm { padding: 10px 22px; font-size: 14px; }

/* ---------- Barra anuncio ---------- */
.announcement {
  background: var(--zeona-blue); color: var(--zeona-white);
  text-align: center; font-size: 13.5px; font-weight: 600;
  padding: 9px var(--gutter);
}
.announcement strong { color: var(--zeona-yellow); font-weight: 800; }


/* ---------- Selector de idioma ---------- */
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 34px; padding-inline: 10px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: .04em; color: var(--zeona-blue);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.lang-switch:hover { background: var(--zeona-blue); border-color: var(--zeona-blue); color: #fff; }
@media (max-width: 560px) { .lang-switch { min-width: 34px; height: 30px; font-size: 12px; padding-inline: 8px; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248, 246, 243, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header__logo img { height: 30px; width: auto; }
.site-nav { display: flex; gap: 4px; }
.site-nav a {
  font-weight: 600; font-size: 15px; padding: 9px 15px; border-radius: var(--radius-pill);
  transition: background .2s ease, color .2s ease;
}
.site-nav a:hover { background: rgba(30, 80, 100, .07); }
.site-nav a.is-active { background: var(--zeona-blue); color: #fff; }
.site-header__actions { display: flex; align-items: center; gap: 12px; }

.reserva-toggle {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: var(--zeona-coral); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 800; font-size: 14.5px;
  padding: 11px 22px; border-radius: var(--radius-pill);
  transition: transform .2s ease, box-shadow .2s ease;
}
.reserva-toggle:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.reserva-toggle__count {
  background: var(--zeona-yellow); color: var(--zeona-ink);
  min-width: 22px; height: 22px; padding-inline: 6px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 900;
}

.nav-burger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-burger span { width: 24px; height: 2.5px; background: var(--zeona-blue); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: min(88vh, 780px);
  display: flex; align-items: flex-end;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  opacity: 0; transition: opacity 1s ease;
}
.hero__bg img.is-active { opacity: 1; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 55, 70, .5) 0%, rgba(18, 55, 70, .22) 42%, rgba(18, 55, 70, 0) 68%),
    linear-gradient(to top, rgba(18, 55, 70, .82) 0%, rgba(18, 55, 70, .25) 45%, rgba(18, 55, 70, 0) 70%);
}
.hero__content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--container); margin-inline: auto; padding: 0 var(--gutter) clamp(48px, 8vh, 90px);
  color: #fff;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .16); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 700; letter-spacing: .02em;
  margin-bottom: 22px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--zeona-yellow); }
.hero h1 {
  font-size: clamp(40px, 6.5vw, 76px); font-weight: 900; color: #fff;
  max-width: 13ch; margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--zeona-yellow); }
.hero__sub { font-size: clamp(17px, 2vw, 21px); max-width: 52ch; margin-bottom: 30px; color: rgba(255, 255, 255, .92); }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__dots {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 20px; z-index: 3;
  display: flex; gap: 10px;
}
.hero__dots button {
  width: 11px; height: 11px; padding: 0; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, .45); cursor: pointer;
  transition: background .3s ease, width .3s ease;
}
.hero__dots button:hover { background: rgba(255, 255, 255, .75); }
.hero__dots button.is-active { background: #fff; width: 28px; border-radius: var(--radius-pill); }

/* ---------- Hero de producto (línea visual nueva) ---------- */
.hero-product {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #FDF9F2 0%, #F7EEE1 60%, #F3E7D6 100%);
}
.hero-product::before, .hero-product::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-product::before { width: 420px; height: 420px; background: rgba(50, 200, 200, .10); top: -140px; right: -120px; }
.hero-product::after { width: 260px; height: 260px; background: rgba(250, 200, 70, .14); bottom: -90px; left: -70px; }
.hero-product__grid {
  position: relative; z-index: 1;
  max-width: var(--container); margin-inline: auto;
  padding: clamp(48px, 7vw, 100px) var(--gutter);
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-product__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(30, 80, 100, .1);
  box-shadow: var(--shadow-sm);
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 700; letter-spacing: .02em;
  margin-bottom: 22px;
}
.hero-product__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--zeona-coral); }
.hero-product h1 {
  font-size: clamp(40px, 6vw, 72px); font-weight: 900;
  max-width: 13ch; margin-bottom: 18px;
}
.hero-product h1 em { font-style: normal; color: var(--zeona-coral); }
.hero-product__sub { font-size: clamp(16.5px, 2vw, 20px); max-width: 52ch; margin-bottom: 30px; opacity: .85; }
.hero-product__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-product__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-block); background: #fff;
}
.hero-product__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-product__badge {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: var(--zeona-coral); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 13.5px;
  padding: 8px 18px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--zeona-yellow); color: var(--zeona-ink);
  overflow: hidden; white-space: nowrap; padding: 13px 0;
  border-block: 1px solid rgba(18, 55, 70, .12);
}
.marquee__track { display: inline-flex; gap: 0; animation: marquee 28s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-weight: 800; font-size: 15.5px;
  display: inline-flex; align-items: center; gap: 26px; padding-inline: 13px;
}
.marquee .o { color: var(--zeona-coral); font-weight: 900; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Secciones ---------- */
.section { padding-block: clamp(52px, 5.5vw, 80px); }
.section--card { background: var(--zeona-card); }
.section--blue { background: var(--zeona-blue); color: var(--zeona-white); }
.section-head { max-width: 720px; margin-bottom: clamp(30px, 3.6vw, 44px); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 800;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--zeona-coral); margin-bottom: 12px;
}
.section--blue .eyebrow { color: var(--zeona-yellow); }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.section-head p { font-size: 17.5px; opacity: .85; }

/* ---------- Colecciones ---------- */
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.collection-card {
  position: relative; border-radius: var(--radius-block); overflow: hidden;
  aspect-ratio: 4 / 5; display: flex; align-items: flex-end;
  box-shadow: var(--shadow); transition: transform .35s ease, box-shadow .35s ease;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-block); }
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.collection-card:hover img { transform: scale(1.05); }
.collection-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18, 55, 70, .75), rgba(18, 55, 70, 0) 55%);
}
.collection-card__body { position: relative; z-index: 2; padding: 26px; color: #fff; }
.collection-card__body h3 {
  font-size: 26px; margin-bottom: 6px;
  color: var(--t, #fff); text-shadow: var(--ts, none);
}
.collection-card__body p { font-size: 14.5px; opacity: .9; margin-bottom: 14px; max-width: 30ch; }
.collection-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 14.5px;
  background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(6px);
  padding: 9px 20px; border-radius: var(--radius-pill); transition: background .25s ease;
}
.collection-card:hover .collection-card__cta { background: var(--zeona-coral); border-color: var(--zeona-coral); }

/* ---------- Product cards ---------- */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 24px; }
.product-card {
  background: #fff; border-radius: var(--radius-block); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(30, 80, 100, .06);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-block); }
.product-card__media { position: relative; aspect-ratio: 1; overflow: hidden; background: #fff; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__media img { transform: scale(1.06); }
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--zeona-purple); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: .04em;
  padding: 6px 14px; border-radius: var(--radius-pill);
}
.badge--coral { background: var(--zeona-coral); }
.badge--yellow { background: var(--zeona-yellow); color: var(--zeona-ink); }
.product-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card__vendor { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--zeona-grey); }
.product-card__title { font-size: 19px; }
.product-card__desc { font-size: 14px; opacity: .75; flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; gap: 10px; }
.product-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.product-card__actions .btn { width: 100%; padding-inline: 10px; white-space: nowrap; }
.product-card__actions .btn--coral {
  box-shadow: 0 6px 16px rgba(250, 100, 90, .35);
  font-weight: 900; letter-spacing: .01em;
}
.product-card__actions .btn--coral:hover { box-shadow: 0 8px 22px rgba(250, 100, 90, .45); }
.product-card__price { font-family: var(--font-display); font-weight: 900; font-size: 20px; }
.product-card__price small { display: block; font-family: var(--font-body); font-size: 11.5px; font-weight: 600; color: var(--zeona-coral); }

/* ---------- Packs ---------- */
.packs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pack-card {
  display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: stretch;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease;
}
.pack-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-block); }
.pack-card__media { position: relative; min-height: 260px; }
.pack-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pack-card__body { padding: 30px 28px; display: flex; flex-direction: column; gap: 10px; }
.pack-card__body h3 { font-size: 24px; }
.pack-card__body ul { list-style: none; font-size: 14.5px; display: grid; gap: 6px; margin-block: 4px; }
.pack-card__body li { display: flex; gap: 9px; align-items: baseline; }
.pack-card__body li::before { content: "●"; font-size: 9px; color: var(--zeona-turquoise); }
.pack-card__foot { margin-top: auto; display: flex; align-items: center; gap: 16px; }
.pack-card__price { font-family: var(--font-display); font-weight: 900; font-size: 26px; }
.pack-card__save {
  background: rgba(50, 200, 200, .16); color: #1a7d7d;
  font-size: 12.5px; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill);
}

/* ---------- Pasos reserva ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: paso; }
.step-card {
  background: #fff; border-radius: var(--radius-block); padding: 34px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(30, 80, 100, .06);
  position: relative;
}
.step-card__num {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 22px; color: #fff;
  margin-bottom: 18px;
}
.step-card:nth-child(1) .step-card__num { background: var(--zeona-coral); }
.step-card:nth-child(2) .step-card__num { background: var(--zeona-turquoise); }
.step-card:nth-child(3) .step-card__num { background: var(--zeona-purple); }
.step-card h3 { font-size: 20px; margin-bottom: 8px; }
.step-card p { font-size: 15px; opacity: .8; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat h3 { font-size: clamp(38px, 5vw, 56px); font-weight: 900; color: var(--zeona-yellow); }
.stat p { font-size: 15px; opacity: .85; max-width: 24ch; margin-inline: auto; }
.stat:nth-child(2) h3 { color: var(--zeona-turquoise); }
.stat:nth-child(3) h3 { color: var(--zeona-coral); }
.stat:nth-child(4) h3 { color: var(--zeona-blush); }

/* ---------- Split (imagen + texto) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-block); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body .eyebrow { margin-bottom: 10px; }
.split__body h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.split__body p { font-size: 16.5px; opacity: .85; margin-bottom: 14px; }
.split__body .btn { margin-top: 12px; }

.feature-list { list-style: none; display: grid; gap: 12px; margin-block: 18px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.feature-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(50, 200, 200, .18); color: #17807f;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; margin-top: 2px;
}

/* ---------- Rituales ---------- */
.rituals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ritual-card {
  border-radius: var(--radius-lg); padding: 36px 32px;
  background: #fff; box-shadow: var(--shadow-sm); border: 1px solid rgba(30, 80, 100, .06);
}
.ritual-card--calma { background: linear-gradient(145deg, #e9f7f7 0%, #fdfcfa 60%); }
.ritual-card--florece { background: linear-gradient(145deg, #f3edfc 0%, #fdfcfa 60%); }
.ritual-card__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.ritual-card--calma .ritual-card__tag { background: rgba(50, 200, 200, .18); color: #17807f; }
.ritual-card--florece .ritual-card__tag { background: rgba(140, 100, 220, .15); color: var(--zeona-purple); }
.ritual-card h3 { font-size: 26px; margin-bottom: 6px; }
.ritual-card__meta { font-size: 13.5px; font-weight: 700; color: var(--zeona-grey); margin-bottom: 16px; }
.ritual-card ol { list-style: none; display: grid; gap: 9px; counter-reset: rit; }
.ritual-card ol li { display: flex; gap: 12px; align-items: baseline; font-size: 15px; counter-increment: rit; }
.ritual-card ol li::before {
  content: counter(rit, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 900; font-size: 13px; opacity: .45;
}
.ritual-card ol li strong { font-weight: 700; }

/* ---------- Zonas / tabla ciencia ---------- */
.zonas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.zonas-grid--4 { grid-template-columns: repeat(4, 1fr); }
.zona-card {
  background: #fff; border-radius: var(--radius-block); padding: 26px 24px;
  border-top: 6px solid var(--zeona-turquoise);
  box-shadow: var(--shadow-sm);
}
.zona-card h4 { font-size: 17px; margin-bottom: 6px; }
.zona-card p { font-size: 14px; opacity: .78; }
.zona-card small { display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--zeona-grey); margin-bottom: 8px; }

/* ---------- Hotspots (anatomía interactiva, full-bleed) ---------- */
.hotspot-hero { position: relative; }
.hotspot-hero__frame { position: relative; width: 100%; }
.hotspot-hero__stage { position: relative; }
.hotspot-hero__frame > img { width: 100%; display: block; }
.hotspot-hero__stage::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(248, 246, 243, .55) 0%, rgba(248, 246, 243, .34) 34%, rgba(248, 246, 243, 0) 62%);
}
.hotspot-hero__text {
  position: absolute; inset: 0; display: flex; align-items: center; pointer-events: none;
}
.hotspot-hero__text .container { width: 100%; }
.hotspot-hero__text-inner {
  max-width: 460px; pointer-events: auto;
  /* Panel apoyado sobre la foto: la textura del sofá hacía ilegible el texto
     por mucho que se reforzara el degradado. */
  background: rgba(248, 246, 243, .94);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
  backdrop-filter: blur(8px) saturate(1.05);
  border-radius: 26px; padding: 34px 36px;
  box-shadow: 0 20px 50px rgba(30, 80, 100, .18);
}
.hotspot-hero__text-inner h2 { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 16px; }
.hotspot-hero__text-inner p { font-size: clamp(14.5px, 1.3vw, 17px); opacity: .88; margin-bottom: 12px; }
.hotspot-hero__text-inner p:last-of-type { margin-bottom: 0; }
.hotspot-hero__zonas { display: none; }
/* El aviso de deslizar solo tiene sentido cuando la imagen desborda (movil) */
.hotspot-hint { display: none; }
/* Variante espejo: almohada a la izquierda, texto a la derecha */
.hotspot-hero--reverse .hotspot-hero__stage::before {
  background: linear-gradient(270deg, rgba(248, 246, 243, .55) 0%, rgba(248, 246, 243, .34) 34%, rgba(248, 246, 243, 0) 62%);
}
.hotspot-hero--reverse .hotspot-hero__text .container { display: flex; justify-content: flex-end; }
/* Variante sin texto superpuesto (home, imagen doble) */
.hotspot-hero--plain .hotspot-hero__stage::before { display: none; }
.hotspot {
  position: absolute; z-index: 3; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; color: var(--zeona-coral);
  font-size: 19px; font-weight: 700; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(30, 80, 100, .3);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.hotspot::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid rgba(250, 100, 90, .45);
  animation: hotspot-pulse 2.2s ease-out infinite;
}
@keyframes hotspot-pulse {
  0% { transform: scale(.7); opacity: 1; }
  70%, 100% { transform: scale(1.25); opacity: 0; }
}
.hotspot:hover { transform: translate(-50%, -50%) scale(1.12); }
.hotspot.is-open { background: var(--zeona-coral); color: #fff; }
.hotspot.is-open::after { animation: none; opacity: 0; }
.hotspot-card {
  position: absolute; z-index: 4; width: min(300px, 86%);
  background: #fff; border-radius: 18px; padding: 18px 20px;
  box-shadow: var(--shadow-block); text-align: left;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
}
.hotspot-card.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .25s ease, transform .25s ease, visibility 0s;
}
.hotspot-card h4 { font-size: 16.5px; margin-bottom: 6px; padding-right: 24px; }
.hotspot-card p { font-size: 13.5px; opacity: .82; margin: 0; }
.hotspot-card__close {
  position: absolute; top: 10px; right: 12px; background: none; border: none;
  font-size: 20px; line-height: 1; cursor: pointer; color: var(--zeona-grey);
}
@media (max-width: 820px) {
  /* Tarjeta mas estrecha = otro recorte de la foto = otro fondo bajo el
     titulo. Las colecciones que lo necesitan traen su color alternativo. */
  .collection-card__body h3 { color: var(--tm, var(--t, #fff)); text-shadow: var(--tms, var(--ts, none)); }
  /* En móvil: texto arriba, imagen limpia debajo y zonas como tarjetas estáticas */
  .hotspot-hero { display: flex; flex-direction: column; }
  .hotspot-hero__text { position: static; order: -1; padding: 44px 0 20px; }
  .hotspot-hero__text-inner {
    max-width: none;
    background: none; -webkit-backdrop-filter: none; backdrop-filter: none;
    padding: 0; border-radius: 0; box-shadow: none;
  }
  .hotspot-hero__stage::before { display: none; }
  /* Hotspots usables en movil: la imagen se amplia y se desliza en horizontal */
  .hotspot-hero__stage {
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hotspot-hero__stage::-webkit-scrollbar { display: none; }
  .hotspot-hero__frame { width: 720px; }
  .hotspot-hero__stage .hotspot { width: 34px; height: 34px; font-size: 21px; }
  .hotspot-hero__stage .hotspot::after { inset: -8px; }
  .hotspot-hero__stage .hotspot-card {
    left: 50% !important; right: auto !important;
    top: auto !important; bottom: 12px !important;
    width: 300px; transform: translate(-50%, 8px);
  }
  .hotspot-hero__stage .hotspot-card.is-open { transform: translate(-50%, 0); }
  .hotspot-hero__zonas { display: none; }
  .hotspot-hint {
    display: flex; align-items: center; gap: 8px; justify-content: center;
    margin: 12px auto 0; padding-bottom: 32px;
    font-size: 13px; font-weight: 700; color: var(--zeona-blue); opacity: .6;
  }
  .hotspot-hint span { animation: hint-slide 1.8s ease-in-out infinite; }
}
@keyframes hint-slide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
@media (max-width: 560px) {
  .hotspot-hero__zonas { grid-template-columns: 1fr; }
}

/* ---------- Manifiesto tipográfico ---------- */
.manifesto { text-align: center; }
.manifesto p {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(30px, 4.6vw, 56px); line-height: 1.14; letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.manifesto em { font-style: normal; }

/* ---------- Línea de tiempo ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.timeline::before {
  content: ""; position: absolute; top: 8px; left: 9px; right: 20%;
  height: 3px; border-radius: 3px; background: rgba(30, 80, 100, .12);
}
.timeline-item { position: relative; padding-top: 38px; }
.timeline-item::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--dot, var(--zeona-coral));
  box-shadow: 0 0 0 5px rgba(30, 80, 100, .07);
}
.timeline-item small {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--zeona-grey); margin-bottom: 6px;
}
.timeline-item h4 { font-size: 19px; margin-bottom: 8px; }
.timeline-item p { font-size: 14.5px; opacity: .8; }
@media (max-width: 820px) {
  .timeline { grid-template-columns: 1fr; gap: 26px; }
  .timeline::before { top: 8px; bottom: 8px; left: 8px; right: auto; width: 3px; height: auto; }
  .timeline-item { padding: 0 0 0 40px; }
  .timeline-item::before { top: 2px; }
}

/* ---------- Embajadora ---------- */
.ambassador-figure {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #FDF6EC 0%, #FAEADD 55%, #F5E3D5 100%);
  box-shadow: var(--shadow-block);
  display: flex; justify-content: center; align-items: flex-end;
  padding: 36px 24px 0;
}
.ambassador-figure::before {
  content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: rgba(50, 200, 200, .13); top: -70px; left: -70px;
}
.ambassador-figure::after {
  content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%;
  background: rgba(250, 200, 70, .18); bottom: 40px; right: -50px;
}
.ambassador-figure img {
  position: relative; z-index: 1;
  max-height: 540px; width: auto; max-width: 100%;
  display: block;
}
.ambassador-badge {
  position: absolute; z-index: 2; top: 20px; right: 20px;
  background: #fff; color: var(--zeona-blue);
  font-family: var(--font-display); font-weight: 800; font-size: 13.5px;
  padding: 9px 18px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}

/* ---------- Testimonios ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: #fff; border-radius: var(--radius-block); padding: 30px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(30, 80, 100, .06);
  display: flex; flex-direction: column; gap: 14px;
}
.testimonial__stars { color: var(--zeona-yellow); font-size: 17px; letter-spacing: 3px; }
.testimonial__text { font-size: 15.5px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; color: #fff; font-size: 16px;
}
.testimonial__author strong { font-size: 14.5px; display: block; }
.testimonial__author span { font-size: 12.5px; color: var(--zeona-grey); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff; border-radius: 18px; border: 1px solid rgba(30, 80, 100, .08);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-family: var(--font-display); font-weight: 800; font-size: 16.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 24px; font-weight: 400; color: var(--zeona-coral);
  transition: transform .3s ease; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; font-size: 15px; opacity: .82; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--zeona-turquoise), var(--zeona-aqua));
  border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center;
  color: var(--zeona-ink);
  box-shadow: var(--shadow-block);
}
.newsletter h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 10px; }
.newsletter p { font-size: 16px; opacity: .85; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input {
  flex: 1; min-width: 220px; height: 54px; padding-inline: 22px;
  border: none; border-radius: var(--radius-pill); font-family: var(--font-body); font-size: 15px;
  background: #fff; color: var(--zeona-ink); outline: none;
}
.newsletter .btn { height: 54px; }
.newsletter__consent {
  flex-basis: 100%; display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; line-height: 1.45; opacity: .85; margin-top: 2px;
}
.newsletter__consent input[type="checkbox"] {
  flex: none; width: auto; min-width: 0; height: auto; padding: 0;
  margin-top: 2px; accent-color: var(--zeona-coral);
}
.newsletter__consent a { color: var(--zeona-ink); text-decoration: underline; }
.newsletter__status { flex-basis: 100%; font-size: 13px; margin: 0; min-height: 0; }
.newsletter__status.is-ko { color: #8c2a22; font-weight: 600; opacity: 1; }
.newsletter__status.is-ok { color: var(--zeona-blue); font-weight: 700; opacity: 1; }


/* ---------- Barra de sugerencia de idioma ---------- */
.lang-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 16px;
  padding: 10px 20px;
  background: var(--zeona-ink); color: #fff;
  font-size: 14px;
}
.lang-bar p { margin: 0; opacity: .92; }
.lang-bar strong { font-weight: 700; }
.lang-bar__ir {
  color: #fff; font-weight: 700; text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding-bottom: 1px;
}
.lang-bar__ir:hover { border-bottom-color: #fff; }
.lang-bar__cerrar {
  background: none; border: none; color: #fff; opacity: .65;
  font-size: 21px; line-height: 1; cursor: pointer;
  padding: 0 4px; margin-left: auto;
}
.lang-bar__cerrar:hover { opacity: 1; }
@media (max-width: 560px) {
  .lang-bar { font-size: 13px; padding: 9px 14px; gap: 6px 12px; }
}

/* ---------- Redes sociales (footer) ---------- */
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(248, 246, 243, .12);
  border: 1px solid rgba(248, 246, 243, .22);
  color: var(--zeona-white); opacity: 1;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.social-links a:hover {
  background: var(--zeona-turquoise); border-color: var(--zeona-turquoise);
  color: var(--zeona-ink); transform: translateY(-3px);
}
.social-links svg { width: 19px; height: 19px; fill: currentColor; }
@media (max-width: 560px) { .social-links { justify-content: flex-start; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--zeona-blue); color: var(--zeona-white); margin-top: clamp(64px, 9vw, 110px); }
.site-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-block: clamp(48px, 6vw, 72px);
}
.site-footer h4 { font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: var(--zeona-yellow); margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { opacity: .85; font-size: 14.5px; transition: opacity .2s, color .2s; }
.site-footer a:hover { opacity: 1; color: var(--zeona-turquoise); }
.site-footer__brand img { height: 34px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.site-footer__brand p { font-size: 14.5px; opacity: .8; max-width: 32ch; }
.site-footer__legal {
  border-top: 1px solid rgba(248, 246, 243, .15);
  padding-block: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; opacity: .7;
}
.product-info__ip {
  margin: -4px 0 16px; font-size: 12px; line-height: 1.5;
  color: var(--zeona-grey); letter-spacing: .01em;
}
.site-footer__ip {
  border-top: 1px solid rgba(248, 246, 243, .12);
  padding-top: 18px; margin: 0 0 4px;
  font-size: 12px; line-height: 1.6; opacity: .55;
}

/* ---------- Página productos: filtros ---------- */
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.chip {
  border: 1.5px solid var(--border); background: #fff; cursor: pointer;
  font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--zeona-blue);
  padding: 9px 22px; border-radius: var(--radius-pill);
  transition: all .2s ease;
}
.chip:hover { border-color: var(--zeona-blue); }
.chip.is-active { background: var(--zeona-blue); border-color: var(--zeona-blue); color: #fff; }

/* ---------- Ficha de producto ---------- */
.product-page { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.product-gallery__main {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 1; background: #fff; margin-bottom: 14px;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 12px; }
.product-gallery__thumbs button {
  width: 84px; height: 84px; border-radius: 16px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; padding: 0; background: #fff; transition: border-color .2s;
}
.product-gallery__thumbs button.is-active { border-color: var(--zeona-coral); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 10px; }
.product-info__price { font-family: var(--font-display); font-weight: 900; font-size: 30px; margin-bottom: 4px; }
.product-info__preorder { font-size: 14px; color: var(--zeona-coral); font-weight: 700; margin-bottom: 20px; }
.product-info__desc { font-size: 16.5px; opacity: .85; margin-bottom: 22px; }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty {
  display: inline-flex; align-items: center; border: 1.5px solid var(--border);
  border-radius: var(--radius-pill); overflow: hidden; background: #fff;
}
.qty button {
  width: 44px; height: 48px; border: none; background: none; cursor: pointer;
  font-size: 20px; color: var(--zeona-blue); font-weight: 700;
}
.qty input {
  width: 44px; text-align: center; border: none; font-family: var(--font-display);
  font-weight: 800; font-size: 16px; color: var(--zeona-blue); background: none; outline: none;
}
.trust-row { display: grid; gap: 10px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--border); }
.trust-row div { display: flex; gap: 12px; align-items: center; font-size: 14px; opacity: .85; }
.trust-row .ico { font-size: 18px; }

/* ---------- Panel de reserva (drawer) ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(18, 55, 70, .45); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100vw); z-index: 100;
  background: var(--zeona-white); box-shadow: -20px 0 60px rgba(18, 55, 70, .25);
  transform: translateX(105%); transition: transform .38s cubic-bezier(.32,.72,.28,1);
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
}
.drawer__head h3 { font-size: 20px; }
.drawer__close { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--zeona-blue); line-height: 1; }
.drawer__body { flex: 1; overflow-y: auto; padding: 22px 26px; }
.drawer__empty { text-align: center; padding-block: 40px; opacity: .7; font-size: 15px; }
.drawer-item { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.drawer-item img { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; }
.drawer-item__info { flex: 1; }
.drawer-item__info strong { font-size: 14.5px; display: block; font-family: var(--font-display); }
.drawer-item__info span { font-size: 13px; color: var(--zeona-grey); }
.drawer-item .qty { transform: scale(.82); transform-origin: right; }
.drawer-item__remove { background: none; border: none; cursor: pointer; color: var(--zeona-coral); font-size: 18px; }
.drawer__form { display: grid; gap: 12px; margin-top: 10px; }
.drawer__form label { font-size: 13px; font-weight: 700; }
.drawer__form input, .drawer__form textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-input);
  font-family: var(--font-body); font-size: 14.5px; background: #fff; color: var(--zeona-blue); outline: none;
  transition: border-color .2s;
}
.drawer__form input:focus, .drawer__form textarea:focus { border-color: var(--zeona-turquoise); }
.drawer__foot { padding: 20px 26px; border-top: 1px solid var(--border); display: grid; gap: 10px; }
.drawer__total { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 900; font-size: 18px; }
.drawer__note { font-size: 12px; opacity: .65; text-align: center; }

/* Consentimiento, honeypot y confirmacion del drawer de reserva */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.drawer__consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; font-weight: 400; line-height: 1.45; opacity: .85; margin-top: 4px;
}
.drawer__consent input { width: auto; margin-top: 2px; accent-color: var(--zeona-coral); flex: none; }
.drawer__consent a { color: var(--zeona-coral); text-decoration: underline; }
.drawer__done { text-align: center; padding: 44px 12px; }
.drawer__done-ico {
  width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 27px; font-weight: 700;
  background: var(--zeona-turquoise); color: #fff;
}
.drawer__done h4 { font-family: var(--font-display); font-size: 22px; margin-bottom: 10px; }
.drawer__done p { font-size: 15px; opacity: .85; margin-bottom: 10px; }
.drawer__done-note { font-size: 12.5px; opacity: .6; }


/* ---------- Formulario de solicitud ---------- */
.solicitud-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  background: #fff; border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow); border: 1px solid rgba(30, 80, 100, .06);
  max-width: 860px; margin-inline: auto;
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-display); font-weight: 800; font-size: 14px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-input);
  font-family: var(--font-body); font-size: 15px; color: var(--zeona-blue);
  background: #fff; outline: none; transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--zeona-turquoise); }
.form-consent {
  grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; opacity: .85;
}
.form-consent input { margin-top: 3px; accent-color: var(--zeona-coral); }
.form-submit { grid-column: 1 / -1; }
.form-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-status {
  max-width: 760px; margin: 0 auto 24px; padding: 16px 22px;
  border-radius: var(--radius-md, 18px); font-size: 15px; line-height: 1.5;
}
.form-status--ok { background: #e4f6f6; color: var(--zeona-blue); font-weight: 600; }
.form-status--ko { background: #fde9e7; color: #8c2a22; font-weight: 600; }
@media (max-width: 640px) {
  .solicitud-form { grid-template-columns: 1fr; }
}

/* ---------- Precios con descuento ---------- */
.price-old {
  color: var(--zeona-grey);
  text-decoration: line-through; text-decoration-thickness: 2px;
  font-weight: 600; font-size: .72em; margin-right: 2px;
}
.price-new { color: var(--zeona-coral); }
.price-chip {
  display: inline-block; vertical-align: middle;
  background: var(--zeona-coral); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: .5em;
  padding: .2em .55em; border-radius: var(--radius-pill);
  margin-left: 7px; letter-spacing: .02em; transform: translateY(-2px);
}

/* ---------- Promo del drawer ---------- */
.drawer__promo {
  background: rgba(250, 200, 70, .2); color: var(--zeona-ink);
  border-radius: 12px; padding: 10px 14px;
  font-size: 13.5px; font-weight: 600; line-height: 1.45;
}
.drawer__promo--ok { background: rgba(50, 200, 200, .16); color: #14706f; }
.drawer__promo--anim { margin: 4px 0 18px; }
.drawer__promo--anim span {
  opacity: 0;
  animation: promo-in .35s ease forwards;
  animation-delay: calc(var(--i) * 28ms);
}
.drawer__promo--anim .st { font-weight: 800; color: var(--zeona-coral); }
@keyframes promo-in { from { opacity: 0; filter: blur(3px); } to { opacity: 1; filter: none; } }
@media (prefers-reduced-motion: reduce) {
  .drawer__promo--anim span { opacity: 1; animation: none; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%;
  transform: translate(-50%, calc(100% + 40px));
  visibility: hidden;
  background: var(--zeona-ink); color: #fff; z-index: 120;
  padding: 14px 26px; border-radius: var(--radius-pill); font-weight: 700; font-size: 14.5px;
  box-shadow: var(--shadow-block);
  transition: transform .4s cubic-bezier(.32,.72,.28,1), visibility 0s linear .4s;
}
.toast.is-visible {
  transform: translate(-50%, 0);
  visibility: visible;
  transition: transform .4s cubic-bezier(.32,.72,.28,1), visibility 0s;
}

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: clamp(48px, 7vw, 84px) 0 clamp(28px, 4vw, 48px); }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 14px; max-width: none; }
.page-hero h1 em { font-style: normal; }
.hl-coral { color: var(--zeona-coral); }
.hl-turquoise { color: var(--zeona-turquoise); }
.hl-purple { color: var(--zeona-purple); }
.page-hero p { font-size: 18px; opacity: .82; max-width: none; }

/* ---------- Badges de tiendas de apps ---------- */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--zeona-ink); color: #fff;
  padding: 9px 20px 9px 16px; border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #0d2a36; }
.store-badge svg { width: 24px; height: 24px; flex: none; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.store-badge small { font-family: var(--font-body); font-weight: 500; font-size: 10.5px; opacity: .8; letter-spacing: .02em; }

/* ---------- Variantes de grids y splits ---------- */
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }
.split__media--compact { max-width: 440px; justify-self: center; }
.ritual-card__img {
  border-radius: 14px; overflow: hidden; margin-bottom: 16px;
  box-shadow: var(--shadow-sm); aspect-ratio: 16 / 8.5;
}
.ritual-card__img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Prosa legal ---------- */
.legal-prose { max-width: 980px; }
.legal-prose h2 { font-size: 22px; margin: 34px 0 10px; }
.legal-prose h3 { font-size: 17px; margin: 22px 0 8px; }
.legal-prose p, .legal-prose li { font-size: 15.5px; opacity: .87; margin-bottom: 10px; }
.legal-prose ul { padding-left: 22px; margin-bottom: 12px; }
.legal-prose strong { font-weight: 700; }
.legal-prose .legal-box {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 20px 24px; margin-block: 16px; box-shadow: var(--shadow-sm);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Floating dots decorativos ---------- */
.dots { position: relative; }
.dots::before, .dots::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0; pointer-events: none;
}
.dots::before { width: 140px; height: 140px; background: rgba(50, 200, 200, .12); top: -30px; left: -60px; }
.dots::after { width: 90px; height: 90px; background: rgba(250, 200, 70, .18); bottom: -20px; right: -30px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .collections-grid, .steps-grid, .zonas-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .packs-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
}

@media (max-width: 1024px) {
  .zonas-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .products-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 55;
    background: var(--zeona-white); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 14px var(--gutter) 22px; gap: 4px;
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
  }
  .site-nav.is-open {
    opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity .28s ease, transform .28s ease, visibility 0s;
  }
  .site-nav a { padding: 14px 16px; font-size: 16.5px; }
  .nav-burger { display: flex; }
  .nav-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2) { opacity: 0; }
  .nav-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .split, .product-page, .newsletter { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img { max-height: 420px; }
  .hero-product__grid { grid-template-columns: 1fr; }
  .hero-product__media { max-width: 480px; }
  .rituals-grid { grid-template-columns: 1fr; }
  .pack-card { grid-template-columns: 1fr; }
  .pack-card__media { min-height: 220px; }
  .newsletter form { width: 100%; }
  .newsletter .btn { width: 100%; }
  .product-gallery__thumbs { flex-wrap: wrap; }
  .product-gallery__thumbs button { width: 68px; height: 68px; }
}

@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .site-header__logo img { height: 24px; }
  .announcement { font-size: 12px; padding-block: 7px; }
  .reserva-toggle { padding: 10px 14px; }
  .reserva-toggle .reserva-toggle__label { display: none; }

  .hero { min-height: min(72vh, 640px); }
  .hero__eyebrow { font-size: 12px; padding: 7px 14px; white-space: normal; text-align: center; }
  .hero__sub { font-size: 16px; }
  .hero__ctas .btn { width: 100%; }
  .hero-product__eyebrow { font-size: 12px; white-space: normal; }
  .hero-product__ctas .btn { width: 100%; }
  .hero-product__media { max-width: 100%; }
  .marquee span { font-size: 13.5px; }

  .section { padding-block: 52px; }
  .section-head { margin-bottom: 30px; }

  .collections-grid, .steps-grid, .zonas-grid, .zonas-grid--4 { grid-template-columns: 1fr; }
  .collection-card { aspect-ratio: 16 / 11; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Grid de productos a 2 columnas compactas, como en Shopify móvil */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { border-radius: 18px; }
  .product-card__body { padding: 12px 14px 16px; gap: 4px; }
  .product-card__title { font-size: 15px; }
  .product-card__desc { display: none; }
  .product-card__vendor { font-size: 10.5px; }
  .product-card__price { font-size: 16px; }
  .product-card__price small { font-size: 10px; }
  .product-card__foot { flex-direction: column; align-items: stretch; gap: 8px; margin-top: 8px; }
  .product-card__actions { grid-template-columns: 1fr; gap: 6px; }
  .product-card__actions .btn { padding: 10px 12px; font-size: 13.5px; }
  .badge { top: 10px; left: 10px; font-size: 10.5px; padding: 5px 11px; }

  .stat h3 { font-size: 34px; }
  .stat p { font-size: 13.5px; }

  .qty-row { flex-wrap: wrap; }
  .qty-row .btn { flex-basis: 100%; }

  .pack-card__body { padding: 22px 20px; }
  .pack-card__foot { flex-wrap: wrap; gap: 10px; }
  .pack-card__body .btn { width: 100%; }

  .newsletter { padding: 30px 22px; }
  .faq-item summary { padding: 17px 18px; font-size: 15px; }
  .faq-item p { padding: 0 18px 18px; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__legal { flex-direction: column; gap: 8px; }

  .drawer { width: 100vw; }
  .drawer__foot { padding-bottom: max(20px, env(safe-area-inset-bottom)); }
  .page-hero p { font-size: 16px; }
}
