/* =========================================================
   AllBeauty Importados — Sistema de diseño
   Paleta neutra (blanco, negro, dorado suave)
   Serif para títulos · Sans-serif para texto
   ========================================================= */

:root {
  /* Color */
  --bg: #ffffff;
  --bg-soft: #faf7f2;
  --bg-beige: #f4ede3;
  --ink: #1b1714;
  --ink-soft: #6f665c;
  --ink-mute: #9a9088;
  --gold: #c3a261;
  --gold-dark: #a8853f;
  --gold-soft: #e9dcc1;
  --line: #ece5d9;
  --line-strong: #ddd3c4;
  --white: #ffffff;

  /* Tipografía */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  /* Métricas */
  --maxw: 1280px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --radius: 2px;
  --shadow-sm: 0 1px 2px rgba(27, 23, 20, 0.04);
  --shadow-md: 0 12px 30px rgba(27, 23, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(27, 23, 20, 0.14);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 76px;
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: 0.01em; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ----------  Botones  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95em 1.8em;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--solid { background: var(--ink); color: var(--white); }
.btn--solid:hover { background: var(--gold-dark); }
.btn--ghost { color: var(--ink); border: 1px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--outline { color: var(--ink); border: 1px solid var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--block { width: 100%; }

/* ----------  Badges  ---------- */
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5em 0.9em;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--ink);
  border: 1px solid rgba(27, 23, 20, 0.1);
  border-radius: 999px;
}
.badge--destacado,
.badge--edición-limitada { color: var(--gold-dark); border-color: var(--gold); }

/* ----------  Barra de anuncios  ---------- */
.announce {
  background: var(--ink);
  color: #f4ede3;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7em 1rem;
  font-weight: 300;
}

/* ----------  Header  ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand__monogram {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand__sub {
  font-size: 9.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
  padding-left: 2px;
}

.nav {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.4rem);
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.4em 0;
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold-dark); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.icon-btn {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.icon-btn:hover { background: var(--bg-beige); color: var(--gold-dark); }
.icon-btn--cart { position: relative; }
.cart-count {
  position: absolute;
  top: 4px; right: 2px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--gold-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  border-radius: 999px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.cart-count.is-empty { display: none; }

/* Botón menú (hamburguesa) */
.header__menu { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.header__menu span {
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: 0.3s var(--ease);
}
body.menu-open .header__menu span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.menu-open .header__menu span:nth-child(2) { opacity: 0; }
body.menu-open .header__menu span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ----------  Layout general  ---------- */
main { min-height: 60vh; }
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6.5vw, 6rem) var(--gutter);
}
.section--all { padding-top: 0; }
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.section__title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.section__head--center .section__title::after {
  content: ''; display: block; width: 46px; height: 2px;
  background: var(--gold); margin: 0.9rem auto 0;
}
.section__link, .section__link:visited {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}
.section__link:hover { color: var(--gold-dark); }

/* ----------  Hero  ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem) var(--gutter) clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.98;
  text-wrap: balance;
}
.hero__text {
  max-width: 42ch;
  color: var(--ink-soft);
  margin: 1.6rem 0 2.2rem;
  font-size: 16px;
  font-weight: 300;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-beige);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: clamp(2rem, 5vw, 4rem);
  transition: transform 0.6s var(--ease);
}
.hero__media:hover img { transform: scale(1.04); }
.hero__media-caption {
  position: absolute;
  left: 24px; bottom: 22px;
  display: flex; flex-direction: column;
  gap: 2px;
}
.hero__media-caption span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__media-caption strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

/* ----------  Categorías (cards)  ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cat-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  padding: 1.5rem 1.4rem;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}
.cat-card--plain { background-image: linear-gradient(150deg, #3a322b, var(--ink)); }
.cat-card__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20, 17, 15, 0.86) 0%, rgba(20, 17, 15, 0.35) 52%, rgba(20, 17, 15, 0.08) 100%);
  transition: opacity 0.35s var(--ease);
}
.cat-card:hover .cat-card__overlay { opacity: 0.8; }
.cat-card__content { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 0.3rem; }
.cat-card__name { font-family: var(--serif); font-size: 1.5rem; color: var(--white); }
.cat-card__tag { font-size: 12px; color: rgba(255, 255, 255, 0.82); font-weight: 300; }
.cat-card__arrow {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-soft); margin-top: 0.4rem;
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.cat-card:hover .cat-card__arrow { opacity: 1; transform: translateX(0); }

/* ----------  Grilla de productos  ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}
.card { position: relative; display: flex; flex-direction: column; }
.card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1.6rem;
  mix-blend-mode: multiply;
  transition: transform 0.5s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }
.card:hover .card__media { border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.card__quickadd {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85em;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.32s var(--ease);
}
.card__quickadd:hover { background: var(--gold-dark); }
.card:hover .card__quickadd { opacity: 1; transform: translateY(0); }

.card__body { padding: 1rem 0.2rem 0; display: flex; flex-direction: column; gap: 3px; }
.card__brand {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.card__name { font-size: 1.05rem; font-weight: 500; }
.card__name a:hover { color: var(--gold-dark); }
.card__subtitle { font-size: 12px; color: var(--ink-mute); font-weight: 300; }
.card__rating { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.45rem; font-size: 11px; color: var(--ink-soft); }
.card__rating .stars { font-size: 12px; }
.card__price { margin-top: 0.4rem; font-size: 0.98rem; font-weight: 500; letter-spacing: 0.02em; }

/* ----------  Banda de beneficios  ---------- */
.promo {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.promo__item {
  padding: clamp(2rem, 4vw, 3rem) var(--gutter);
  text-align: center;
  border-right: 1px solid var(--line);
}
.promo__item:last-child { border-right: none; }
.promo__item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.promo__item p { font-size: 13px; color: var(--ink-soft); font-weight: 300; max-width: 34ch; margin: 0 auto; }

/* ----------  Sección de envíos  ---------- */
.shipping {
  background: var(--ink);
  color: var(--bg-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.shipping__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6.5vw, 6rem) var(--gutter);
}
.shipping__head { text-align: center; margin-bottom: clamp(2rem, 4.5vw, 3.5rem); }
.shipping__title {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  color: var(--white);
  letter-spacing: 0.01em;
}
.shipping__title::after {
  content: ''; display: block; width: 46px; height: 2px;
  background: var(--gold); margin: 1rem auto 0;
}
.shipping__subtitle {
  margin: 1.3rem auto 0;
  max-width: 56ch;
  color: rgba(250, 247, 242, 0.7);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 300;
  line-height: 1.6;
}
.shipping__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.3rem);
}
.ship-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: clamp(1.4rem, 2.4vw, 2rem) clamp(1.1rem, 2vw, 1.6rem);
  text-align: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.ship-card:hover {
  border-color: rgba(195, 162, 97, 0.55);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}
