/* ============================================================
   BEBO COLD PRESS — MAIN STYLESHEET
   Premium functional shots · Barcelona
   ============================================================ */

/* ── Custom Properties ───────────────────────────────────── */
:root {
  /* Brand — BeBo Teal #0D7272 */
  --c-brand:        #0D7272;
  --c-brand-mid:    #0F8585;
  --c-brand-light:  #2EAAAA;
  /* Products */
  --c-nitro:        #7B1B3A;
  --c-nitro-mid:    #A62248;
  --c-curame:       #C8821A;
  --c-curame-mid:   #E09930;
  --c-super:        #B85E10;
  --c-super-mid:    #D47220;
  /* Neutrals */
  --c-black:        #0A0A0A;
  --c-text:         #1A1A1A;
  --c-text-secondary: #5A5A5A;
  --c-text-muted:   #6E6E6E;
  --c-bg:           #FAFAF8;
  --c-cream:        #F3EDE2;
  --c-cream-dark:   #E8DFD0;
  --c-white:        #FFFFFF;
  --c-border:       rgba(26,26,26,0.10);
  /* Typography — Cairo (Montaser Arabic) / Montserrat */
  --f-display: 'Cairo', sans-serif;
  --f-body:    'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Spacing */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  48px;
  --sp-xl:  80px;
  --sp-2xl: 120px;
  --sp-3xl: 160px;
  /* Layout */
  --max-w:        1320px;
  --max-w-narrow: 860px;
  --gutter:       48px;
  /* Motion */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast:   0.15s;
  --t-base:   0.28s;
  --t-slow:   0.55s;
  /* Radii */
  --r-sm:   4px;
  --r-md:   10px;
  --r-lg:   18px;
  --r-xl:   28px;
  --r-pill: 100px;
}

