/* ════════════════════════════════════════════════════════
   MEMORI — Design System v5  ·  Alta Fidelidad
   Mobile-First: 375px → 768px → 1200px
   ════════════════════════════════════════════════════════ */

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

:root {
  /* ── Palette ───────────────────────────────────── */
  --bg:      #F9F7F2;
  --ink:     #1A1A1A;
  --warm:    #9B7B52;
  --pale:    #C8B090;
  --border:  #E5DFD6;
  --muted:   rgba(26, 26, 26, .45);
  --glass:   rgba(249, 247, 242, .92);
  --glass-b: rgba(26, 26, 26, .06);

  /* ── Typography ─────────────────────────────────
     Oswald:          Headings h1/h2/h3 (700)
     Playfair Display: Eyebrows / subtítulos
     Helvetica Neue:  Body text (700)
     Cormorant:       Hero legacy                   */
  --display:   'Oswald', sans-serif;
  --editorial: 'Playfair Display', serif;
  --sans:      'Helvetica Neue', Helvetica, Arial, sans-serif;
  --serif:     'Cormorant Garamond', Georgia, serif;

  --t-2xs:  0.9rem;
  --t-xs:   1.05rem;
  --t-sm:   1.2rem;
  --t-base: 1.5rem;
  --t-md:   1.8rem;
  --t-lg:   2.6rem;
  --t-xl:   4.2rem;
  --t-2xl:  clamp(4rem,  8vw, 6.8rem);
  --t-3xl:  clamp(5rem, 11vw, 11rem);
  --t-hero: clamp(5rem, 13vw, 13.6rem);

  /* ── Border radius ──────────────────────────────  */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-pill: 999px;
  --r:      var(--r-sm);

  /* ── Shadow system ──────────────────────────────  */
  --sh-xs: 0 1px 3px rgba(26,22,20,.04), 0 1px 2px rgba(26,22,20,.06);
  --sh-sm: 0 2px 8px rgba(26,22,20,.06), 0 1px 3px rgba(26,22,20,.04);
  --sh-md: 0 8px 24px rgba(26,22,20,.07), 0 3px 8px rgba(26,22,20,.04);
  --sh-lg: 0 20px 48px rgba(26,22,20,.09), 0 8px 16px rgba(26,22,20,.05);
  --sh-xl: 0 32px 72px rgba(26,22,20,.12), 0 12px 24px rgba(26,22,20,.06);

  /* ── Motion ─────────────────────────────────────  */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);

  /* ── Layout ─────────────────────────────────────  */
  --px:         2.2rem;
  --section-py: 7.2rem;
}

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Global typography ── */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
}

p, li {
  font-family: var(--sans);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: var(--sans);
  font-weight: 700;
}

em { font-style: italic; }

/* ── Label / eyebrow atoms → Playfair Display ── */
.label {
  display: block;
  font-family: var(--editorial);
  font-style: italic;
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--warm);
  margin-bottom: 2rem;
}

.label--light { color: rgba(200, 176, 144, .75); }

/* Page blur when menu is open */
body.menu-open .page-blur-target {
  filter: blur(6px);
  transition: filter .45s var(--ease);
}
body:not(.menu-open) .page-blur-target {
  filter: blur(0px);
  transition: filter .45s var(--ease);
}

/* ════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 5.2rem;
  padding: 0 3rem;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    background    .3s var(--ease),
    color         .3s var(--ease),
    border-color  .3s var(--ease),
    box-shadow    .3s ease,
    transform     .25s var(--ease-spring);
  -webkit-tap-highlight-color: transparent;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .25s ease;
  border-radius: inherit;
}
.btn:active::after { background: rgba(255,255,255,.12); }

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: scale(0.97) translateY(0); }

.btn--dark {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  box-shadow: var(--sh-md);
}
.btn--dark:hover  { background: #2a2a2a; box-shadow: var(--sh-lg); }

.btn--cream {
  background: var(--bg);
  color: var(--ink);
  border-color: rgba(255,255,255,.25);
  box-shadow: var(--sh-sm);
}
.btn--cream:hover { background: #fff; box-shadow: var(--sh-md); }

.btn--outline-light {
  background: transparent;
  color: rgba(249,247,242,.88);
  border-color: rgba(249,247,242,.35);
}
.btn--outline-light:hover {
  background: rgba(249,247,242,.1);
  border-color: rgba(249,247,242,.65);
}

.btn--cream-ink {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
  font-weight: 700;
  box-shadow: var(--sh-md);
}
.btn--cream-ink:hover { background: #fff; box-shadow: var(--sh-lg); }

/* Outline square — sin border-radius */
.btn--outline-square {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  border-radius: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: var(--t-sm);
}
.btn--outline-square:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════
   NAV — Mobile: burger izq · logo centro abs · icons der
         Desktop: left links · logo center flex · icons der
   ════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  padding: max(1.4rem, env(safe-area-inset-top)) var(--px) 1.4rem;
  background: transparent;
  transition:
    background      .5s var(--ease),
    backdrop-filter .5s,
    box-shadow      .4s ease;
}

.nav--scrolled {
  background: var(--glass);
  backdrop-filter: saturate(200%) blur(22px);
  -webkit-backdrop-filter: saturate(200%) blur(22px);
  border-bottom: 1px solid var(--glass-b);
  box-shadow: 0 1px 12px rgba(26,22,20,.05);
}

/* Center logo — absolute on mobile, static on desktop */
.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header-logo {
  height: 35px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter .45s var(--ease), opacity .45s;
  opacity: .92;
}
.nav--scrolled .header-logo {
  filter: none;
  opacity: 1;
}

/* Left nav links — hidden on mobile */
.nav__left {
  display: none;
  gap: 3rem;
  align-items: center;
}