.ship-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(195, 162, 97, 0.12);
  border: 1px solid rgba(195, 162, 97, 0.3);
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.ship-card__title { font-size: 1.1rem; color: var(--white); margin-bottom: 0.5rem; }
.ship-card__desc {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.62);
  font-weight: 300;
  line-height: 1.55;
  max-width: 30ch;
  margin: 0 auto;
}
.shipping__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem clamp(1.2rem, 3vw, 2.4rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 0;
}
.shipping__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bg-soft);
}
.shipping__chip svg {
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  padding: 3px;
  width: 19px; height: 19px;
  flex-shrink: 0;
}
@media (max-width: 900px) { .shipping__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .shipping__grid { grid-template-columns: 1fr; } }

/* ----------  Quiénes somos  ---------- */
.about__body { max-width: 720px; margin: 0 auto; text-align: center; }
.about__logo {
  width: 92px; height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto clamp(1.2rem, 2.5vw, 1.8rem);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}
.about__text {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem);
}
.about__text strong { color: var(--ink); font-weight: 500; }
.about__socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about__social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-align: left;
  padding: 1.05rem 1.3rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--white);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.about__social:hover {
  border-color: var(--gold);
  background: var(--bg-soft);
  transform: translateY(-3px);
}
.about__social svg { color: var(--gold-dark); flex-shrink: 0; }
.about__social span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.3;
}
.about__social strong { font-size: 15px; color: var(--ink); font-weight: 600; letter-spacing: 0.01em; }
@media (max-width: 560px) { .about__socials { grid-template-columns: 1fr; } }

/* ----------  Página de transferencia  ---------- */
.transfer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.transfer__card {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.transfer__amount {
  text-align: center;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.transfer__amount-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.4rem;
}
.transfer__amount-value { font-family: var(--serif); font-size: clamp(2rem, 5vw, 2.8rem); color: var(--ink); }
.transfer__list { margin-bottom: 1.3rem; }
.transfer__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.transfer__row:last-child { border-bottom: none; }
.transfer__row-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.transfer__row-value { font-size: 14px; color: var(--ink); font-weight: 500; word-break: break-all; text-align: right; }
.transfer__copy {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.4em 0.95em;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}
.transfer__copy:hover { background: var(--gold); color: var(--white); }
.transfer__sample { font-size: 12px; color: var(--ink-mute); text-align: center; margin-bottom: 1.1rem; }
.transfer__sample code { font-family: ui-monospace, monospace; font-size: 11px; background: var(--bg-beige); padding: 0.1em 0.4em; border-radius: 4px; }
.transfer__card .btn { margin-top: 0.7rem; }
.transfer__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: var(--bg-soft);
  border-radius: 16px;
}
.transfer__steps li { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.transfer__steps strong { color: var(--gold-dark); margin-right: 0.3rem; }
@media (max-width: 760px) { .transfer { grid-template-columns: 1fr; } }

/* ----------  Cabecera de página (categoría / búsqueda)  ---------- */
.page-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter) 0;
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.2rem;
}
.breadcrumb a:hover { color: var(--gold-dark); }
.page-head__title { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-head__tag { color: var(--ink-soft); font-weight: 300; margin-top: 0.5rem; }
.page-head__count { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 1rem; }

/* ----------  Detalle de producto (PDP)  ---------- */
.pdp { max-width: var(--maxw); margin: 0 auto; padding: clamp(1.5rem, 4vw, 2.5rem) var(--gutter) 0; }
.pdp .breadcrumb { margin-bottom: 2rem; }
.pdp__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: start;
}
.pdp__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.pdp__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: clamp(2rem, 5vw, 4rem);
  mix-blend-mode: multiply;
}
.pdp__brand {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.7rem;
}
.pdp__name { font-size: clamp(2rem, 4.5vw, 3rem); }
.pdp__subtitle { color: var(--ink-soft); font-weight: 300; margin-top: 0.6rem; }
.pdp__price { font-size: 1.6rem; font-weight: 500; margin: 1.4rem 0; }
.pdp__desc { color: var(--ink-soft); font-weight: 300; line-height: 1.8; max-width: 52ch; }