/* ── Foco visible (accesibilidad) ────────────────────────── */
.btn:focus-visible, .nav__link:focus-visible, .nav__mobile-link:focus-visible,
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--c-brand); outline-offset: 2px; border-radius: 4px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--f-body); font-size: 16px; line-height: 1.65; color: var(--c-text); background: var(--c-bg); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── Typography ──────────────────────────────────────────── */
.display-xl  { font-family: var(--f-display); font-size: clamp(27px, 3.3vw, 43px); font-weight: 900; line-height: 1.06;  letter-spacing: -0.02em; }
.display-lg  { font-family: var(--f-display); font-size: clamp(32px, 4.4vw, 61px);  font-weight: 800; line-height: 1.05; letter-spacing: -0.015em; }
.display-md  { font-family: var(--f-display); font-size: clamp(30px, 4vw, 56px);    font-weight: 700; line-height: 1.1;  letter-spacing: -0.01em; }
h1, .h1      { font-family: var(--f-display); font-size: clamp(36px, 4.5vw, 64px);  font-weight: 700; line-height: 1.1;  letter-spacing: -0.015em; }
h2, .h2      { font-family: var(--f-display); font-size: clamp(28px, 3.2vw, 48px);  font-weight: 600; line-height: 1.15; letter-spacing: -0.008em; }
h3, .h3      { font-family: var(--f-display); font-size: clamp(22px, 2.5vw, 34px);  font-weight: 600; line-height: 1.2; }
h4, .h4      { font-family: var(--f-body); font-size: 17px; font-weight: 600; line-height: 1.35; }
.overline    { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.body-lg     { font-size: 20px; line-height: 1.68; font-weight: 300; }
.body-md     { font-size: 16px; line-height: 1.70; }
.body-sm     { font-size: 14px; line-height: 1.60; color: var(--c-text-secondary); }
.body-xs     { font-size: 12px; line-height: 1.55; }

/* ── Layout ──────────────────────────────────────────────── */
.container         { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--max-w-narrow); }
.section           { padding: var(--sp-xl) 0; }
.section--lg       { padding: var(--sp-2xl) 0; }
.section--xl       { padding: var(--sp-3xl) 0; }
.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); }
.flex          { display: flex; }
.flex-center   { align-items: center; }
.flex-between  { justify-content: space-between; }
.flex-wrap     { flex-wrap: wrap; }
.gap-xs { gap: var(--sp-xs); }
.gap-sm { gap: var(--sp-sm); }
.gap-md { gap: var(--sp-md); }
.text-center { text-align: center; }
.mb-xs { margin-bottom: var(--sp-xs); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }
.mb-xl { margin-bottom: var(--sp-xl); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn--lg  { padding: 18px 40px; font-size: 13px; }
.btn--sm  { padding: 9px 20px;  font-size: 11px; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary   { background: var(--c-brand); color: var(--c-white); border-color: var(--c-brand); }
.btn--primary:hover { background: var(--c-brand-mid); border-color: var(--c-brand-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,114,114,0.25); }

.btn--secondary { background: transparent; color: var(--c-brand); border-color: var(--c-brand); }
.btn--secondary:hover { background: var(--c-brand); color: var(--c-white); }

.btn--white     { background: var(--c-white); color: var(--c-brand); border-color: var(--c-white); }
.btn--white:hover { background: transparent; color: var(--c-white); transform: translateY(-1px); }

.btn--ghost-white { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,0.45); }
.btn--ghost-white:hover { background: var(--c-white); color: var(--c-black); border-color: var(--c-white); }

.btn--dark     { background: var(--c-black); color: var(--c-white); border-color: var(--c-black); }
.btn--dark:hover { background: #2a2a2a; border-color: #2a2a2a; transform: translateY(-1px); }

.btn--nitro   { background: var(--c-nitro);  color: var(--c-white); border-color: var(--c-nitro); }
.btn--curame  { background: var(--c-curame); color: var(--c-white); border-color: var(--c-curame); }
.btn--super   { background: var(--c-super);  color: var(--c-white); border-color: var(--c-super); }

.btn .arrow { font-size: 16px; transition: transform var(--t-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Navigation ──────────────────────────────────────────── */
/* Franja superior discreta: newsletter */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 101; background: var(--c-brand); color: #fff; transition: transform 0.3s var(--ease); }
.topbar__inner { position: relative; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 44px; text-align: center; }
.topbar__msg { font-size: 13px; letter-spacing: 0.01em; color: rgba(255,255,255,0.95); }
.topbar__msg strong { font-weight: 700; color: #fff; }
.topbar__cta { flex-shrink: 0; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.45); color: #fff; font-weight: 700; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--r-pill); cursor: pointer; transition: background 0.2s, color 0.2s; }
.topbar__cta:hover { background: #fff; color: var(--c-brand); }
.topbar__close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255,255,255,0.7); font-size: 20px; line-height: 1; cursor: pointer; padding: 0 4px; }
.topbar__close:hover { color: #fff; }
.topbar.is-hidden { transform: translateY(-100%); }
body.has-topbar .nav { top: 40px; }
@media (max-width: 640px) {
  .topbar__inner { gap: 10px; padding: 8px 40px; }
  .topbar__msg { font-size: 11.5px; }
  .topbar__cta { font-size: 10px; padding: 4px 10px; }
  body.has-topbar .nav { top: 52px; }
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background var(--t-base) var(--ease), padding var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.nav.is-scrolled {
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--c-border);
}
.nav__inner   { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-width: 0; }
/* El nav usa todo el ancho de la ventana (no el max-width del contenido) para que el menú y el carrito nunca se recorten */
.nav > .container { max-width: none; }
.nav__actions { min-width: 0; }
.nav__logo    { flex-shrink: 0; }
.nav__logo img { height: 30px; width: auto; filter: brightness(0) invert(1); transition: filter var(--t-base) var(--ease); }
.nav.is-scrolled .nav__logo img { visibility: hidden; }
/* Logo recoloreado al verde de marca EXACTO (#0D7272) vía máscara — nítido desde el PNG 2100px, sin tinte azulado */
.nav.is-scrolled .nav__logo,
body.menu-open .nav__logo,
.nav[data-nav-solid] .nav__logo {
  background-color: var(--c-brand);
  -webkit-mask: url(../images/logo-bebo-white.png) left center / contain no-repeat;
          mask: url(../images/logo-bebo-white.png) left center / contain no-repeat;
}
.nav[data-nav-solid] .nav__logo img { visibility: hidden; }
.nav__links   { display: flex; align-items: center; gap: 14px; flex-wrap: nowrap; min-width: 0; }
.nav__link {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); white-space: nowrap;
  position: relative; transition: color var(--t-base) var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav.is-scrolled .nav__link { color: var(--c-text); }
.nav__actions { display: flex; align-items: center; gap: var(--sp-sm); flex-shrink: 0; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 1.5px; background: var(--c-white); transition: all var(--t-base) var(--ease); }
.nav.is-scrolled .nav__hamburger span { background: var(--c-text); }
.nav__hamburger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--c-bg); padding: 104px var(--gutter) var(--sp-lg);
  flex-direction: column; gap: 4px; overflow-y: auto;
  opacity: 0; transform: translateX(100%); transition: all var(--t-base) var(--ease);
}
/* Con la barra de anuncio arriba, el nav baja: da holgura extra para no tapar el logo */
body.has-topbar .nav__mobile { padding-top: 132px; }
.nav__mobile.is-open { display: flex; opacity: 1; transform: translateX(0); }
.nav__mobile-link {
  font-family: var(--f-display); font-size: 24px; line-height: 1.15; color: var(--c-text);
  padding: 9px 16px; border: 2px solid transparent; border-radius: 14px;
  align-self: flex-start; transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav__mobile-link:hover { color: var(--c-brand); }
.nav__mobile-link.is-active { color: var(--c-brand); border-color: var(--c-brand); background: rgba(13,114,114,0.06); }
.nav__mobile-cta { margin-top: var(--sp-sm); }

/* Menú móvil abierto: la barra superior se ve sobre fondo claro →
   logo en verde BeBo (recolorea el PNG blanco) e iconos/idiomas oscuros */
body.menu-open .nav__logo img { visibility: hidden; }
body.menu-open .nav__hamburger span { background: var(--c-text); }
body.menu-open .nav-cart { color: var(--c-text); }
body.menu-open .lang-btn { color: var(--c-text-muted); border-color: var(--c-border); }
body.menu-open .lang-btn.is-active { background: var(--c-brand); color: var(--c-white); border-color: var(--c-brand); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 640px; max-height: 1080px;
  overflow: hidden; display: flex; align-items: flex-end;
  padding-bottom: var(--sp-xl);
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 40%, rgba(0,0,0,0.72) 100%);
}
.hero__content    { position: relative; z-index: 2; color: var(--c-white); max-width: 800px; }
.hero__overline   { color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.hero__title      { color: var(--c-white); margin-bottom: var(--sp-md); font-weight: 600; }
.hero .hero__title { font-size: clamp(36px, 4.6vw, 64px); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; max-width: 14ch; }
.hero__subtitle   { color: rgba(255,255,255,0.78); font-size: 19px; font-weight: 300; line-height: 1.65; max-width: 520px; margin-bottom: var(--sp-lg); }
.hero__actions    { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin-bottom: var(--sp-lg); }
.hero__trust      { display: flex; flex-wrap: wrap; gap: 0; align-items: center; }
.hero__trust-item { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); padding: 0 16px; border-right: 1px solid rgba(255,255,255,0.2); }
.hero__trust-item:first-child { padding-left: 0; }
.hero__trust-item:last-child  { border-right: none; }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar { background: var(--c-brand); padding: 14px 0; overflow: hidden; }
.trust-bar__track { display: flex; gap: 0; animation: marquee 20s linear infinite; }
.trust-bar__item { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 0 36px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.trust-bar__dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.35); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Section Header ──────────────────────────────────────── */
.section-header               { margin-bottom: var(--sp-xl); }
.section-header--center       { text-align: center; }
.section-header__overline     { color: var(--c-brand); margin-bottom: 16px; }
.section-header__title        { margin-bottom: var(--sp-md); }
.section-header__subtitle     { font-size: 18px; font-weight: 300; color: var(--c-text-secondary); max-width: 600px; line-height: 1.70; }
.section-header--center .section-header__subtitle { margin: 0 auto; }
.section-header__actions      { margin-top: var(--sp-lg); display: flex; gap: var(--sp-sm); flex-wrap: wrap; }
.section-header--center .section-header__actions { justify-content: center; }

/* ── Rituals Intro ───────────────────────────────────────── */
.rituals-intro     { background: var(--c-cream); }
.rituals-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); align-items: center; }
.rituals-intro__features { margin-top: var(--sp-lg); display: flex; flex-direction: column; gap: var(--sp-md); }
.feature-item      { display: flex; gap: var(--sp-sm); align-items: flex-start; }
.feature-item__icon { width: 36px; height: 36px; border-radius: 50%; background: var(--c-brand); color: var(--c-white); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.feature-item__text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.feature-item__text p  { font-size: 14px; color: var(--c-text-secondary); line-height: 1.55; }
.rituals-intro__image { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); }

/* ── Ritual Cards ────────────────────────────────────────── */
.rituals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); }
.ritual-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--c-white); border: 1px solid var(--c-border);
  display: flex; flex-direction: column;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.ritual-card:hover { transform: translateY(-5px); box-shadow: 0 24px 64px rgba(0,0,0,0.12); border-color: transparent; }