.nav__left a {
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.75);
  position: relative;
  padding-bottom: .2rem;
  transition: color .3s;
}
.nav__left a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .35s var(--ease);
}
.nav__left a:hover        { color: #fff; }
.nav__left a:hover::after { width: 100%; }
.nav--scrolled .nav__left a       { color: var(--muted); }
.nav--scrolled .nav__left a:hover { color: var(--ink); }

/* Right side */
.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Currency label — hidden on mobile */
.nav__currency {
  display: none;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  transition: color .4s;
}
.nav--scrolled .nav__currency { color: var(--muted); }

/* Icon buttons — visible on mobile */
.nav__icon-btn {
  display: flex;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  padding: .8rem;
  margin: -.4rem;
  min-width: 4rem;
  min-height: 4rem;
  align-items: center;
  justify-content: center;
  transition: color .3s;
  -webkit-tap-highlight-color: transparent;
}
.nav__icon-btn:hover { color: #fff; }
.nav--scrolled .nav__icon-btn       { color: var(--muted); }
.nav--scrolled .nav__icon-btn:hover { color: var(--ink); }

/* ── Hamburger — visible on mobile, LEFT position ── */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5.5px;
  background: transparent;
  border: none;
  padding: 1rem;
  margin-left: -.8rem;
  cursor: pointer;
  z-index: 1001;
  min-width: 4.4rem;
  min-height: 4.4rem;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: var(--r-pill);
  transform-origin: center;
  transition:
    transform  .4s var(--ease),
    opacity    .28s,
    background .4s,
    width      .35s var(--ease);
}

.nav--scrolled .nav__burger span { background: var(--ink); }
.nav__burger.is-open span        { background: var(--ink) !important; }

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════
   MOBILE MENU
   ════════════════════════════════════════════════════════ */

.mobile-menu { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #fff; z-index: 9999; overflow-y: auto; display: none; }
.mobile-menu.is-open { display: block; }
.mobile-menu__close { position: absolute; top: 20px; right: 20px; cursor: pointer; z-index: 10000; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.mobile-menu__close svg { width: 28px; height: 28px; stroke: #111; stroke-width: 1.5; fill: none; }

.side-menu-container { padding: 5rem 1.5rem 3rem; display: flex; flex-direction: column; min-height: 100%; text-align: left; }
.menu-item { display: flex; align-items: center; padding: 22px 0; border-bottom: 1px solid #eaeaea; text-decoration: none; color: #111; font-family: 'Helvetica Neue', sans-serif; font-size: 1.4rem; font-weight: 500; justify-content: flex-start; cursor: pointer; }
.menu-item.dropdown-toggle { justify-content: space-between; border-bottom: none; }
.menu-item.no-border { border-bottom: none; }

.menu-icon-svg { width: 26px; height: 26px; margin-right: 18px; fill: none; stroke: #111; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.menu-sub-list { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding-left: 1.5rem; }
.menu-sub-list.open { max-height: 400px; border-bottom: 1px solid #eaeaea; margin-bottom: 10px; }
.menu-sub-item { display: block; padding: 15px 0; color: #555; text-decoration: none; font-size: 1.2rem; font-family: 'Helvetica Neue', sans-serif; font-weight: 400; }
.arrow-down { font-size: 0.8rem; color: #999; }

.menu-logo-bottom { margin-top: auto; padding-top: 4rem; text-align: center; display: flex; justify-content: center; }
.menu-logo-bottom img { width: 45px; height: auto; }

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__photo { position: absolute; inset: 0; will-change: transform; }

.hero__photo-inner {
  width: 100%;
  height: 120%;
  background-image: url('assets/hero-books.jpg');
  background-size: cover;
  background-position: center 40%;
}

.hero__photo-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(255,255,255,.012) 3px, rgba(255,255,255,.012) 6px
  );
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(4,2,1,.92) 0%,
    rgba(4,2,1,.65) 30%,
    rgba(4,2,1,.28) 60%,
    rgba(4,2,1,.08) 85%,
    transparent 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--px) 5.5rem;
  padding-bottom: max(5.5rem, env(safe-area-inset-bottom, 5.5rem));
}

.hero__kicker {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  text-shadow: 0 3px 8px rgba(0,0,0,.7);
}

.hero__headline {
  font-family: var(--serif);
  font-weight: 700;
  font-size: var(--t-hero);
  line-height: .96;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.95);
  margin-bottom: 3.5rem;
  text-shadow: 0 3px 8px rgba(0,0,0,.7);
}
.hero__headline em      { display: block; font-weight: 300; color: var(--pale); }
.hero__headline span    { display: block; }
.hero__headline-accent  { font-style: italic; color: rgba(255,255,255,.65); }

.hero__actions { display: flex; flex-direction: column; gap: 1.2rem; }

.hero__scroll {
  position: absolute;
  bottom: 2.4rem;
  right: var(--px);
  z-index: 2;
}

.hero__scroll-track {
  width: 3.6rem; height: 1px;
  background: rgba(255,255,255,.18);
  position: relative; overflow: hidden;
}

.hero__scroll-dot {
  position: absolute;
  top: 0; left: -100%;
  width: 40%; height: 100%;
  background: rgba(255,255,255,.6);
  animation: scan 2.4s 1.5s infinite ease-in-out;
}

.animate {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp .9s var(--ease) var(--d, 0s) forwards;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scan   { from { left: -45%; } to { left: 110%; } }

/* ════════════════════════════════════════════════════════
   PRODUCTS — Tríptico
   ════════════════════════════════════════════════════════ */

.products { padding: var(--section-py) 0; }

.products__header { padding: 0 var(--px); margin-bottom: 4rem; }

.products__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.products__title em { color: var(--warm); font-style: italic; }

/* Mobile: carrusel horizontal con scroll-snap */
.products__grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 1.6rem;
  padding: 0 var(--px) 2.4rem;
}
.products__grid::-webkit-scrollbar { display: none; }

.pcard {
  display: flex;
  flex-direction: column;
  flex: 0 0 75vw;
  scroll-snap-align: center;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow .4s ease;
}

.pcard__visual {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform .65s var(--ease);
}
.pcard:hover .pcard__visual,
.pcard:active .pcard__visual { transform: scale(1.03); }

/* Imagen real dentro del visual — cubre todo el contenedor */
.pcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pcard__visual--book {
  background-image: url('assets/product-original.jpg');
  background-size: cover;
  background-position: center;
}

.pcard__visual--artista {
  background-image: url('assets/product-artista.jpg');
  background-size: cover;
  background-position: center;
}

.pcard__visual--especiales {
  background-image: url('assets/product-edicionesespeciales.jpg');
  background-size: cover;
  background-position: center;
}

.pcard__visual--essentials {
  background-image: url('assets/product-essentials.jpg');
  background-size: cover;
  background-position: center top;
}

.pcard__badge {
  position: absolute;
  top: 1.6rem; left: 1.6rem;
  padding: .55rem 1.4rem;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: var(--t-2xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--sh-sm);
}

.pcard__badge--warm { background: var(--warm); color: #fff; }

.pcard__badge--especiales {
  background: linear-gradient(135deg, #1A4422, #3C8050);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.pcard__badge--merch {
  background: linear-gradient(135deg, #9B7B52, #C8A068);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}

.pcard__merch-tag {
  position: absolute;
  bottom: 2rem;
  right: -.4rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(249,247,242,.45);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.pcard--merch { border-left: 3px solid var(--warm); }

.pcard__card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.pcard__body {
  padding: 1.8rem var(--px) 2.2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.pcard__cat {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--warm);
}

.pcard__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-xl);
  line-height: 1.05;
  letter-spacing: -.01em;
}

.pcard__desc {
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  line-height: 1.78;
  color: var(--muted);
  max-width: 52ch;
}

.pcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: .4rem;
  border-top: 1px solid var(--border);
}

.pcard__price {
  font-family: var(--display);
  font-size: var(--t-lg);
  font-weight: 700;
}

.pcard__link {
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--warm);
  padding: 1rem 0;
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  transition: color .25s, letter-spacing .3s var(--ease);
}
.pcard__link:hover { color: var(--ink); letter-spacing: .12em; }

/* ════════════════════════════════════════════════════════
   EL RITUAL — Empaque asimétrico
   ════════════════════════════════════════════════════════ */

.ritual {
  padding: var(--section-py) var(--px);
  border-top: 1px solid var(--border);
}

.ritual__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.ritual__eyebrow {
  display: block;
  font-family: var(--editorial);
  font-style: italic;
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--warm);
  margin-bottom: 2rem;
}

.ritual__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 2.5rem;
}

.ritual__desc {
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  line-height: 1.8;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 3.5rem;
}

.ritual__list {
  list-style: none;
  border-top: 1px solid var(--border);
}

.ritual__list li {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
}

/* Collage mobile: simple grid */
.ritual__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  height: 32rem;
}

.ritual__img {
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
}

.ritual__img--1 {
  background: #B8AFA0;
}

.ritual__img--2 {
  background: #D0C8BC;
  align-self: end;
  height: 80%;
}

/* ════════════════════════════════════════════════════════
   NOSOTROS — Manifiesto
   ════════════════════════════════════════════════════════ */

.manifesto {
  padding: var(--section-py) var(--px);
  border-top: 1px solid var(--border);
}

.manifesto__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.manifesto__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 3rem;
}
.manifesto__title em { color: var(--warm); font-style: italic; }

.manifesto__body {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 4rem;
}
.manifesto__body p {
  font-family: var(--sans);
  font-size: var(--t-md);
  font-weight: 700;
  line-height: 1.8;
  color: var(--muted);
}

.manifesto__visual { position: relative; }

.manifesto__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background:
    radial-gradient(ellipse at 55% 30%, rgba(185,140,75,.6) 0%, transparent 48%),
    radial-gradient(ellipse at 12% 80%, rgba(10,6,2,.92)    0%, transparent 35%),
    linear-gradient(160deg,
      #0C0704 0%, #221504 18%, #4A2C10 36%,
      #7A4E22 52%, #A87040 66%, #C89252 78%, #E0B870 88%, #F4D898 100%
    );
}

.manifesto__stat {
  position: absolute;
  bottom: 2.4rem; left: 2rem;
  background: rgba(249,247,242,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  border: 1px solid rgba(229,223,214,.6);
}

.manifesto__stat--right { left: auto; right: 2rem; bottom: 8rem; }

.manifesto__stat-num {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.manifesto__stat-label {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════
   EL RITUAL
   ════════════════════════════════════════════════════════ */

.ritual {
  background: #F7F4EE;
  border-top: 1px solid var(--border);
  padding: var(--section-py) var(--px);
}
.ritual__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (min-width: 768px) {
  .ritual__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 6rem;
  }
  .ritual__header { flex: 0 0 28rem; }
}
.ritual__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-xl);
  line-height: 1.08;
  margin-top: 1.2rem;
  letter-spacing: -.01em;
}
.ritual__title em { color: var(--warm); font-style: italic; }
.ritual__body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.ritual-text {
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 400;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   TESTIMONIOS — Horizontal scroll
   ════════════════════════════════════════════════════════ */

.testimonials {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.testimonials__header { padding: 0 var(--px); margin-bottom: 4rem; }

.testimonials__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -.01em;
}

.testimonials__track {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--px) 2.4rem;
  scrollbar-width: none;
  cursor: grab;
}
.testimonials__track::-webkit-scrollbar { display: none; }
.testimonials__track:active { cursor: grabbing; }

.tcard {
  flex: 0 0 82vw;
  scroll-snap-align: start;
  padding: 3.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  background: #fff;
  transition: box-shadow .35s ease, transform .35s var(--ease-spring);
}
.tcard:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }

.tcard__quote {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3rem);
  line-height: 1.45;
  quotes: none;
  border: none;
  padding: 0;
}

.tcard__author { display: flex; flex-direction: column; gap: .4rem; }
.tcard__name   { font-family: var(--sans); font-size: var(--t-sm); font-weight: 700; letter-spacing: .04em; }
.tcard__detail { font-family: var(--sans); font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: .8rem;
  padding-top: 1rem;
}

.dot {
  width: 6px; height: 6px;
  border-radius: var(--r-pill);
  background: var(--border);
  transition: background .3s, transform .3s, width .35s var(--ease);
}
.dot--active { background: var(--warm); width: 18px; }

/* ════════════════════════════════════════════════════════
   UGC — Horizontal Scroll Snap (9:16 TikTok-style)
   ════════════════════════════════════════════════════════ */

.ugc {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.ugc__header {
  padding: 0 var(--px);
  margin-bottom: 3.6rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.ugc__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1.05;
  margin-bottom: 1.8rem;
}
.ugc__title em { color: var(--warm); font-style: italic; }

.ugc__follow {
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--warm);
  padding-bottom: .2rem;
  border-bottom: 1px solid rgba(155,123,82,.3);
  align-self: flex-start;
  transition: color .25s, border-color .25s;
}
.ugc__follow:hover { color: var(--ink); border-color: var(--ink); }

.ugc__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--px) 2rem;
  scrollbar-width: none;
  cursor: grab;
}
.ugc__track::-webkit-scrollbar { display: none; }
.ugc__track:active { cursor: grabbing; }

.ugc__item {
  flex: 0 0 56vw;
  scroll-snap-align: start;
}