.pdp__buy { display: flex; gap: 0.8rem; margin: 2rem 0 1.8rem; align-items: stretch; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.qty__btn {
  width: 46px; height: 100%;
  min-height: 46px;
  font-size: 18px;
  color: var(--ink);
  display: grid; place-items: center;
  transition: color 0.2s var(--ease);
}
.qty__btn:hover { color: var(--gold-dark); }
.qty__value { min-width: 38px; text-align: center; font-size: 14px; font-weight: 500; }
.qty--sm .qty__btn { width: 32px; min-height: 32px; font-size: 15px; }
.qty--sm .qty__value { min-width: 28px; font-size: 13px; }
.pdp__buy .btn { flex: 1; }

.pdp__details {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pdp__details li {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 300;
  padding-left: 1.2rem;
  position: relative;
}
.pdp__details li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.pdp__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.pdp__assurances span { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; }

.pdp__authentic {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.3rem;
  font-size: 12px; letter-spacing: 0.02em; color: var(--gold-dark); font-weight: 500;
}
.pdp__authentic svg { flex: none; }

.pyramid {
  margin: 0 0 1.6rem; padding: 1.1rem 1.3rem;
  background: var(--bg-beige); border-radius: var(--radius);
}
.pyramid__title { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 0.6rem; }
.pyramid__row { display: flex; gap: 0.8rem; padding: 0.4rem 0; border-top: 1px solid var(--line); }
.pyramid__row:first-of-type { border-top: none; }
.pyramid__label { flex: none; width: 70px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); padding-top: 2px; }
.pyramid__notes { font-size: 13.5px; color: var(--ink); }

/* ----------  Estados vacíos  ---------- */
.empty {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.empty--page { max-width: var(--maxw); margin: 3rem auto; }
.empty__title { font-family: var(--serif); font-size: 1.8rem; }
.empty__text { color: var(--ink-soft); font-weight: 300; line-height: 1.7; }
.empty .btn { margin-top: 0.6rem; }

/* ----------  Footer  ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); margin-top: 2rem; }
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.brand--footer { margin-bottom: 1.4rem; }
.footer__about { color: var(--ink-soft); font-weight: 300; font-size: 13.5px; max-width: 40ch; line-height: 1.8; }
.footer__social { display: flex; gap: 1.2rem; margin-top: 1.4rem; }
.footer__social a {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color 0.25s var(--ease);
}
.footer__social a:hover { border-color: var(--gold-dark); }
.footer__col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.footer__col a, .footer__contact p {
  display: block;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 0.7rem;
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: var(--gold-dark); }
.newsletter { margin-top: 1.6rem; }
.newsletter label {
  display: block;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 0.7rem; font-weight: 500;
}
.newsletter__row { display: flex; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.newsletter__row input { flex: 1; border: none; padding: 0.8em 1em; font-size: 13px; background: var(--white); outline: none; min-width: 0; }
.newsletter__row .btn { padding-inline: 1.2em; border-radius: 0; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1.6rem var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

/* ----------  Overlays compartidos  ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 23, 20, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  z-index: 80;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
body.cart-open .overlay--cart,
body.search-open .overlay--search { opacity: 1; visibility: visible; }

/* ----------  Drawer del carrito  ---------- */
.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--bg);
  z-index: 90;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-lg);
}
body.cart-open .drawer { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--line);
}
.drawer__head h2 { font-size: 1.4rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 1rem 1.6rem; }
.drawer__foot { border-top: 1px solid var(--line); padding: 1.4rem 1.6rem; background: var(--bg-soft); }

.cart-empty { text-align: center; padding: 4rem 1rem; display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.cart-empty p { font-family: var(--serif); font-size: 1.3rem; }
.cart-empty span { color: var(--ink-soft); font-weight: 300; font-size: 13px; margin-bottom: 1rem; }

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.9rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-line__media {
  width: 72px; height: 90px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid; place-items: center;
}
.cart-line__media img { object-fit: contain; padding: 0.5rem; mix-blend-mode: multiply; max-height: 100%; }
.cart-line__brand { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.cart-line__name { font-family: var(--serif); font-size: 1.02rem; margin: 2px 0 0.3rem; }
.cart-line__price { font-size: 12.5px; color: var(--ink-soft); }
.cart-line__controls { display: flex; align-items: center; gap: 0.8rem; margin-top: 0.6rem; }
.cart-line__remove { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); transition: color 0.2s var(--ease); }
.cart-line__remove:hover { color: var(--gold-dark); }
.cart-line__total { font-size: 13.5px; font-weight: 500; white-space: nowrap; }

.cart-foot__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
.cart-foot__row span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.cart-foot__row strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }
.cart-foot__ship { font-size: 12px; color: var(--gold-dark); margin-bottom: 1.1rem; }

/* Cupón de descuento en el carrito */
.cart-coupon { display: flex; gap: 0.5rem; margin: 0.3rem 0 0.9rem; }
.cart-coupon__input {
  flex: 1; min-width: 0; padding: 0.6rem 0.8rem;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  font-size: 16px; background: var(--white);
}
.cart-coupon__input:focus { outline: none; border-color: var(--gold); }
.cart-coupon__btn {
  padding: 0 1.1rem; border: 1px solid var(--ink); background: var(--ink); color: var(--white);
  border-radius: var(--radius); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.cart-coupon__btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.cart-coupon--active {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  margin: 0.3rem 0 0.5rem; padding: 0.55rem 0.8rem;
  background: var(--bg-beige); border-radius: var(--radius); font-size: 12px; color: var(--ink);
}
.cart-coupon--active strong { letter-spacing: 0.05em; }
.cart-coupon__remove {
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute);
  transition: color 0.2s var(--ease); white-space: nowrap;
}
.cart-coupon__remove:hover { color: var(--gold-dark); }
.cart-foot__row--total strong { font-family: var(--serif); font-size: 1.2rem; }