.ritual-card__accent-bar { height: 3px; width: 100%; }
.ritual-card[data-ritual="performance"]  .ritual-card__accent-bar { background: var(--c-nitro); }
.ritual-card[data-ritual="inflammation"] .ritual-card__accent-bar { background: var(--c-curame); }
.ritual-card[data-ritual="immunity"]     .ritual-card__accent-bar { background: var(--c-super); }
.ritual-card[data-ritual="restore"]      .ritual-card__accent-bar { background: var(--c-brand); }
.ritual-card__body { padding: 32px var(--sp-md); flex: 1; display: flex; flex-direction: column; }
.ritual-card__label { margin-bottom: 10px; }
.ritual-card[data-ritual="performance"]  .ritual-card__label { color: var(--c-nitro); }
.ritual-card[data-ritual="inflammation"] .ritual-card__label { color: var(--c-curame); }
.ritual-card[data-ritual="immunity"]     .ritual-card__label { color: var(--c-super); }
.ritual-card[data-ritual="restore"]      .ritual-card__label { color: var(--c-brand); }
.ritual-card__name  { font-family: var(--f-display); font-size: 28px; font-weight: 400; line-height: 1.1; margin-bottom: var(--sp-sm); }
.ritual-card__goal  { font-size: 14px; color: var(--c-text-secondary); line-height: 1.55; margin-bottom: var(--sp-md); flex: 1; }
.ritual-card__shots { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--sp-md); }
.ritual-card__shot-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.05em; padding: 4px 10px; border-radius: var(--r-pill); background: rgba(26,26,26,0.06); color: var(--c-text-secondary); }
.ritual-card__bottles { font-size: 13px; font-weight: 600; color: var(--c-text-muted); margin-bottom: var(--sp-md); }
.ritual-card__actions { display: flex; flex-direction: column; gap: 8px; }
.ritual-card__claim { font-family: var(--f-body); font-style: italic; font-size: 14px; color: var(--c-text-muted); text-align: center; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--c-border); }

/* ── Shot Cards ──────────────────────────────────────────── */
.shots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.shot-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--c-white); border: 1px solid var(--c-border);
  display: flex; flex-direction: column;
  transition: all var(--t-base) var(--ease);
}
.shot-card:hover { transform: translateY(-5px); box-shadow: 0 24px 64px rgba(0,0,0,0.12); border-color: transparent; }
.shot-card__image-wrap { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.shot-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.shot-card:hover .shot-card__image { transform: scale(1.05); }
.shot-card__color-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; }
.shot-card[data-shot="nitro"]  .shot-card__color-bar { background: var(--c-nitro); }
.shot-card[data-shot="curame"] .shot-card__color-bar { background: var(--c-curame); }
.shot-card[data-shot="super"]  .shot-card__color-bar { background: var(--c-super); }
.shot-card__body { padding: var(--sp-md); flex: 1; display: flex; flex-direction: column; }
.shot-card__name { font-family: var(--f-display); font-size: 26px; font-weight: 400; margin-bottom: 8px; }
.shot-card__ingredients { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: var(--sp-sm); }
.shot-card__benefit { font-size: 14px; color: var(--c-text-secondary); line-height: 1.55; flex: 1; margin-bottom: var(--sp-md); }
.shot-card__pack-note { font-size: 12px; color: var(--c-text-muted); line-height: 1.45; margin-bottom: var(--sp-md); margin-top: -8px; }
.shot-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.shot-card__actions button.btn { border: none; cursor: pointer; font-family: inherit; }