.ugc__thumb {
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.ugc__thumb:hover  { transform: translateY(-3px); box-shadow: var(--sh-md); }
.ugc__thumb:active { transform: scale(0.97); }

.ugc__thumb--1 {
  background:
    radial-gradient(ellipse at 55% 30%, rgba(240,185,80,.6) 0%, transparent 48%),
    radial-gradient(ellipse at 10% 80%, rgba(12,7,2,.9) 0%, transparent 38%),
    linear-gradient(170deg, #160A02 0%, #3C2008 25%, #7A4018 48%, #C07030 68%, #E0A050 84%, #F8D080 100%);
}
.ugc__thumb--2 {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(240,210,195,.7) 0%, transparent 52%),
    linear-gradient(155deg, #2A1610 0%, #5C3025 25%, #906050 50%, #C09080 70%, #DDB8A8 86%, #F2E0D8 100%);
}
.ugc__thumb--3 {
  background:
    radial-gradient(ellipse at 60% 25%, rgba(240,140,60,.65) 0%, transparent 42%),
    radial-gradient(ellipse at 20% 70%, rgba(80,30,10,.8) 0%, transparent 38%),
    linear-gradient(148deg, #1E0C04 0%, #4A1C08 22%, #8A3818 42%, #C06030 60%, #D88040 74%, #E89A58 86%, #F4B870 100%);
}
.ugc__thumb--4 {
  background:
    radial-gradient(ellipse at 50% 35%, rgba(255,252,235,.85) 0%, transparent 50%),
    linear-gradient(160deg, #F8F2E0 0%, #EEE0B8 28%, #D8C488 52%, #C0A058 70%, #A07838 88%, #886030 100%);
}
.ugc__thumb--5 {
  background:
    radial-gradient(ellipse at 55% 28%, rgba(130,185,230,.55) 0%, transparent 45%),
    radial-gradient(ellipse at 8% 82%, rgba(5,10,20,.9) 0%, transparent 36%),
    linear-gradient(158deg, #040810 0%, #0C1828 20%, #183045 38%, #2A5070 55%, #3E7898 70%, #60A0C0 84%, #A0C8E0 95%, #D0E8F4 100%);
}
.ugc__thumb--6 {
  background:
    radial-gradient(ellipse at 65% 30%, rgba(220,170,90,.65) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 75%, rgba(15,8,3,.88) 0%, transparent 38%),
    linear-gradient(155deg, #120804 0%, #301808 22%, #603020 42%, #9A5530 60%, #C87848 74%, #E09A60 86%, #F4BE80 100%);
}

.ugc__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 4.8rem; height: 4.8rem;
  background: rgba(249,247,242,.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
  cursor: pointer;
  z-index: 2;
  transition: background .3s, transform .25s var(--ease-spring), box-shadow .3s;
  -webkit-tap-highlight-color: transparent;
}
.ugc__thumb:hover .ugc__play {
  background: rgba(249,247,242,.28);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 24px rgba(255,255,255,.15);
}

.ugc__meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3.5rem 1.2rem 1.2rem;
  background: linear-gradient(0deg, rgba(5,3,1,.85) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 1;
}

.ugc__user, .ugc__likes {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
}

.ugc__caption {
  position: absolute;
  top: 1.2rem; left: 1.2rem; right: 1.2rem;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  color: rgba(255,255,255,.8);
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════════
   FAQ — Acordeón accesible
   ════════════════════════════════════════════════════════ */

.faq { padding: var(--section-py) var(--px); border-top: 1px solid var(--border); }

.faq__header { margin-bottom: 4.5rem; }

.faq__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1.05;
}

.faq__list { border-top: 1px solid var(--border); }

.faq__item { border-bottom: 1px solid var(--border); transition: background .25s ease; }
.faq__item[open] { background: rgba(229,223,214,.2); }
.faq__item summary { list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem 1.6rem;
  font-family: var(--display);
  font-size: var(--t-lg);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  min-height: 6.6rem;
  border-radius: var(--r-sm);
  transition: color .25s;
}
.faq__q:hover { color: var(--warm); }
.faq__q::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--warm);
  line-height: 1;
  transition: transform .38s var(--ease);
}
.faq__item[open] > .faq__q::after { transform: rotate(45deg); }

.faq__a {
  padding: 0 1.6rem 2.8rem;
  animation: faqOpen .35s var(--ease);
}
.faq__a p {
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  line-height: 1.8;
  color: var(--muted);
  max-width: 68ch;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq__more {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.faq__more-link {
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--warm);
  padding-bottom: .2rem;
  border-bottom: 1px solid rgba(155,123,82,.3);
  transition: color .25s, border-color .25s;
}
.faq__more-link:hover { color: var(--ink); border-color: var(--ink); }

/* ════════════════════════════════════════════════════════
   NEWSLETTER
   ════════════════════════════════════════════════════════ */

.newsletter {
  padding: var(--section-py) var(--px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter__inner { max-width: 52rem; margin: 0 auto; text-align: center; }
.newsletter__inner .label { display: flex; justify-content: center; }

.newsletter__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
}
.newsletter__title em { color: var(--warm); font-style: italic; }

.newsletter__sub {
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 4rem;
}

.newsletter__field {
  display: flex;
  align-items: stretch;
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: 1.5rem;
}

.newsletter__input {
  flex: 1;
  min-height: 5.5rem;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  padding: 1.2rem 0;
}
.newsletter__input::placeholder { color: var(--muted); opacity: .7; font-weight: 400; }

.newsletter__btn {
  background: transparent;
  border: none;
  padding: 1rem .5rem 1rem 2rem;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  min-height: 4.4rem;
  transition: transform .3s var(--ease-spring), color .25s;
  -webkit-tap-highlight-color: transparent;
}
.newsletter__btn:hover,
.newsletter__btn:active { transform: translateX(6px); color: var(--warm); }

.newsletter__confirm {
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--warm);
  letter-spacing: .06em;
  min-height: 2rem;
  opacity: 0;
  transition: opacity .4s;
}
.newsletter__confirm.visible { opacity: 1; }

.newsletter__legal {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  opacity: .65;
  margin-top: .8rem;
}
.newsletter__legal a { border-bottom: 1px solid rgba(26,26,26,.2); transition: border-color .25s; }
.newsletter__legal a:hover { border-color: var(--ink); }

/* ════════════════════════════════════════════════════════
   FAB — Floating CTA (mobile only)
   ════════════════════════════════════════════════════════ */

.fab {
  position: fixed;
  bottom: max(2.8rem, env(safe-area-inset-bottom, 2.8rem));
  left: 50%;
  transform: translateX(-50%) translateY(1.8rem);
  z-index: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2.8rem;
  height: 5.4rem;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  box-shadow:
    0 4px 16px rgba(26,22,20,.22),
    0 12px 40px rgba(26,22,20,.16),
    inset 0 1px 0 rgba(255,255,255,.06);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity   .45s var(--ease),
    transform .45s var(--ease),
    box-shadow .3s ease;
  -webkit-tap-highlight-color: transparent;
}

.fab.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.fab:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow:
    0 8px 24px rgba(26,22,20,.28),
    0 20px 56px rgba(26,22,20,.2),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.fab:active { transform: translateX(-50%) scale(0.96); }

.fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 2px solid rgba(26,22,20,.12);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity .3s, transform .3s;
}
.fab.visible::before { animation: fabPulse 3s 2s infinite ease-out; }

@keyframes fabPulse {
  0%  { opacity: .6; transform: scale(1); }
  70% { opacity: 0;  transform: scale(1.25); }
  100%{ opacity: 0;  transform: scale(1.25); }
}

@media (min-width: 1200px) { .fab { display: none; } }

/* ════════════════════════════════════════════════════════
   FOOTER — Dark Mode
   ════════════════════════════════════════════════════════ */

.footer {
  background: #111;
  color: #A09890;
  padding: 6rem var(--px) 0;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-bottom: 5rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__isotype {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 2.4rem;
  filter: brightness(0) invert(1);
  opacity: .88;
}

/* Payment logos */
.footer__payments {
  display: flex;
  gap: .8rem;
  align-items: center;
  margin-bottom: 2rem;
}
.footer__pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.4rem;
  padding: 0 .8rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  background: rgba(255,255,255,.04);
}

/* Contact email */
.footer__email {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  color: #706860;
  letter-spacing: .04em;
  text-decoration: none;
  margin-bottom: 2.4rem;
  transition: color .25s;
}
.footer__email:hover { color: #F9F7F2; }

.footer__social {
  display: flex;
  gap: .8rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255,255,255,.15);
  color: #706860;
  transition: color .25s, border-color .25s, background .25s;
  border-radius: 4px;
}
.footer__social a:hover {
  color: #F9F7F2;
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer__col-title {
  display: block;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #F9F7F2;
  margin-bottom: .4rem;
}

.footer__col a {
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  color: #706860;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  transition: color .25s;
}
.footer__col a:hover { color: #F9F7F2; }

/* Bottom bar */
.footer__bottom {
  padding: 2.8rem 0 max(3.5rem, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 0;
}

.footer__copy {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .06em;
  color: #48403C;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2rem;
}
.footer__legal a {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  color: #48403C;
  letter-spacing: .04em;
  transition: color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.footer__legal a:hover { color: #A09890; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Tablet 768px
   ════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  :root { --px: 4rem; --section-py: 10rem; }

  /* Nav: show currency at tablet */
  .nav__currency { display: block; }

  /* Products: 2×2 grid */
  .products__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1px;
    background: var(--border);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: visible;
    padding: 0;
  }
  .pcard {
    flex: none;
    border: none;
    border-radius: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  .pcard--merch { border-left: none; }

  /* El Ritual: 2 column asym layout */
  .ritual__inner {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 6rem;
    align-items: center;
  }

  .ritual__collage {
    position: relative;
    display: block;
    height: 54rem;
  }

  .ritual__img {
    position: absolute;
  }

  .ritual__img--1 {
    top: 0; left: 0;
    width: 62%;
    height: 80%;
    box-shadow: var(--sh-lg);
  }

  .ritual__img--2 {
    bottom: 0; right: 0;
    width: 55%;
    height: 60%;
    box-shadow: var(--sh-md);
  }

  /* Manifesto: side by side */
  .manifesto__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

  /* Testimonials: narrower cards */
  .tcard { flex: 0 0 55vw; }

  /* UGC: wider */
  .ugc__item { flex: 0 0 38vw; }

  /* Footer: horizontal */
  .footer__top { flex-direction: row; align-items: flex-start; gap: 8rem; }
  .footer__bottom { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 4rem; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Desktop 1200px
   ════════════════════════════════════════════════════════ */

@media (min-width: 1200px) {
  :root { --px: 6%; --section-py: 12rem; }

  /* Desktop: switch to flex-with-sides layout */
  .nav__burger { display: block !important; }
  .nav__left   { display: none; }
  .nav__right  { flex: 1; justify-content: flex-end; }
  .nav__logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .header-logo { height: 45px; }

  /* Hero: split layout */
  .hero {
    display: grid;
    grid-template-columns: 44% 1fr;
    grid-template-rows: 1fr;
    align-items: stretch;
  }
  .hero__photo { position: static; grid-column: 2; grid-row: 1; }
  .hero__photo-inner { height: 100%; }
  .hero__overlay {
    grid-column: 2; grid-row: 1;
    background: linear-gradient(90deg, rgba(4,2,1,.55) 0%, rgba(4,2,1,.2) 50%, transparent 100%);
  }
  .hero__content {
    grid-column: 1; grid-row: 1;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 12rem var(--px) 6rem;
    background: var(--bg);
    z-index: 2;
  }
  .hero__headline { font-size: clamp(7rem, 7.5vw, 11rem); color: var(--ink); text-shadow: none; }
  .hero__headline em { color: var(--warm); }
  .hero__headline-accent { color: var(--ink); opacity: .65; font-style: italic; }
  .hero__kicker { color: var(--warm); }
  .hero__actions { flex-direction: row; }

  /* Products: 4 columnas */
  .products__grid { grid-template-columns: repeat(4, 1fr); }
  .pcard { border-bottom: none; }
  .pcard--merch { border-left: 3px solid var(--warm); }

  /* El Ritual: wider text col */
  .ritual__inner {
    grid-template-columns: 52% 1fr;
    gap: 8rem;
  }

  .ritual__collage { height: 62rem; }

  /* UGC: smaller cards */
  .ugc__item { flex: 0 0 22vw; }

  /* FAQ max width */
  .faq__list { max-width: 80rem; }
}

/* ════════════════════════════════════════════════════════
   PDP — Página de Producto (Buy Box · Benefits · Reviews)
   ════════════════════════════════════════════════════════ */

/* ── Buy Box ── */
.pdp-buybox {
  padding-top: calc(6.8rem + env(safe-area-inset-top, 0px));
  border-bottom: 1px solid var(--border);
}

.pdp-buybox__inner {
  display: flex;
  flex-direction: column;
}

.pdp-buybox__gallery {
  background: #F0EDE7;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.pdp-gallery__main-wrap {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.pdp-gallery__main {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

.pdp-gallery__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 4.4rem; height: 4.4rem;
  background: rgba(249,247,242,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(229,223,214,.6);
  border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background .25s, box-shadow .25s;
  z-index: 2;
}
.pdp-gallery__arrow:hover  { background: #fff; box-shadow: var(--sh-sm); }
.pdp-gallery__arrow--prev  { left: 1.6rem; }
.pdp-gallery__arrow--next  { right: 1.6rem; }

.pdp-gallery__thumbs {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: .8rem;
  padding: 1.2rem var(--px);
  background: #F0EDE7;
}
.pdp-gallery__thumbs::-webkit-scrollbar { display: none; }

.pdp-gallery__thumb {
  flex: 0 0 5rem;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: .55;
  transition: opacity .25s, border-color .25s;
  padding: 0;
  background: none;
}
.pdp-gallery__thumb.active { opacity: 1; border-color: var(--ink); }
.pdp-gallery__thumb:hover:not(.active) { opacity: .8; }
.pdp-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pdp-buybox__info {
  padding: 3.5rem var(--px) 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pdp-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4.2rem, 10vw, 7rem);
  line-height: .96;
  letter-spacing: -.02em;
}

/* ── Stars + reviews ── */
.pdp-reviews {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pdp-stars { display: flex; gap: .25rem; color: #C8A030; }
.pdp-reviews__text {
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--muted);
}
.pdp-reviews__text a {
  color: var(--warm);
  border-bottom: 1px solid rgba(155,123,82,.3);
  transition: border-color .25s;
}
.pdp-reviews__text a:hover { border-color: var(--warm); }

/* ── Price ── */
.pdp-price {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.pdp-price__original {
  font-family: var(--sans);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
  opacity: .5;
}
.pdp-price__current {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.2rem, 7vw, 4.8rem);
  line-height: 1;
  color: var(--ink);
}
.pdp-price__badge {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: var(--t-2xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .55rem 1.4rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

/* ── Artista artist selector ── */
.artista-artist-grid {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.artista-artist-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 1.6rem;
  background: none;
  border: 1.5px solid #DDD8CF;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.artista-artist-card:hover { border-color: #9B7B52; background: rgba(155,123,82,.04); }
.artista-artist-card.active { border-color: #2A2420; background: #fff; }

.artista-artist-card__avatar {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: #EDE9E0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #9B7B52;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.artista-artist-card.active .artista-artist-card__avatar {
  background: #2A2420;
  color: #F4F1EA;
}

.artista-artist-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.artista-artist-card__info strong {
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  color: #2A2420;
  letter-spacing: .04em;
}
.artista-artist-card__info span {
  font-family: var(--sans);
  font-size: var(--t-xs);
  color: #A89F96;
  letter-spacing: .06em;
}

.artista-artist-card__check {
  opacity: 0;
  color: #2A2420;
  transition: opacity .2s;
  flex-shrink: 0;
}
.artista-artist-card.active .artista-artist-card__check { opacity: 1; }

/* ── Bundle selector ── */
.pdp-bundles__label,
.pdp-template__label {
  display: block;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.pdp-bundles { display: flex; flex-direction: column; gap: .8rem; }

.pdp-bundle {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--bg);
  transition: border-color .25s, background .2s, box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
}
.pdp-bundle:hover:not(.is-active) { border-color: var(--pale); }
.pdp-bundle.is-active {
  border-color: var(--ink);
  background: #fff;
  box-shadow: var(--sh-sm);
}

.pdp-bundle__radio {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, background .2s;
}
.pdp-bundle.is-active .pdp-bundle__radio {
  border-color: var(--ink);
  background: var(--ink);
}
.pdp-bundle.is-active .pdp-bundle__radio::after {
  content: '';
  width: .75rem; height: .75rem;
  border-radius: var(--r-pill);
  background: #fff;
}

.pdp-bundle__body { flex: 1; min-width: 0; }
.pdp-bundle__name {
  display: block;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--ink);
}
.pdp-bundle__promo {
  display: block;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  color: #C0392B;
  margin-top: .3rem;
  letter-spacing: .03em;
}

.pdp-bundle__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-md);
  color: var(--ink);
  white-space: nowrap;
}

/* ── Template search ── */
.pdp-template__field { position: relative; }
.pdp-template__input {
  width: 100%;
  height: 5.4rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 0 4.8rem 0 2rem;
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--ink);
  outline: none;
  transition: border-color .25s;
}
.pdp-template__input::placeholder { color: var(--muted); font-weight: 400; }
.pdp-template__input:focus { border-color: var(--ink); }
.pdp-template__icon {
  position: absolute;
  right: 1.8rem; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.pdp-template__dropdown {
  margin-top: .4rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.pdp-template__option {
  padding: 1.4rem 2rem;
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background .2s, color .2s;
}
.pdp-template__option:last-child { border-bottom: none; }
.pdp-template__option:hover { background: var(--border); color: var(--ink); }

/* ── Template Accordion ── */
.pdp-tpl-accordion {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg);
}
.pdp-tpl-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  letter-spacing: .03em;
  transition: background .2s;
}
.pdp-tpl-trigger:hover { background: #FAFAF8; }
.pdp-tpl-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.pdp-tpl-trigger[aria-expanded="true"] .pdp-tpl-chevron { transform: rotate(180deg); }
.pdp-tpl-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
  border-top: 0 solid var(--border);
}
.pdp-tpl-body.is-open {
  max-height: 44rem;
  border-top-width: 1px;
}
.pdp-tpl-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 1.2rem;
  gap: 0;
}
.pdp-tpl-tab {
  flex: 1;
  padding: 1rem 1.2rem;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.pdp-tpl-tab:hover { color: var(--ink); }
.pdp-tpl-tab.active { color: var(--ink); border-bottom-color: var(--warm); }
.pdp-tpl-list {
  max-height: 26rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

/* ── Carta Dedicatoria ── */
.pdp-carta { display: flex; flex-direction: column; gap: 1.2rem; }

.pdp-carta__hint {
  font-family: var(--sans);
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.5;
  margin-top: -.4rem;
}

.pdp-carta__options {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.pdp-carta__opt {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.6rem 1.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--bg);
  position: relative;
}
.pdp-carta__opt:has(input:checked) {
  border-color: var(--warm);
  background: #FFFDF9;
}
.pdp-carta__opt input { position: absolute; opacity: 0; pointer-events: none; }

/* Radio dot */
.pdp-carta__opt::before {
  content: '';
  flex-shrink: 0;
  width: 1.8rem; height: 1.8rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  margin-top: .15rem;
  transition: border-color .2s, background .2s;
  display: block;
}
.pdp-carta__opt:has(input:checked)::before {
  border-color: var(--warm);
  background: var(--warm);
  box-shadow: inset 0 0 0 3px #fff;
}

.pdp-carta__opt-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.pdp-carta__opt-label { display: flex; flex-direction: column; gap: .3rem; }
.pdp-carta__opt-title {
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
  line-height: 1.3;
}
.pdp-carta__opt-sub {
  font-family: var(--sans);
  font-size: var(--t-xs);
  color: var(--warm);
  font-weight: 700;
  letter-spacing: .04em;
}

/* Card previews (option 1) */
.pdp-carta__card-previews {
  display: flex;
  gap: .4rem;
  flex-shrink: 0;
}
.pdp-carta__card-preview {
  width: 2.8rem;
  height: 3.6rem;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,.06);
}

/* Pergamino icon (option 2) */
.pdp-carta__pergamino-icon {
  flex-shrink: 0;
  color: var(--warm);
  opacity: .7;
}

/* Skip link */
.pdp-carta__skip {
  align-self: flex-start;
  background: none;
  border: none;
  padding: .4rem 0;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
  cursor: pointer;
  transition: color .2s;
  text-decoration: none;
}
.pdp-carta__skip:hover { color: var(--ink); }

.pdp-carta__textarea-wrap {
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .3s;
  opacity: 0;
}
.pdp-carta__textarea-wrap.is-open {
  max-height: 18rem;
  opacity: 1;
}

.pdp-carta__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 1.4rem 1.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  font-family: var(--sans);
  font-size: var(--t-sm);
  color: var(--ink);
  line-height: 1.6;
  resize: none;
  transition: border-color .2s;
}
.pdp-carta__textarea:focus {
  outline: none;
  border-color: var(--warm);
  box-shadow: 0 0 0 3px rgba(155,123,82,.12);
}

.pdp-carta__counter {
  position: absolute;
  bottom: 1rem;
  right: 1.2rem;
  font-family: var(--sans);
  font-size: var(--t-xs);
  color: var(--muted);
  pointer-events: none;
}

/* ── Carta cards expand (sub-grid de 3 tarjetas) ── */
.pdp-carta__cards-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), opacity .3s;
}
.pdp-carta__cards-expand.is-open {
  max-height: 22rem;
  opacity: 1;
}

.pdp-carta__cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  padding: 1.2rem 0 .6rem;
}

.pdp-carta__card-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
}
.pdp-carta__card-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pdp-carta__card-visual {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: border-color .22s, transform .22s, box-shadow .22s;
}
.pdp-carta__card-opt:has(input:checked) .pdp-carta__card-visual {
  border-color: var(--warm);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(155,123,82,.3);
}

.pdp-carta__card-lines {
  position: absolute;
  bottom: 18%;
  left: 14%;
  right: 14%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pdp-carta__card-lines span {
  display: block;
  height: 1px;
  background: var(--line-color, rgba(26,26,26,.18));
}
.pdp-carta__card-lines span:nth-child(2) { width: 72%; }
.pdp-carta__card-lines span:nth-child(3) { width: 48%; }

.pdp-carta__card-name {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.pdp-carta__card-opt:has(input:checked) .pdp-carta__card-name {
  color: var(--warm);
}

/* ── PDP CTA ── */
.pdp-cta { display: flex; flex-direction: column; gap: 1.2rem; }
.pdp-cta .btn {
  width: 100%;
  justify-content: center;
  min-height: 5.8rem;
  font-size: var(--t-md);
  letter-spacing: .08em;
}
.pdp-cta__trust {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  letter-spacing: .06em;
}

/* ── Benefit sections ── */
.pdp-benefit {
  padding: var(--section-py) var(--px);
  border-top: 1px solid var(--border);
}

.pdp-benefit__inner {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.pdp-benefit__eyebrow {
  display: block;
  font-family: var(--editorial);
  font-style: italic;
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--warm);
  margin-bottom: 1.6rem;
}

.pdp-benefit__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 2.4rem;
}

.pdp-benefit__desc {
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  line-height: 1.8;
  color: var(--muted);
  max-width: 52ch;
}

.pdp-benefit__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.pdp-benefit__list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}
.pdp-benefit__list li::before {
  content: '';
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  margin-top: .2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239B7B52' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.pdp-benefit__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  display: block;
  background: var(--border);
}

/* ── Photo Reviews ── */
.photo-reviews {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}

.photo-reviews__header {
  padding: 0 var(--px);
  margin-bottom: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.photo-reviews__stars { display: flex; gap: .3rem; color: #C8A030; }

.photo-reviews__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -.01em;
  max-width: 22ch;
}

.photo-reviews__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 2rem;
  padding: 0 var(--px) 2.4rem;
}
.photo-reviews__track::-webkit-scrollbar { display: none; }

.pr-card {
  flex: 0 0 82vw;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow .35s ease, transform .35s var(--ease);
}
.pr-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }

.pr-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--border);
}

.pr-card__body {
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.pr-card__stars { display: flex; gap: .2rem; color: #C8A030; }

.pr-card__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-lg);
  line-height: 1.1;
  letter-spacing: .02em;
}

.pr-card__quote {
  font-family: var(--editorial);
  font-style: italic;
  font-size: var(--t-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}

.pr-card__author {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}

/* ── PDP Responsive 768px ── */
@media (min-width: 768px) {
  .pdp-buybox { padding-top: 0; }
  .pdp-buybox__inner { flex-direction: row; align-items: stretch; min-height: 80vh; }
  .pdp-buybox__gallery { flex: 0 0 50%; position: sticky; top: 0; height: 100vh; }
  .pdp-gallery__main-wrap { flex: 1; min-height: 0; }
  .pdp-gallery__main { width: 100%; height: 100%; aspect-ratio: unset; object-fit: contain; }
  .pdp-buybox__info { flex: 1; padding: 5rem 4rem 7rem; gap: 3.2rem; overflow-y: auto; }

  .pdp-benefit__inner { flex-direction: row; align-items: center; gap: 7rem; }
  .pdp-benefit__text  { flex: 1; }
  .pdp-benefit__visual { flex: 0 0 46%; }
  .pdp-benefit--reversed .pdp-benefit__inner { flex-direction: row-reverse; }

  .pr-card { flex: 0 0 42vw; }
}

/* ── PDP Responsive 1200px ── */
@media (min-width: 1200px) {
  .pdp-buybox__gallery { flex: 0 0 55%; }
  .pdp-buybox__info { padding: 6rem 6% 8rem; }
  .pdp-title { font-size: clamp(5.5rem, 5.5vw, 8rem); }

  .pdp-benefit__inner { gap: 10rem; }

  .pr-card { flex: 0 0 30vw; }
}

/* ════════════════════════════════════════════════════════
   PDP — Bundle cards premium (grid 3 col)
   ════════════════════════════════════════════════════════ */

.pdp-bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pdp-bundle-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem .5rem .7rem;
  gap: .4rem;
  transition: border-color .2s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
}
.pdp-bundle-card:hover:not(.active) { border-color: var(--pale); }
.pdp-bundle-card.active {
  border: 2px solid #1A1A1A;
  box-shadow: 0 4px 16px rgba(26,22,20,.1);
}

/* Tier label (SINGLE / DUO / TRIO) */
.pdp-bundle-card__tier {
  font-family: var(--sans);
  font-size: var(--t-2xs);
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  text-align: center;
}

.pdp-bundle-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F0EDE7;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.pdp-bundle-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.pdp-bundle-card__badge {
  position: absolute;
  top: .5rem;
  left: .5rem;
  z-index: 1;
  background: #FFE8E8;
  color: #C0392B;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .28rem .65rem;
  border-radius: var(--r-pill);
  line-height: 1.4;
  text-align: center;
}
.pdp-bundle-card__badge--sm { font-size: .75rem; padding: .25rem .55rem; }
.pdp-bundle-card__badge--free {
  background: #D1FAE5;
  color: #065F46;
}

.pdp-bundle-card__qty {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
  text-align: center;
}

.pdp-bundle-card__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
}

.pdp-bundle-card__price-old {
  font-family: var(--sans);
  font-size: var(--t-2xs);
  font-weight: 700;
  color: var(--muted);
  opacity: .55;
  text-decoration: line-through;
}

.pdp-bundle-card__price {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  text-align: center;
}

/* ════════════════════════════════════════════════════════
   PDP — Selector de páginas (pills)
   ════════════════════════════════════════════════════════ */

.pdp-pages {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.pdp-page-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .9rem 1.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--bg);
  cursor: pointer;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.2;
}
.pdp-page-pill:hover:not(.active) { border-color: var(--pale); background: #fff; }
.pdp-page-pill.active {
  border-color: #2563EB;
  border-width: 2px;
  color: #2563EB;
  background: #EFF6FF;
  box-shadow: 0 2px 8px rgba(37,99,235,.12);
}

.pdp-page-pill__extra {
  font-family: var(--sans);
  font-size: var(--t-2xs);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--warm);
  opacity: .85;
}

/* ════════════════════════════════════════════════════════
   PDP — Template list (acordeón con miniaturas)
   ════════════════════════════════════════════════════════ */

.pdp-tpl-list {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
}

.pdp-tpl-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid #EEE;
  cursor: pointer;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}
.pdp-tpl-row:last-child { border-bottom: none; }
.pdp-tpl-row:not(.pdp-tpl-row--header):hover { background: #F9F7F2; }
.pdp-tpl-row.is-selected { background: #F5F0E8; }

.pdp-tpl-row--header {
  cursor: default;
  background: #FAFAF8;
  padding: 1rem 1.6rem;
}

.pdp-tpl-row__thumb-ph {
  width: 3rem;
  height: 4rem;
  background: var(--border);
  border-radius: var(--r-xs);
  flex-shrink: 0;
}

.pdp-tpl-row__thumb {
  width: 3rem;
  height: 4rem;
  object-fit: cover;
  border-radius: var(--r-xs);
  flex-shrink: 0;
  display: block;
}

.pdp-tpl-row__name {
  flex: 1;
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--ink);
}
.pdp-tpl-row__name--placeholder {
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
}

.pdp-tpl-row__badge {
  background: #F0EDE7;
  color: var(--warm);
  font-family: var(--sans);
  font-size: var(--t-2xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   PDP — Zona de confianza profesional
   ════════════════════════════════════════════════════════ */

.pdp-trust-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #FAFAF8;
}

.pdp-trust-zone__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  flex: 1;
  text-align: center;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--ink);
}
.pdp-trust-zone__item svg { color: var(--warm); }

.pdp-trust-zone__sep {
  width: 1px;
  height: 3.2rem;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Trust inline (reemplaza trust-zone en PDP) ── */
.trust-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  padding: 1.2rem 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #FAFAF8;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--ink);
  white-space: nowrap;
}
.trust-item svg { color: var(--warm); flex-shrink: 0; }
.trust-divider {
  color: var(--border);
  font-size: var(--t-sm);
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Urgency countdown bar ── */
.pdp-countdown {
  background: #16130F;
  color: #F4F1EA;
  padding: 1rem var(--px);
}
.pdp-countdown__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.pdp-countdown__label {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C8A67A;
  white-space: nowrap;
}
.pdp-countdown__label svg {
  flex-shrink: 0;
  opacity: .85;
}
.pdp-countdown__blocks {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.pdp-countdown__block {
  background: #2A2420;
  border: 1px solid rgba(200,166,122,.2);
  border-radius: 4px;
  padding: .45rem .8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.4rem;
}
.pdp-countdown__num {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
  color: #F4F1EA;
}
.pdp-countdown__unit {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: #C8A67A;
  margin-top: .25rem;
}
.pdp-countdown__sep {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: #C8A67A;
  line-height: 1;
  margin-bottom: .6rem;
}

/* ── Launch badge ── */
.pdp-launch-badge {
  display: inline-block;
  background: #1A1A1A;
  color: #FFFFFF;
  font-family: var(--display);
  font-size: var(--t-2xs);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: var(--r-xs);
  margin-bottom: .8rem;
}

/* ── Bundle guide text ── */
.pdp-bundle-guide {
  margin-top: .9rem;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 400;
  color: #666;
  line-height: 1.55;
}

/* ── Carta card image ── */
.pdp-carta__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Shipping calculator ── */
.pdp-shipping-calc {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.pdp-shipping-calc__trigger {
  display: flex;
  align-items: center;
  gap: .8rem;
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em;
  text-align: left;
  transition: background .2s;
}
.pdp-shipping-calc__trigger:hover { background: #F5F3EF; }
.pdp-shipping-calc__trigger > svg:first-child { color: var(--warm); flex-shrink: 0; }
.pdp-shipping-calc__trigger > span { flex: 1; }

.pdp-shipping-calc__chevron {
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.pdp-shipping-calc__trigger[aria-expanded="true"] .pdp-shipping-calc__chevron {
  transform: rotate(180deg);
}

.pdp-shipping-calc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.pdp-shipping-calc__body.is-open { max-height: 22rem; }

.pdp-shipping-calc__estimate {
  padding: 0 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.pdp-shipping-calc__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
}
.pdp-shipping-calc__row:last-of-type { border-bottom: none; }

.pdp-shipping-calc__city {
  font-family: var(--sans);
  font-size: var(--t-sm);
  color: var(--ink);
  font-weight: 700;
}

.pdp-shipping-calc__days {
  font-family: var(--sans);
  font-size: var(--t-sm);
  color: var(--warm);
  font-weight: 700;
}

.pdp-shipping-calc__note {
  font-family: var(--sans);
  font-size: var(--t-xs);
  color: var(--muted);
  line-height: 1.5;
  padding-top: 1rem;
}

/* ════════════════════════════════════════════════════════
   MOBILE CENTRADO — solo text-align, sin alterar estructura
   ════════════════════════════════════════════════════════ */
@media screen and (max-width: 768px) {

  /* Carrusel horizontal compacto en móvil */
  .products__grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 15px !important;
    padding: 0 var(--px) 2rem !important;
  }
  .pcard {
    flex: 0 0 75% !important;
    scroll-snap-align: center !important;
    border-radius: var(--r-md) !important;
    border: 1px solid var(--border) !important;
  }
  .pcard__visual {
    height: 250px;
    aspect-ratio: unset;
  }
  .pcard__body {
    padding: 1.4rem 1.4rem 1.8rem !important;
    gap: .5rem !important;
  }

  /* Tarjetas de producto — centrado y proporciones compactas */
  .pcard__body,
  .pcard__cat,
  .pcard__name,
  .pcard__desc {
    text-align: center !important;
  }

  .pcard__name {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  .pcard__desc {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    padding: 0 5px !important;
  }

  .pcard__price {
    font-size: 16px !important;
    margin-bottom: 15px !important;
  }

  /* Botón link de cada tarjeta */
  .pcard__link {
    display: block !important;
    width: fit-content !important;
    margin: 0 auto 15px !important;
    font-size: 12px !important;
  }

  /* Sección 1-2-3 — solo centrar texto */
  .step__body,
  .step__title,
  .step__desc {
    text-align: center !important;
  }

  /* Imágenes de los pasos — centradas dentro del fondo gris */
  .step__visual img {
    display: block !important;
    margin: 0 auto !important;
  }

}

/* ════════════════════════════════════════════════════════
   STUDIO OVERLAY — Simulación de transición al editor
   ════════════════════════════════════════════════════════ */

.studio-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: #111;
  color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.studio-overlay.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.studio-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
  max-width: 52rem;
}

.studio-spinner {
  width: 40px; height: 40px;
  border: 2px solid #333;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px auto;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#close-studio {
  position: absolute;
  top: 30px; right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
  transition: opacity .2s;
}
#close-studio:hover { opacity: .7; }

/* ════════════════════════════════════════════════════════
   AJUSTES UI/UX — Logos, Menú, Login, Testimonios
   ════════════════════════════════════════════════════════ */

/* Ajuste de Logos y Menú Hamburguesa (Siempre Visible) */
.logo img, .header-logo img { height: 45px !important; width: auto !important; object-fit: contain; }
.menu-logo-bottom img { width: 90px !important; height: auto !important; }
.mobile-menu-toggle, .hamburger { display: flex !important; cursor: pointer; }

/* Portal de Login de Cuenta */
.login-portal { text-align: center; max-width: 450px; margin: 4rem auto; padding: 3rem 2rem; background: #fff; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.login-input { width: 100%; padding: 16px; margin: 20px 0; border: 1px solid #ddd; border-radius: 4px; font-family: 'Helvetica Neue', sans-serif; font-size: 1rem; box-sizing: border-box; }
.login-btn { display: inline-block; width: 100%; background-color: #111; color: #fff; font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 1.1rem; padding: 18px 0; text-decoration: none; border-radius: 40px; cursor: pointer; border: none; transition: background 0.3s; }
.login-btn:hover { background-color: #cba876; }

/* Carrusel de Testimonios (Páginas de Producto) */
.testimonials-wrapper { position: relative; width: 100%; max-width: 500px; margin: 3rem auto; overflow: hidden; padding: 1rem 0; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.testimonial-card { min-width: 100%; box-sizing: border-box; padding: 1.5rem; background: #fff; border: 1px solid #eaeaea; border-radius: 8px; }
.t-stars { color: #cba876; font-size: 1.2rem; margin-bottom: 10px; }
.t-quote { font-family: 'Helvetica Neue', sans-serif; font-size: 1rem; color: #444; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 15px; }
.t-avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.t-name { font-family: 'Oswald', sans-serif; font-size: 1rem; color: #111; text-transform: uppercase; margin: 0; }
.t-city { font-family: 'Helvetica Neue', sans-serif; font-size: 0.85rem; color: #888; margin: 0; }
.t-controls { display: flex; justify-content: center; gap: 20px; margin-top: 15px; }
.t-btn { background: #f4f4f4; border: none; width: 35px; height: 35px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; color: #111; transition: background 0.3s; }
.t-btn:hover { background: #eaeaea; }

/* ════════════════════════════════════════════════════════
   CRO AVANZADO — Precios, UGC, FAQ, Carrusel Premium
   ════════════════════════════════════════════════════════ */

/* FIX ABSOLUTO: Logo y Menú */
.logo img, .header-logo, .header-logo img, .nav-logo img { height: 60px !important; width: auto !important; max-height: none !important; opacity: 1 !important; visibility: visible !important; }
.nav__burger, .mobile-menu-toggle, .hamburger, .menu-icon { display: flex !important; opacity: 1 !important; visibility: visible !important; z-index: 1001 !important; cursor: pointer !important; }

/* Precios y Descuentos */
.price-conversion-box { display: flex; align-items: center; gap: 15px; margin: 15px 0 25px; flex-wrap: wrap; }
.price-current { font-family: 'Oswald', sans-serif; font-size: 2.2rem; color: #111; line-height: 1; }
.price-old { font-family: 'Helvetica Neue', sans-serif; font-size: 1.4rem; color: #999; text-decoration: line-through; }
.discount-pill { background-color: rgba(203,168,118,0.15); border: 1.5px dashed #cba876; color: #b8935c; font-family: 'Helvetica Neue', sans-serif; font-size: 0.95rem; font-weight: 600; padding: 6px 15px; border-radius: 30px; letter-spacing: 1px; }

/* Envío y Credibilidad */
.trust-badges { text-align: center; margin-top: 15px; font-family: 'Helvetica Neue', sans-serif; font-size: 0.9rem; color: #555; }
.trust-badges p { margin: 5px 0; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* Videos UGC */
.ugc-videos { display: flex; gap: 10px; margin: 25px 0 40px; justify-content: space-between; }
.ugc-card { flex: 1; aspect-ratio: 9/16; background-color: #f0f0f0; border-radius: 10px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 10px; border: 1px solid #eaeaea; }
.ugc-card img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.ugc-card::after { content: '▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-size: 2rem; background: rgba(0,0,0,0.5); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; border: 2px solid #fff; }
.ugc-text { position: relative; z-index: 3; background: rgba(255,255,255,0.9); color: #111; font-family: 'Helvetica Neue', sans-serif; font-size: 0.75rem; padding: 6px 8px; border-radius: 6px; font-weight: 500; text-align: center; width: 100%; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }

/* FAQ Acordeón de Producto */
.product-faq { margin: 40px 0; border-top: 1px solid #eaeaea; text-align: left; }
.p-faq-item { border-bottom: 1px solid #eaeaea; }
.p-faq-question { display: flex; justify-content: space-between; padding: 20px 0; font-family: 'Helvetica Neue', sans-serif; font-size: 1.05rem; font-weight: 500; cursor: pointer; color: #111; }
.p-faq-answer { max-height: 0; overflow: hidden; transition: all 0.3s ease; color: #666; font-family: 'Helvetica Neue', sans-serif; font-size: 0.95rem; line-height: 1.6; }
.p-faq-item.active .p-faq-answer { max-height: 200px; padding-bottom: 20px; }

/* Carrusel de Testimonios Avanzado */
.testim-container { position: relative; max-width: 600px; margin: 3rem auto; padding: 0 40px; }
.testim-track-wrapper { overflow: hidden; }
.testim-track { display: flex; transition: transform 0.5s ease; }
.t-card-new { min-width: 100%; padding: 25px; box-sizing: border-box; background: #fff; border: 2px solid #eaeaea; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); text-align: left; }
.t-quote-new { font-family: 'Helvetica Neue', sans-serif; font-size: 1.05rem; color: #333; line-height: 1.6; margin-bottom: 20px; }
.t-author-row { display: flex; align-items: center; gap: 12px; }
.t-avatar-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.t-name-meta { display: flex; align-items: center; gap: 6px; font-family: 'Helvetica Neue', sans-serif; font-weight: 600; color: #111; font-size: 1rem; }
.meta-badge { width: 16px; height: 16px; fill: #1877F2; }
.t-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: #fff; border: 1px solid #ddd; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
#t-prev-btn { left: 0px; }
#t-next-btn { right: 0px; }

/* Paso 4: Product grid — imágenes contenidas, sin recorte */
.pcard__visual--book,
.pcard__visual--classic,
.pcard__visual--artista,
.pcard__visual--especiales,
.pcard__visual--essentials,
.pcard__visual--merch {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #f6f6f6 !important;
}
.pcard__img {
  height: 250px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
  background-color: #f6f6f6 !important;
}

/* ════════════════════════════════════════════════════════
   RITUAL — El Empaque: Timeline Apple-style (dark)
   ════════════════════════════════════════════════════════ */
.ritual-bg {
  background-color: #0a0a0a;
  color: #fff;
  padding: 10rem 1.5rem 6rem;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.ritual-bg .timeline-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
/* Vertical golden connector behind steps */
.ritual-bg .timeline-main-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(203, 168, 118, 0.12);
  z-index: 0;
}
/* Step — default: dimmed and scaled down */
.ritual-bg .timeline-step {
  padding-left: 40px;
  margin-bottom: 6rem;
  position: relative;
  z-index: 1;
  border-left: 2px solid rgba(203, 168, 118, 0.15);
  opacity: 0.22;
  transform: scale(0.82);
  transform-origin: left center;
  will-change: transform, opacity;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.6s ease;
}
/* Dot — default: muted, border punches out of dark bg */
.ritual-bg .timeline-step::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: rgba(203, 168, 118, 0.25);
  border: 2px solid #0a0a0a;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.55s ease, box-shadow 0.55s ease;
}
/* Step — active: fully lit, full size */
.ritual-bg .timeline-step.active {
  opacity: 1 !important;
  transform: scale(1) !important;
  border-left-color: #cba876;
}
/* Dot — active: golden glow */
.ritual-bg .timeline-step.active::before {
  background: #cba876;
  border-color: #0a0a0a;
  box-shadow: 0 0 16px rgba(203, 168, 118, 0.7);
}
/* Step title — dim on inactive, golden on active */
.ritual-bg .step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 10px;
  transition: color 0.55s ease;
}
.ritual-bg .timeline-step.active .step-title {
  color: #cba876;
}
/* Step description */
.ritual-bg .step-desc {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 24px;
  transition: color 0.55s ease;
}
.ritual-bg .timeline-step.active .step-desc {
  color: rgba(255, 255, 255, 0.8);
}
/* Step photo placeholder */
.ritual-bg .step-photo {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4 / 3;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: border-color 0.55s ease, box-shadow 0.55s ease;
}
.ritual-bg .timeline-step.active .step-photo {
  border-color: rgba(203, 168, 118, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
/* Sello artesanal image */
.sello-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* CTA at bottom of timeline */
.ritual-bg .ritual-cta-container {
  text-align: center;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ritual-cta-btn {
  display: inline-block;
  background-color: #fff;
  color: #111;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1.1rem;
  padding: 18px 48px;
  text-decoration: none;
  border-radius: 40px;
  letter-spacing: 1.5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.ritual-cta-btn:hover {
  background-color: #cba876;
  color: #fff;
}

/* ════════════════════════════════════════════════════════
   ACCORDION "+" — Artesanos y Producto
   ════════════════════════════════════════════════════════ */
.accordion-arrow { font-size: 1.5rem; color: #999; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), color 0.3s ease; display: inline-block; line-height: 1; }
.accordion-item.active .accordion-arrow { transform: rotate(45deg); color: #cba876; }