.drawer__foot .btn { margin-bottom: 0.6rem; }
.drawer__foot .btn:last-child { margin-bottom: 0; }

/* ----------  Checkout (drawer con formulario)  ---------- */
.drawer--checkout { width: min(480px, 100%); }
body.checkout-open .overlay--checkout { opacity: 1; visibility: visible; }
body.checkout-open .drawer--checkout { transform: translateX(0); }

/* Indicador de pasos (1 Tus datos · 2 Pago) */
.checkout-steps { display: flex; gap: 0.4rem; list-style: none; margin: 0; padding: 1rem 1.6rem 0; }
.checkout-steps__item {
  flex: 1; display: flex; align-items: center; gap: 0.5rem;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mute); padding-bottom: 0.7rem; border-bottom: 2px solid var(--line);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.checkout-steps__num {
  width: 19px; height: 19px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--line); color: var(--ink-soft); font-size: 10.5px; font-weight: 600;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
#checkoutDrawer[data-step="datos"] [data-step-ind="datos"],
#checkoutDrawer[data-step="envio"] [data-step-ind="envio"],
#checkoutDrawer[data-step="pago"] [data-step-ind="pago"] { color: var(--ink); border-bottom-color: var(--gold-dark); }
#checkoutDrawer[data-step="datos"] [data-step-ind="datos"] .checkout-steps__num,
#checkoutDrawer[data-step="envio"] [data-step-ind="envio"] .checkout-steps__num,
#checkoutDrawer[data-step="pago"] [data-step-ind="pago"] .checkout-steps__num { background: var(--gold-dark); color: var(--white); }

/* Mostrar solo el paso activo */
.checkout-step { display: flex; flex-direction: column; gap: 1.7rem; }
#checkoutDrawer[data-step="datos"] .checkout-step:not([data-step="datos"]),
#checkoutDrawer[data-step="envio"] .checkout-step:not([data-step="envio"]),
#checkoutDrawer[data-step="pago"] .checkout-step:not([data-step="pago"]) { display: none; }

/* Botones del pie según el paso activo */
#checkoutDrawer:not([data-step="pago"]) [data-checkout-send] { display: none; }
#checkoutDrawer[data-step="pago"] #checkoutNext { display: none; }
#checkoutDrawer[data-step="datos"] [data-checkout-back] { display: none; }
#checkoutDrawer:not([data-step="datos"]) [data-back-cart] { display: none; }

.checkout-ship__free { font-size: 12.5px; color: var(--gold-dark); margin-bottom: 0.2rem; }

.checkout-form { display: flex; flex-direction: column; gap: 1.7rem; }
.checkout-form__section { border: 0; margin: 0; padding: 0; min-width: 0; }
.checkout-form__section legend {
  font-family: var(--serif); font-size: 1.2rem; padding: 0; margin-bottom: 0.9rem;
}
.checkout-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.checkout-form .field-block {
  display: flex; flex-direction: column; gap: 0.35rem; margin: 0;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);
}
.checkout-form .field-block--full { grid-column: 1 / -1; }
.checkout-form input,
.checkout-form textarea { text-transform: none; letter-spacing: normal; color: var(--ink); }
.checkout-form textarea { min-height: 62px; resize: vertical; }

.checkout-pay { display: flex; flex-direction: column; gap: 0.6rem; }
.checkout-pay__opt {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.checkout-pay__opt:hover { border-color: var(--ink); }
.checkout-pay__opt input { margin-top: 3px; accent-color: var(--gold-dark); flex: none; }
.checkout-pay__opt:has(input:checked) { border-color: var(--gold-dark); background: var(--bg-beige); }
.checkout-pay__text { display: flex; flex-direction: column; gap: 2px; }
.checkout-pay__text strong { font-weight: 500; color: var(--ink); }
.checkout-pay__text small { font-size: 11.5px; color: var(--ink-soft); font-weight: 300; }

/* Para regalo + muestra */
.checkout-gift__toggle { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 13px; color: var(--ink); cursor: pointer; }
.checkout-gift__toggle input { margin-top: 2px; accent-color: var(--gold-dark); flex: none; }
.checkout-gift__msg { display: none; }
.checkout-gift:has(input[name="regalo"]:checked) .checkout-gift__msg { display: block; margin-top: 0.9rem; }
.checkout-gift__sample { margin-top: 1rem; padding: 0.75rem 0.9rem; background: var(--bg-beige); border-radius: var(--radius); font-size: 12.5px; color: var(--ink-soft); text-align: center; }
.checkout-gift__sample strong { color: var(--gold-dark); }

.checkout-summary { margin-bottom: 1rem; }
.checkout-summary__row {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: 12.5px; color: var(--ink-soft); margin-bottom: 0.3rem;
}
.checkout-summary__row span:last-child { color: var(--ink); white-space: nowrap; }
.checkout-summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--line); margin-top: 0.6rem; padding-top: 0.6rem;
}
.checkout-summary__total span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.checkout-summary__total strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--ink); }