/* ── Subscription Section ────────────────────────────────── */
.subscription-section { background: var(--c-brand); color: var(--c-white); position: relative; overflow: hidden; }
.subscription-section::before { content: ''; position: absolute; top: -40%; right: -15%; width: 700px; height: 700px; border-radius: 50%; background: rgba(255,255,255,0.025); pointer-events: none; }
.subscription-section .section-header__overline { color: rgba(255,255,255,0.55); }
.subscription-section .section-header__title    { color: var(--c-white); }
.subscription-section .section-header__subtitle { color: rgba(255,255,255,0.72); }

.subscription-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); margin-bottom: var(--sp-xl); }
.subscription-step { padding: var(--sp-md); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); background: rgba(255,255,255,0.05); }
.subscription-step__number { font-family: var(--f-display); font-size: 56px; font-weight: 400; color: var(--c-white); line-height: 1; margin-bottom: 12px; }
.subscription-step__title  { font-size: 15px; font-weight: 600; color: var(--c-white); margin-bottom: 8px; }
.subscription-step__text   { font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.55; }

.subscription-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-sm); margin-bottom: var(--sp-xl); }
.subscription-benefit  { display: flex; align-items: center; gap: 12px; }
.subscription-benefit__check { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.subscription-benefit__text  { font-size: 14px; color: rgba(255,255,255,0.78); }

.subscription-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-sm); margin-bottom: var(--sp-xl); }
.plan-card { background: #0A5C5C; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-md); padding: var(--sp-md); transition: all var(--t-base) var(--ease); position: relative; }
.plan-card:hover { background: #0C6B6B; border-color: rgba(255,255,255,0.34); transform: translateY(-2px); }
.plan-card.is-featured { background: #04403F; border: 2px solid #fff; box-shadow: 0 0 18px 2px rgba(255,255,255,0.28), 0 12px 38px rgba(0,0,0,0.28); transform: translateY(-4px); }
.plan-card.is-featured:hover { background: #04403F; border-color: #fff; transform: translateY(-8px); box-shadow: 0 0 0 1px rgba(255,255,255,0.9), 0 0 28px 4px rgba(255,255,255,0.55), 0 16px 44px rgba(0,0,0,0.22); }
.plan-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--c-white); color: var(--c-brand); font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--r-pill); white-space: nowrap; }
.plan-card__name     { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 10px; }
.plan-card__discount { font-family: var(--f-display); font-size: 48px; line-height: 1; color: var(--c-white); margin-bottom: 6px; }
.plan-card__detail   { font-size: 13px; color: #fff; font-weight: 600; line-height: 1.5; }
.plan-card__features { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.plan-card__feat     { font-size: 12px; color: #fff; display: flex; align-items: center; gap: 8px; }
.plan-card__feat::before { content: '✓'; font-size: 10px; color: var(--c-white); font-weight: 700; }

/* ── Story Section ───────────────────────────────────────── */
.story-teaser { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: var(--r-xl); overflow: hidden; }
.story-teaser__image-side { position: relative; min-height: 500px; overflow: hidden; }
.story-teaser__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.story-teaser:hover .story-teaser__image { transform: scale(1.04); }
.story-teaser__content { background: var(--c-cream); padding: var(--sp-xl) var(--sp-lg); display: flex; flex-direction: column; justify-content: center; }

/* ── Conservation Box ────────────────────────────────────── */
.conservation-box { background: var(--c-cream); border-radius: var(--r-lg); padding: var(--sp-lg); border-left: 4px solid var(--c-brand); }
.conservation-box__title { font-family: var(--f-display); font-size: 22px; margin-bottom: var(--sp-md); }
.conservation-steps { display: flex; flex-direction: column; gap: var(--sp-sm); margin-bottom: var(--sp-md); }
.conservation-step { display: flex; gap: var(--sp-sm); align-items: flex-start; }
.conservation-step__num { width: 28px; height: 28px; border-radius: 50%; background: var(--c-brand); color: var(--c-white); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex-shrink: 0; }
.conservation-step__text { font-size: 14px; line-height: 1.55; padding-top: 4px; }

/* ── Pricing Table ───────────────────────────────────────── */
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-muted); padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--c-border); }
.pricing-table td { padding: 16px; font-size: 14px; border-bottom: 1px solid var(--c-border); vertical-align: middle; }
.pricing-table tr.is-featured td { background: rgba(13,114,114,0.06); }
.pricing-table .discount { font-size: 13px; font-weight: 700; color: var(--c-brand); }
.pricing-table .free-shipping::after { content: ' ✓'; color: var(--c-brand); font-weight: 700; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { }
.faq-group   { margin-bottom: var(--sp-xl); }
.faq-group__title { font-family: var(--f-display); font-size: 24px; font-weight: 400; margin-bottom: var(--sp-md); color: var(--c-brand); padding-bottom: var(--sp-sm); border-bottom: 1px solid var(--c-border); }
.faq-item    { border-bottom: 1px solid var(--c-border); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); padding: 20px 0; text-align: left; cursor: pointer; color: var(--c-text); transition: color var(--t-fast) var(--ease); }
.faq-trigger:hover { color: var(--c-brand); }
.faq-trigger__q    { font-size: 16px; font-weight: 500; line-height: 1.45; }
.faq-trigger__icon { width: 24px; height: 24px; border-radius: 50%; background: var(--c-cream); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: transform var(--t-base) var(--ease), background var(--t-base) var(--ease); }
.faq-item.is-open .faq-trigger__icon { transform: rotate(45deg); background: var(--c-brand); color: var(--c-white); }
.faq-answer  { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-answer__inner { padding: 0 0 20px; font-size: 15px; color: var(--c-text-secondary); line-height: 1.70; }

/* ── Product Detail Hero ─────────────────────────────────── */
.product-hero { padding-top: 100px; background: var(--c-bg); }
.product-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); align-items: start; }
.product-hero__gallery { position: sticky; top: 100px; }
.product-hero__main-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); margin-bottom: var(--sp-sm); }
.product-hero__thumbs { display: flex; gap: var(--sp-xs); }
.product-hero__thumb { width: 80px; height: 80px; object-fit: cover; border-radius: var(--r-sm); cursor: pointer; opacity: 0.65; transition: opacity var(--t-fast) var(--ease); border: 2px solid transparent; }
.product-hero__thumb.is-active, .product-hero__thumb:hover { opacity: 1; border-color: var(--c-brand); }
.product-hero__content { padding-top: var(--sp-md); }
.product-hero__tag  { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: var(--r-pill); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--sp-md); }
.product-hero__tag--nitro  { background: rgba(123,27,58,0.1);  color: var(--c-nitro); }
.product-hero__tag--curame { background: rgba(200,130,26,0.1); color: var(--c-curame); }
.product-hero__tag--super  { background: rgba(184,94,16,0.1);  color: var(--c-super); }
.product-hero__name { font-family: var(--f-display); font-size: clamp(36px, 5vw, 64px); font-weight: 400; margin-bottom: var(--sp-sm); line-height: 1.0; letter-spacing: -0.02em; }
.product-hero__ingredients-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 8px; }
.product-hero__ingredients { font-size: 16px; color: var(--c-text-secondary); margin-bottom: var(--sp-md); }
.product-hero__description { font-size: 17px; font-weight: 300; line-height: 1.75; color: var(--c-text-secondary); margin-bottom: var(--sp-lg); }
.product-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--sp-lg); }
.product-benefit-tag { font-size: 12px; font-weight: 500; padding: 6px 14px; border-radius: var(--r-pill); background: var(--c-cream); color: var(--c-text); letter-spacing: 0.03em; }