/* ----------  Panel de búsqueda  ---------- */
.search-panel {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bg);
  z-index: 90;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-md);
}
body.search-open .search-panel { transform: translateY(0); }
.search-panel__inner { max-width: 760px; margin: 0 auto; padding: clamp(1.4rem, 4vw, 2.6rem) var(--gutter); }
.search-bar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.9rem;
  color: var(--ink-soft);
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-family: var(--serif);
  color: var(--ink);
  background: transparent;
}
.search-bar__close {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.search-bar__close:hover { color: var(--gold-dark); }
.search-results { margin-top: 1.6rem; min-height: 80px; }
.search__hint { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.search__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.chip {
  font-size: 12px; letter-spacing: 0.08em;
  padding: 0.5em 1.1em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.search-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.2s var(--ease);
}
.search-row:hover { padding-left: 0.6rem; }
.search-row img { width: 52px; height: 64px; object-fit: contain; mix-blend-mode: multiply; background: var(--white); }
.search-row span { display: flex; flex-direction: column; gap: 2px; }
.search-row em { font-style: normal; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.search-row strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.search-row b { font-size: 13px; font-weight: 500; }

/* ----------  Toast  ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--white);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s var(--ease);
  box-shadow: var(--shadow-md);
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ----------  Animación de entrada  ---------- */
#app > section { animation: fade-up 0.5s var(--ease) both; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----------  Reveal al scrollear  ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  #app > section { animation: none; }
  #starfield { display: none; }
}

/* ----------  Franja de garantías (bajo el hero)  ---------- */
.trust-strip {
  max-width: var(--maxw);
  margin: clamp(0.5rem, 2vw, 1.4rem) auto 0;
  padding: 0 var(--gutter);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.05rem 0.9rem;
  border-left: 1px solid var(--line);
}
.trust-strip__item:first-child { border-left: none; }
.trust-strip__item svg { color: var(--gold-dark); flex-shrink: 0; }
.trust-strip__item span { font-size: 12px; color: var(--ink); letter-spacing: 0.02em; line-height: 1.25; }

/* ----------  Favoritos (corazón)  ---------- */
.icon-btn--fav { position: relative; }
.card__wish {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(4px);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), color 0.2s var(--ease);
}
.card:hover .card__wish, .card__wish.is-active { opacity: 1; transform: none; }
.card__wish:hover, .card__wish.is-active { color: var(--gold-dark); }
.card__wish.is-active svg { fill: var(--gold-dark); }
.pdp__wish {
  width: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}
.pdp__wish:hover { border-color: var(--ink); color: var(--gold-dark); }
.pdp__wish.is-active { color: var(--gold-dark); border-color: var(--gold); background: var(--gold-soft); }
.pdp__wish.is-active svg { fill: var(--gold-dark); }

/* ----------  Estrellas / rating  ---------- */
.stars {
  display: inline-block;
  position: relative;
  font-size: 13px;
  line-height: 1;
  width: 5.6em;
  height: 1em;
  vertical-align: middle;
}
.stars::before, .stars::after {
  content: '★★★★★';
  position: absolute;
  top: 0; left: 0;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.stars::before { color: var(--line-strong); }
.stars::after { color: var(--gold-dark); width: var(--fill, 0%); overflow: hidden; }
.pdp__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 12.5px;
  transition: color 0.2s var(--ease);
}
.pdp__rating:hover { color: var(--gold-dark); }

/* ----------  Reseñas  ---------- */
.reviews { border-top: 1px solid var(--line); }
.reviews__summary { margin-bottom: 1.6rem; }
.reviews__score { display: flex; align-items: center; gap: 0.7rem; }
.reviews__score strong { font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.reviews__score span { font-size: 12px; color: var(--ink-soft); }
.reviews__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.review { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.review__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.review__name { font-weight: 600; font-size: 13px; letter-spacing: 0.02em; }
.review__date { font-size: 11px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.1em; margin: 0.35rem 0 0.7rem; }
.review__text { font-size: 13.5px; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }
.reviews__empty { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; text-align: center; }
.reviews__empty p { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.3rem; }
.reviews__empty span { font-size: 13px; color: var(--ink-soft); font-weight: 300; }

/* ----------  Toolbar de categoría (filtros + orden)  ---------- */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.toolbar__count { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.toolbar__controls { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.field { display: inline-flex; align-items: center; gap: 0.5rem; }
.field > span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.field select {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink);
  padding: 0.62em 2.2em 0.62em 0.9em;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236f665c' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right 0.85em center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}
.field select:hover { border-color: var(--ink); }

/* ----------  Páginas de info (prosa + FAQ)  ---------- */
.info { max-width: 760px; margin: 0 auto; }
.info p { color: var(--ink-soft); font-weight: 300; line-height: 1.85; margin-bottom: 1.1rem; font-size: 15px; }
.info h3 { font-size: 1.3rem; margin: 2rem 0 0.85rem; }
.info strong { color: var(--ink); font-weight: 500; }
.info__list { margin: 0 0 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.info__list li { position: relative; padding-left: 1.3rem; color: var(--ink-soft); font-weight: 300; line-height: 1.7; font-size: 14px; }
.info__list li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.info__list strong { color: var(--ink); font-weight: 500; }

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 1.12rem; color: var(--ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; background: var(--gold-dark); transition: transform 0.3s var(--ease); }
.faq__icon::before { top: 6px; left: 0; width: 14px; height: 1.5px; }
.faq__icon::after { top: 0; left: 6px; width: 1.5px; height: 14px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__a { padding: 0 0 1.3rem; }
.faq__a p { color: var(--ink-soft); font-weight: 300; line-height: 1.8; font-size: 14px; max-width: 64ch; margin: 0; }

.footer__more {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.2s var(--ease);
}
.footer__more:hover { color: var(--gold-dark); }

/* ----------  Lightbox de imagen  ---------- */
.pdp__media { cursor: zoom-in; }
.pdp__zoom {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(4px);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}
.pdp__media:hover .pdp__zoom { opacity: 1; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(27, 23, 20, 0.9);
  backdrop-filter: blur(6px);
  z-index: 130;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 6vw, 5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
body.lightbox-open .lightbox { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(680px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3rem);
  transform: scale(0.96);
  transition: transform 0.35s var(--ease);
}
body.lightbox-open .lightbox img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 22px; right: 24px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s var(--ease);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.24); }

/* ----------  Sección de marcas  ---------- */
.section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section__subtitle {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 52ch;
}
.brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 116px;
  padding: 1.5rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.brands__item:hover {
  color: var(--gold-dark);
  background: var(--bg-soft);
}

/* ----------  Contacto  ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__wa {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  transition: background 0.25s var(--ease);
}
.contact__wa:hover { background: #2c2620; }
.contact__wa svg { flex: none; color: var(--gold-soft); }
.contact__wa span { display: flex; flex-direction: column; font-size: 0.9rem; line-height: 1.4; color: var(--gold-soft); }
.contact__wa strong { font-size: 1rem; color: var(--white); }
.contact__list {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.contact__list li { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact__list svg { flex: none; color: var(--gold-dark); margin-top: 2px; }
.contact__list div { display: flex; flex-direction: column; }
.contact__list span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1px;
}
.contact__list a { transition: color 0.2s var(--ease); }
.contact__list a:hover { color: var(--gold-dark); }
.contact__form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}
.contact__form-title { font-size: 1.4rem; margin-bottom: 1.4rem; }
.field-block { display: block; margin-bottom: 1.1rem; }
.field-block > span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.field-block input,
.field-block textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease);
}
.field-block input:focus,
.field-block textarea:focus { outline: none; border-color: var(--gold); }
.field-block textarea { resize: vertical; min-height: 120px; }
.contact__note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--ink-mute);
  text-align: center;
}

/* ----------  Banner de cookies  ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  background: var(--white);
  border-top: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.cookie-banner__text { font-size: 0.9rem; color: var(--ink-soft); max-width: 64ch; }
.cookie-banner__text a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: 0.7rem; flex: none; }
.cookie-banner__actions .btn { padding: 0.7em 1.5em; }

/* =========================================================
   Responsive
   ========================================================= */
/* ----------  WhatsApp flotante  ---------- */
.wa-float {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  z-index: 50;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5); }
.wa-float svg { position: relative; z-index: 1; }
.wa-float__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; opacity: 0.45;
  animation: waPulse 2.6s var(--ease) infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.45; }
  70%, 100% { transform: scale(1.75); opacity: 0; }
}

/* ----------  Pop-up de bienvenida  ---------- */
.overlay--welcome { z-index: 95; }
body.welcome-open .overlay--welcome { opacity: 1; visibility: visible; }
.welcome {
  position: fixed; z-index: 96;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  width: min(420px, calc(100% - 2.2rem));
  background: var(--bg);
  border-radius: 6px;
  padding: 2.5rem 1.9rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s var(--ease);
}
body.welcome-open .welcome { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }
.welcome__close { position: absolute; top: 8px; right: 8px; }
.welcome__eyebrow { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.7rem; }
.welcome__title { font-family: var(--serif); font-size: 1.7rem; line-height: 1.15; margin-bottom: 0.7rem; }
.welcome__text { font-size: 13.5px; color: var(--ink-soft); font-weight: 300; line-height: 1.6; margin-bottom: 1.3rem; }
.welcome__form { display: flex; flex-direction: column; gap: 0.6rem; }
.welcome__form input { padding: 0.85rem 1rem; border: 1px solid var(--line-strong); border-radius: var(--radius); font-size: 16px; text-align: center; background: var(--white); }
.welcome__form input:focus { outline: none; border-color: var(--gold); }
.welcome__success { margin-top: 0.3rem; font-size: 13.5px; color: var(--ink-soft); }
.welcome__code {
  display: inline-block; margin-top: 0.6rem;
  font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.1em; color: var(--gold-dark);
  border: 1px dashed var(--gold); padding: 0.5rem 1.3rem; border-radius: var(--radius);
}
.welcome__fine { font-size: 10.5px; color: var(--ink-mute); margin-top: 1rem; }

/* ----------  Asesor de belleza (quiz)  ---------- */
.quiz-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.6rem, 4vw, 2.6rem) clamp(1.4rem, 4vw, 3rem);
  background: linear-gradient(120deg, var(--ink) 0%, #2c2620 100%);
  color: var(--white); border-radius: 8px;
}
.quiz-cta__eyebrow { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 0.5rem; }
.quiz-cta__title { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.2rem); margin-bottom: 0.4rem; }
.quiz-cta__desc { font-size: 13.5px; color: rgba(255, 255, 255, 0.8); font-weight: 300; }
.quiz-cta__btn {
  flex: none; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--gold-soft); color: var(--gold-soft);
  padding: 0.8rem 1.4rem; border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.quiz-cta:hover .quiz-cta__btn { background: var(--gold-soft); color: var(--ink); }

.quiz__card { max-width: 640px; margin: 0 auto; text-align: center; padding: clamp(1.4rem, 5vw, 3rem) 1rem; }
.quiz__intro .quiz__lead { font-size: 15px; color: var(--ink-soft); font-weight: 300; line-height: 1.7; margin-bottom: 1.8rem; max-width: 48ch; margin-inline: auto; }
.quiz__progress { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1rem; }
.quiz__q { font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 1.8rem; }
.quiz__options { display: flex; flex-direction: column; gap: 0.7rem; max-width: 420px; margin: 0 auto; }
.quiz__option {
  padding: 1rem 1.4rem; border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--white); font-family: var(--sans); font-size: 14px; color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.15s var(--ease);
}
.quiz__option:hover { border-color: var(--gold-dark); background: var(--bg-beige); transform: translateY(-1px); }
.quiz__again { text-align: center; margin-top: 1.5rem; }