/* ── Page Hero (interior pages) ──────────────────────────── */
.page-hero { background: var(--c-black); color: var(--c-white); padding: 140px 0 var(--sp-xl); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('') center/cover no-repeat; opacity: 0.2; }
.page-hero__content { position: relative; z-index: 1; max-width: 720px; }
.page-hero__overline { color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.page-hero__title    { color: var(--c-white); margin-bottom: var(--sp-md); }
.page-hero__subtitle { color: rgba(255,255,255,0.72); font-size: 19px; font-weight: 300; line-height: 1.68; max-width: 580px; margin-bottom: var(--sp-lg); }
.page-hero__actions  { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }

/* ── Ritual Detail ───────────────────────────────────────── */
.ritual-hero { padding-top: 100px; }
.ritual-hero--performance { background: #1a0610; }
.ritual-hero--inflammation { background: #1a0d00; }
.ritual-hero--immunity { background: #0d1a0a; }
.ritual-hero--restore { background: #0a1a12; }

.ritual-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); align-items: center; }
.ritual-schedule   { background: var(--c-cream); border-radius: var(--r-lg); padding: var(--sp-lg); margin-bottom: var(--sp-lg); }
.ritual-schedule__title { font-family: var(--f-display); font-size: 20px; margin-bottom: var(--sp-md); }
.ritual-schedule__slots { display: flex; flex-direction: column; gap: var(--sp-sm); }
.ritual-slot { display: flex; gap: var(--sp-md); align-items: center; padding: 12px 16px; background: var(--c-white); border-radius: var(--r-md); border-left: 3px solid var(--c-brand); }
.ritual-slot__time  { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-muted); width: 80px; flex-shrink: 0; }
.ritual-slot__shot  { font-size: 14px; font-weight: 500; flex: 1; }
.ritual-slot__detail { font-size: 12px; color: var(--c-text-muted); }

/* ── Disclaimer ──────────────────────────────────────────── */
.disclaimer { font-size: 12px; color: var(--c-text-muted); line-height: 1.55; padding: var(--sp-md); background: var(--c-cream); border-radius: var(--r-md); border-left: 3px solid var(--c-cream-dark); font-style: italic; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--c-black); color: rgba(255,255,255,0.6); padding: var(--sp-xl) 0 var(--sp-lg); }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: var(--sp-xl); margin-bottom: var(--sp-xl); }
/* Newsletter (banda superior del footer) */
.footer__newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); align-items: center; padding-bottom: var(--sp-lg); margin-bottom: var(--sp-lg); border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__newsletter-title { font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 2.6vw, 30px); color: var(--c-white); margin-bottom: 6px; }
.footer__newsletter-sub { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 440px; }
.footer__newsletter-form { width: 100%; }
.footer__newsletter-row { display: flex; gap: 10px; }
.footer__newsletter-input { flex: 1; min-width: 0; padding: 13px 18px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: #fff; font-family: inherit; font-size: 15px; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.footer__newsletter-input:focus { outline: none; border-color: var(--c-brand); box-shadow: 0 0 0 3px rgba(13,114,114,0.3); }
.footer__newsletter-form .btn { flex-shrink: 0; }
.footer__newsletter-consent { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer__newsletter-consent input { margin-top: 2px; accent-color: var(--c-brand); flex-shrink: 0; }
.footer__newsletter-consent a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.footer__newsletter-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.footer__newsletter-msg { font-size: 13px; margin-top: 10px; min-height: 1em; }
.footer__newsletter-msg.is-ok { color: #4ade80; }
.footer__newsletter-msg.is-err { color: #f9a8a8; }
@media (max-width: 800px) { .footer__newsletter { grid-template-columns: 1fr; gap: var(--sp-md); } }
.footer__logo { height: 26px; width: auto; margin-bottom: var(--sp-md); }
.footer__tagline { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.45); margin-bottom: var(--sp-md); }
.footer__social  { display: flex; gap: 10px; }
.footer__social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all var(--t-base) var(--ease); }
.footer__social-link:hover { border-color: rgba(255,255,255,0.4); color: var(--c-white); }
.footer__col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: var(--sp-md); }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link  { font-size: 14px; color: rgba(255,255,255,0.52); transition: color var(--t-fast) var(--ease); }
.footer__link:hover { color: var(--c-white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: var(--sp-md); display: flex; justify-content: space-between; align-items: center; gap: var(--sp-md); flex-wrap: wrap; }
.footer__copyright { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer__legal { display: flex; gap: var(--sp-md); }
.footer__legal-link { font-size: 12px; color: rgba(255,255,255,0.28); transition: color var(--t-fast) var(--ease); }
.footer__legal-link:hover { color: rgba(255,255,255,0.6); }
.footer__legal-note { font-size: 11px; color: rgba(255,255,255,0.25); line-height: 1.55; max-width: 500px; margin-top: var(--sp-sm); }

/* ── Scroll Animations ───────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.08s; }
.fade-up-d2 { transition-delay: 0.16s; }
.fade-up-d3 { transition-delay: 0.24s; }
.fade-up-d4 { transition-delay: 0.32s; }

/* ── WhatsApp Floating Button ────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.10) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; }

/* ── Back to top (sutil, abajo-izquierda) ────────────────── */
.back-to-top {
  position: fixed; bottom: 30px; left: 28px; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(250,250,248,0.88);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--c-brand);
  border: 1px solid rgba(13,114,114,0.22);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.10);
  cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease), visibility var(--t-base), box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--c-brand); color: #fff; box-shadow: 0 6px 22px rgba(13,114,114,0.35); transform: translateY(-2px); }