/* ----------  VIP Club  ---------- */
.vip-hero {
  text-align: center;
  padding: clamp(2.5rem, 7vw, 5rem) var(--gutter);
  background: linear-gradient(150deg, var(--bg-beige) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
}
.vip-hero__eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1rem; }
.vip-hero__title { font-family: var(--serif); font-size: clamp(1.9rem, 5vw, 3.2rem); line-height: 1.1; margin-bottom: 1.1rem; max-width: 20ch; margin-inline: auto; }
.vip-hero__text { font-size: 15px; color: var(--ink-soft); font-weight: 300; line-height: 1.7; max-width: 52ch; margin-inline: auto; }
.vip-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-bottom: 2.5rem; }
.vip-benefit { text-align: center; padding: 1.6rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.vip-benefit__icon { display: flex; justify-content: center; color: var(--gold-dark); margin-bottom: 0.85rem; }
.vip-benefit__title { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 0.5rem; }
.vip-benefit__text { font-size: 13px; color: var(--ink-soft); font-weight: 300; line-height: 1.6; }
.vip-form { display: flex; gap: 0.6rem; max-width: 440px; margin: 0 auto; }
.vip-form input { flex: 1; min-width: 0; padding: 0.9rem 1.1rem; border: 1px solid var(--line-strong); border-radius: var(--radius); font-size: 16px; background: var(--white); }
.vip-form input:focus { outline: none; border-color: var(--gold); }
.vip-form__fine { text-align: center; font-size: 11.5px; color: var(--ink-mute); margin-top: 0.9rem; }

/* ----------  Editorial  ---------- */
.editorial__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.editorial-card {
  display: flex; flex-direction: column; gap: 0.6rem;
  padding: 1.8rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.editorial-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.editorial-card__title { font-family: var(--serif); font-size: 1.3rem; line-height: 1.25; }
.editorial-card__excerpt { font-size: 13.5px; color: var(--ink-soft); font-weight: 300; line-height: 1.65; flex: 1; }
.editorial-card__link { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); }

/* ----------  Testimonios  ---------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 2rem 1.8rem; margin: 0;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
}
.testimonial .stars { font-size: 14px; }
.testimonial__text { font-family: var(--serif); font-size: 1.05rem; line-height: 1.55; color: var(--ink); font-style: italic; flex: 1; }
.testimonial__author { display: flex; flex-direction: column; gap: 3px; }
.testimonial__name { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.testimonial__product { font-size: 12px; color: var(--ink-soft); transition: color 0.2s var(--ease); }
.testimonial__product:hover { color: var(--gold-dark); }
.testimonial__city { font-size: 12px; color: var(--ink-soft); font-weight: 300; }

/* ----------  Logística de envíos  ---------- */
.ship-banner {
  text-align: center; margin: 0 auto 2.6rem; max-width: 560px;
  padding: 0.9rem 1.4rem; border: 1px solid var(--gold);
  border-radius: 999px; color: var(--gold-dark);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  background: var(--bg-beige);
}
.ship-steps {
  list-style: none; margin: 1.4rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.ship-step {
  position: relative; text-align: center;
  padding: 2.1rem 1.2rem 1.6rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
}
.ship-step__num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--gold-soft);
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
}
.ship-step__title { font-family: var(--serif); font-size: 1.1rem; margin: 0.3rem 0 0.5rem; }
.ship-step__text { font-size: 13px; color: var(--ink-soft); font-weight: 300; line-height: 1.6; }