.back-to-top svg { width: 18px; height: 18px; }
@media (max-width: 600px) {
  .back-to-top { bottom: 24px; left: 18px; width: 40px; height: 40px; }
}

/* ── Language Switcher ───────────────────────────────────── */
.lang-switcher { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.lang-btn {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 8px; border-radius: var(--r-sm);
  color: rgba(255,255,255,0.55); background: transparent; border: none; cursor: pointer;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.lang-btn:hover { color: var(--c-white); }
.lang-btn.is-active { color: var(--c-white); background: rgba(255,255,255,0.15); }
.nav.is-scrolled .lang-btn { color: var(--c-text-muted); }
.nav.is-scrolled .lang-btn:hover { color: var(--c-text); }
.nav.is-scrolled .lang-btn.is-active { color: var(--c-text); background: rgba(0,0,0,0.06); }

/* ── Image Hover & Scroll Animations ────────────────────── */
.img-hover {
  overflow: hidden; border-radius: var(--r-lg);
  transition: box-shadow var(--t-slow) var(--ease);
}
.img-hover img {
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}
.img-hover:hover img { transform: scale(1.06); filter: brightness(1.04); }
.img-hover:hover { box-shadow: 0 28px 72px rgba(0,0,0,0.18); }

/* Parallax tilt on cards */
.shot-card:hover .shot-card__image { transform: scale(1.06); }
.ritual-card:hover { transform: translateY(-6px) scale(1.01); }

/* Staggered entrance from sides */
.fade-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.fade-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.fade-left.is-visible, .fade-right.is-visible { opacity: 1; transform: translateX(0); }

/* ── Language Content Blocks ─────────────────────────────── */
/* Used by legal pages and any page with full-block trilingual content */
.lang-block-en,
.lang-block-ca { display: none; }
html[data-lang="en"] .lang-block-es { display: none; }
html[data-lang="en"] .lang-block-en { display: block; }
html[data-lang="ca"] .lang-block-es { display: none; }
html[data-lang="ca"] .lang-block-ca { display: block; }

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-hero { background: var(--c-black); color: var(--c-white); padding: 120px 0 var(--sp-xl); }
.legal-body { max-width: 780px; }
.legal-body h2 { font-family: var(--f-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; color: var(--c-text); margin: var(--sp-xl) 0 var(--sp-sm); padding-top: var(--sp-md); border-top: 1px solid var(--c-border); }
.legal-body h2:first-of-type { margin-top: var(--sp-lg); border-top: none; }
.legal-body h3 { font-size: 16px; font-weight: 700; color: var(--c-text); margin: var(--sp-md) 0 var(--sp-xs); }
.legal-body p { font-size: 16px; font-weight: 300; line-height: 1.80; color: var(--c-text-secondary); margin-bottom: var(--sp-sm); }
.legal-body ul, .legal-body ol { padding-left: var(--sp-lg); margin-bottom: var(--sp-sm); }
.legal-body ul li, .legal-body ol li { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--c-text-secondary); margin-bottom: 6px; }
.legal-body a { color: var(--c-brand); text-decoration: underline; }
.legal-info-box { background: rgba(13,114,114,0.06); border: 1px solid rgba(13,114,114,0.20); border-radius: var(--r-md); padding: var(--sp-md) var(--sp-lg); margin: var(--sp-md) 0; }
.legal-info-box p { margin: 0; font-size: 15px; }
.legal-highlight { background: var(--c-cream); border-radius: var(--r-lg); padding: var(--sp-lg); margin: var(--sp-lg) 0; }
.legal-highlight h3 { margin-top: 0; }
.legal-updated { font-size: 13px; color: var(--c-text-muted); margin-bottom: var(--sp-lg); }
.legal-toc { background: var(--c-surface, #f7f7f5); border-radius: var(--r-lg); padding: var(--sp-lg); margin-bottom: var(--sp-xl); }
.legal-toc p { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: var(--sp-sm); }
.legal-toc ol { padding-left: var(--sp-md); margin: 0; }
.legal-toc ol li { font-size: 14px; font-weight: 400; color: var(--c-text-secondary); margin-bottom: 4px; line-height: 1.6; }
.legal-toc ol li a { color: var(--c-brand); text-decoration: none; }
.legal-toc ol li a:hover { text-decoration: underline; }
/* Cookie table */
.cookie-table { width: 100%; border-collapse: collapse; margin-bottom: var(--sp-md); }
.cookie-table th { text-align: left; padding: 10px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-muted); border-bottom: 2px solid var(--c-border); background: var(--c-cream); }
.cookie-table td { padding: 12px 14px; font-size: 14px; color: var(--c-text-secondary); border-bottom: 1px solid var(--c-border); vertical-align: top; font-weight: 300; line-height: 1.5; }
.cookie-table tr:last-child td { border-bottom: none; }
/* Plans table */
.plans-table { width: 100%; border-collapse: collapse; margin: var(--sp-md) 0; }
.plans-table th { background: var(--c-brand); color: white; padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.plans-table td { padding: 14px 16px; border-bottom: 1px solid var(--c-border); font-size: 14px; color: var(--c-text-secondary); font-weight: 300; }
.plans-table tr:last-child td { border-bottom: none; }
.plans-table tr:nth-child(even) td { background: rgba(13,114,114,0.03); }
/* Lang switcher on legal pages */
.lang-switcher { display: flex; gap: 4px; }
.lang-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; min-height: 36px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-sm); color: rgba(255,255,255,0.65); background: transparent; border: 1px solid rgba(255,255,255,0.25); cursor: pointer; transition: all var(--t-fast) var(--ease); }
.lang-btn.is-active, .lang-btn:hover { background: var(--c-brand); color: var(--c-white); border-color: var(--c-brand); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --gutter: 36px; }
  .rituals-grid { grid-template-columns: repeat(2, 1fr); }
  .subscription-plans { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
}

/* El menú completo tiene 12 items: pasa a hamburguesa antes (≤1280) para que nunca se recorte el carrito ni el menú */
@media (max-width: 1280px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 900px) {
  :root { --gutter: 24px; --sp-xl: 64px; --sp-2xl: 90px; --sp-3xl: 110px; }
  .nav__links, .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }
  /* Tira de atributos del hero: máx. 3 etiquetas, una sola línea */
  .hero__trust-item:nth-child(n+4) { display: none; }
  .hero__trust { flex-wrap: nowrap; max-width: 100%; overflow: hidden; }
  .hero__trust-item { font-size: 10px; letter-spacing: 0.07em; padding: 0 11px; white-space: nowrap; }
  .rituals-grid { grid-template-columns: 1fr; }
  .shots-grid   { grid-template-columns: 1fr; }
  .rituals-intro__grid { grid-template-columns: 1fr; }
  .rituals-intro__image { aspect-ratio: 16/9; }
  .rituals-intro__visual { order: -1; }
  .subscription-steps    { grid-template-columns: 1fr 1fr; }
  .subscription-benefits { grid-template-columns: 1fr 1fr; }
  .subscription-plans    { grid-template-columns: 1fr 1fr; }
  .story-teaser { grid-template-columns: 1fr; }
  .story-teaser__image-side { min-height: 320px; }
  .product-hero__grid    { grid-template-columns: 1fr; }
  .product-hero__gallery { position: static; }
  .ritual-detail-grid    { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  /* Legal pages tablet */
  .legal-hero { padding: 100px 0 var(--sp-lg); }
  .legal-toc { padding: var(--sp-md); }
  .legal-body { max-width: 100%; }
  .plans-table, .cookie-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* Lang switcher compact */
  .lang-switcher { gap: 2px; }
  .lang-btn { padding: 4px 8px; font-size: 10px; }
  /* Footer bottom */
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-sm); }
  .footer__legal  { flex-wrap: wrap; gap: var(--sp-sm) var(--sp-md); }
  /* Contact page */
  .contact-grid { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .subscription-steps    { grid-template-columns: 1fr; }
  .subscription-benefits { grid-template-columns: 1fr; }
  .subscription-plans    { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__trust-item:nth-child(n+4) { display: none; }
  /* Una sola línea siempre: texto compacto y sin saltos (ES/EN/CA) */
  .hero__trust { gap: 0; flex-wrap: nowrap; max-width: 100%; overflow: hidden; }
  .hero__trust-item { font-size: 9px; letter-spacing: 0.05em; padding: 0 8px; white-space: nowrap; }
  /* Nav mobile */
  .nav__mobile-link { font-size: 22px; }
  /* Typography scale-down */
  .display-xl { font-size: clamp(24px, 6vw, 37px); }
  .display-lg { font-size: clamp(24px, 7.2vw, 45px); }
  /* Legal pages mobile */
  .legal-hero { padding: 88px 0 var(--sp-md); }
  .legal-body h2 { font-size: clamp(18px, 5.5vw, 24px); margin-top: var(--sp-lg); }
  .legal-body h3 { font-size: 14px; }
  .legal-body p, .legal-body li { font-size: 15px; }
  .legal-info-box { padding: 12px var(--sp-sm); }
  .legal-toc { padding: var(--sp-sm); margin-bottom: var(--sp-lg); }
  .legal-toc ol li { font-size: 13px; }
  .legal-highlight { padding: var(--sp-sm); }
  .legal-updated { margin-bottom: var(--sp-md); }
  /* Card-style tables on mobile */
  .cookie-table, .plans-table {
    border: none;
    margin-bottom: var(--sp-sm);
    overflow: visible !important;
    display: block !important;
  }
  .cookie-table thead, .plans-table thead { display: none; }
  .cookie-table tbody, .plans-table tbody { display: block; }
  .cookie-table tr, .plans-table tr {
    display: block;
    margin-bottom: 10px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--c-white);
  }
  .cookie-table td, .plans-table td {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13px;
    border-bottom: 1px solid var(--c-border);
    border-radius: 0;
  }
  .cookie-table td:last-child, .plans-table td:last-child { border-bottom: none; }
  .cookie-table td::before, .plans-table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-brand);
    flex-shrink: 0;
    min-width: 82px;
    padding-top: 2px;
  }
  /* Footer compact */
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .plan-card { padding: var(--sp-sm); }
  /* FAQ trigger */
  .faq-trigger__q { font-size: 15px; }
  /* Ritual slots */
  .ritual-slot { flex-wrap: wrap; gap: 6px; }
  .ritual-slot__time { width: 100%; }
  /* Section padding reduction */
  .section--lg { padding: var(--sp-lg) 0; }
  .section--xl { padding: var(--sp-xl) 0; }
  /* Product detail */
  .product-hero__thumbs { gap: 6px; }
  .product-hero__thumb { width: 64px; height: 64px; }
  /* Button full-width on small screens */
  .hero__actions .btn { width: 100%; justify-content: center; }
  /* Footer compact */
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .footer__legal { flex-direction: column; gap: 6px; }
}

@media (max-width: 390px) {
  :root { --gutter: 16px; }
  .legal-body h2 { font-size: 18px; }
  .legal-toc ol li { font-size: 12px; }
  .legal-body p, .legal-body li { font-size: 14px; }
  .cookie-table td, .plans-table td { padding: 8px 12px; gap: 8px; }
  .cookie-table td::before, .plans-table td::before { min-width: 70px; font-size: 9px; }
  .nav__mobile-link { font-size: 21px; }
}


/* ── Unified section heroes (same height, measures & title) ─────────── */
.juices-page-hero, .shots-page-hero, .ritual-hero-section,
.story-hero, .contact-hero, .subs-hero, .faq-hero, .menu-hero, .b2b-hero, .blog-hero {
  min-height: 64vh !important;
  display: flex !important; align-items: center !important;
  padding: 116px 0 var(--sp-xl) !important;
}
.juices-page-hero > .container, .shots-page-hero > .container, .ritual-hero-section > .container,
.story-hero > .container, .contact-hero > .container, .subs-hero > .container,
.faq-hero > .container, .menu-hero > .container, .b2b-hero > .container, .blog-hero > .container { width: 100%; }
/* consistent hero title typography across all sections */
.juices-page-hero .display-xl, .shots-page-hero .display-xl, .ritual-hero-section .display-xl,
.story-hero .display-lg, .contact-hero .display-xl, .subs-hero .display-xl,
.faq-hero .display-lg, .menu-hero__title, .b2b-hero .display-xl, .blog-hero .display-lg {
  font-family: var(--f-display) !important; font-weight: 400 !important;
  font-size: clamp(32px, 4.2vw, 58px) !important; line-height: 1.05 !important; letter-spacing: -0.02em !important;
  color: var(--c-white) !important;
}