.ship-zones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.ship-zone {
  text-align: center; padding: 1.8rem 1.4rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-soft);
}
.ship-zone__name { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.6rem; }
.ship-zone__time { font-size: 14px; color: var(--gold-dark); font-weight: 500; margin-bottom: 0.3rem; }
.ship-zone__cost { font-size: 12.5px; color: var(--ink-soft); font-weight: 300; }
.ship-note { text-align: center; max-width: 60ch; margin: 1.7rem auto 0; font-size: 12.5px; color: var(--ink-mute); font-weight: 300; line-height: 1.6; }
.ship-track { text-align: center; max-width: 56ch; margin: 0 auto; font-size: 14.5px; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }

.ship-carriers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.ship-carrier { text-align: center; padding: 1.6rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.ship-carrier__name { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 0.4rem; }
.ship-carrier__detail { font-size: 12.5px; color: var(--ink-soft); font-weight: 300; line-height: 1.55; }

/* ----------  Tu compra está protegida  ---------- */
.protected {
  background: linear-gradient(150deg, #2c2620, var(--ink));
  color: var(--white);
  border-radius: 10px;
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.4rem, 4vw, 3rem);
}
.protected__head { text-align: center; margin-bottom: 2.2rem; }
.protected__shield { display: flex; justify-content: center; color: var(--gold-soft); margin-bottom: 0.7rem; }
.protected__title { font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.3rem); color: var(--white); }
.protected__subtitle { font-size: 14px; color: rgba(255, 255, 255, 0.75); font-weight: 300; margin-top: 0.5rem; }
.protected__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.protected__item { text-align: center; }
.protected__icon { display: flex; justify-content: center; color: var(--gold-soft); margin-bottom: 0.7rem; }
.protected__item-title { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 0.45rem; font-weight: 600; }
.protected__item-text { font-size: 12.5px; color: rgba(255, 255, 255, 0.7); font-weight: 300; line-height: 1.55; }