.skip-link{position:absolute;left:8px;top:-56px;z-index:3000;background:var(--c-brand);color:#fff;padding:10px 16px;border-radius:8px;font:600 14px/1 Montserrat,sans-serif;text-decoration:none;transition:top .2s ease}

/* ── Review carousels (one per location, index.html) ─────── */
.reviews-carousels-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 300px)); gap: var(--sp-md); justify-content: center; }
.reviews-carousel { position: relative; width: 100%; max-width: 300px; margin: 0 auto; }
.reviews-carousel__viewport { overflow: hidden; border-radius: var(--r-lg); }
.reviews-carousel__track { display: flex; transition: transform 0.45s cubic-bezier(0.65,0,0.35,1); }
.reviews-carousel__slide {
  flex: 0 0 100%; box-sizing: border-box; min-height: 254px;
  background: var(--c-white); border-radius: var(--r-lg); padding: var(--sp-md); border: 1px solid var(--c-border);
  display: flex; flex-direction: column; justify-content: space-between;
}
.reviews-carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--c-border);
  background: var(--c-white); color: var(--c-text); font-size: 14px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10); z-index: 2;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.reviews-carousel__arrow:hover { background: var(--c-brand); color: var(--c-white); }
.reviews-carousel__arrow--prev { left: 8px; }
.reviews-carousel__arrow--next { right: 8px; }
.reviews-carousel__dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.reviews-carousel__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-border); border: none; padding: 0; cursor: pointer; transition: all var(--t-base) var(--ease); }
.reviews-carousel__dot.is-active { background: var(--c-brand); width: 18px; border-radius: 3px; }
@media (max-width: 900px) {
  .reviews-carousels-grid { grid-template-columns: minmax(0, 300px); }
}
.skip-link:focus{top:8px;outline:2px solid #fff;outline-offset:2px}