/* ----------  Estrellas fugaces de fondo  ---------- */
#starfield { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.shooting-star {
  position: absolute;
  width: 130px; height: 2px;
  background: linear-gradient(to right, transparent, rgba(168, 130, 56, 0.95));
  opacity: 0;
  transform: rotate(24deg);
  animation: shoot linear infinite;
  will-change: transform, opacity;
}
.shooting-star::after {
  content: ''; position: absolute; right: 0; top: -2px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-dark);
  box-shadow: 0 0 14px 4px rgba(195, 162, 97, 0.95);
}
@keyframes shoot {
  0% { transform: translate(-150px, -75px) rotate(24deg); opacity: 0; }
  12% { opacity: 1; }
  68% { opacity: 1; }
  100% { transform: translate(380px, 185px) rotate(24deg); opacity: 0; }
}
.shooting-star:nth-child(1) { top: 8%; left: 4%; animation-duration: 3.2s; animation-delay: 0s; }
.shooting-star:nth-child(2) { top: 18%; left: 38%; animation-duration: 4.2s; animation-delay: 0.8s; }
.shooting-star:nth-child(3) { top: 30%; left: 70%; animation-duration: 3.6s; animation-delay: 1.5s; }
.shooting-star:nth-child(4) { top: 44%; left: 14%; animation-duration: 4.6s; animation-delay: 2.1s; }
.shooting-star:nth-child(5) { top: 54%; left: 52%; animation-duration: 3.4s; animation-delay: 0.4s; }
.shooting-star:nth-child(6) { top: 64%; left: 82%; animation-duration: 4s; animation-delay: 2.8s; }
.shooting-star:nth-child(7) { top: 74%; left: 24%; animation-duration: 3.8s; animation-delay: 1.1s; }
.shooting-star:nth-child(8) { top: 84%; left: 60%; animation-duration: 4.4s; animation-delay: 3.4s; }
.shooting-star:nth-child(9) { top: 14%; left: 88%; animation-duration: 3.5s; animation-delay: 2.4s; }
.shooting-star:nth-child(10) { top: 90%; left: 8%; animation-duration: 4.1s; animation-delay: 0.6s; }

@media (max-width: 1080px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }
  .header__menu { display: flex; }
  .brand { margin-right: auto; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.4rem;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
    z-index: 55;
    box-shadow: var(--shadow-md);
  }
  body.menu-open .nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__link { padding: 0.9em 0; border-bottom: 1px solid var(--line); font-size: 13px; }
  .nav__link::after { display: none; }

  .hero { grid-template-columns: 1fr; }
  .hero__media { order: -1; aspect-ratio: 16 / 12; max-height: 46vh; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp__grid { grid-template-columns: 1fr; }
  .pdp__media { position: relative; top: 0; max-height: 60vh; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(3) { border-left: none; }
  .trust-strip__item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .vip-benefits { grid-template-columns: repeat(2, 1fr); }
  .editorial__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .ship-steps { grid-template-columns: repeat(2, 1fr); }
  .ship-carriers { grid-template-columns: repeat(2, 1fr); }
  .protected__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .promo { grid-template-columns: 1fr; }
  .promo__item { border-right: none; border-bottom: 1px solid var(--line); }
  .promo__item:last-child { border-bottom: none; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .section__head--center { align-items: center; text-align: center; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; text-align: center; gap: 0.9rem; }
  .cookie-banner__actions { justify-content: center; }
  .footer__top { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer__bottom { flex-direction: column; }
  .brand__sub { letter-spacing: 0.32em; }
  .card__quickadd { opacity: 1; transform: none; }
  .card__wish { opacity: 1; transform: none; }
  .pdp__zoom { opacity: 1; }
  .reviews__list { grid-template-columns: 1fr; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .toolbar__controls { width: 100%; }
  .field { flex: 1; }
  .field select { width: 100%; flex: 1; }
  /* Inputs a 16px mínimo: evita el auto-zoom de iOS al enfocar campos */
  .field-block input,
  .field-block textarea,
  .newsletter__row input,
  .field select { font-size: 16px; }
  .quiz-cta { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .vip-form { flex-direction: column; }
  .editorial__grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  /* Header compacto: evita desborde con el menú, marca e íconos juntos */
  .header__inner { gap: 0.6rem; }
  .brand { gap: 0.5rem; }
  .brand__monogram { width: 40px; height: 40px; font-size: 14px; }
  .cat-grid { grid-template-columns: 1fr; }
  .pdp__buy { flex-direction: column; }
  .qty { justify-content: space-between; }
  .pdp__wish { width: 100%; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip__item { border-left: none; border-top: 1px solid var(--line); }
  .trust-strip__item:first-child { border-top: none; }
  .brands__item { min-height: 92px; font-size: 1.05rem; }
  .vip-benefits { grid-template-columns: 1fr; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__actions .btn { width: 100%; }
}
