/* ============================================================
   suntype.cl — shared design system
   ============================================================ */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

:root {
  /* — palette: pastels — */
  --cream: #faf4ec;
  --cream-2: #f5ede2;
  --paper: #fffaf3;
  --ink: #2d2622;
  --ink-soft: #5a4d44;
  --ink-mute: #8a7e74;
  --hairline: #ece2d4;

  --pink: #f9bcc1;
  --pink-soft: #fbe4e6;
  --pink-deep: #ec99a1;
  --pink-hi: #fbcfd1;

  --lilac: #ddd0ea;
  --lilac-soft: #ebe3f0;
  --lilac-deep: #b9a2d3;

  --peach: #fcd9b5;
  --peach-soft: #fde9d2;

  --mint: #c8dfc7;
  --mint-soft: #def0dd;

  --butter: #fde6a3;
  --butter-soft: #fff2cc;

  --sky: #c5dceb;
  --sky-soft: #def0fa;

  /* — semantic — */
  --bg: var(--cream);
  --surface: var(--paper);
  --fg: var(--ink);
  --muted: var(--ink-mute);
  --rule: var(--hairline);
  --accent: var(--pink);
  --accent-deep: var(--pink-deep);

  /* — radii — */
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* — shadows — */
  --shadow-soft: 0 2px 12px rgba(60, 40, 30, .04), 0 1px 3px rgba(60, 40, 30, .06);
  --shadow-card: 0 8px 28px rgba(80, 50, 40, .07), 0 2px 6px rgba(80, 50, 40, .05);
  --shadow-lift: 0 16px 40px rgba(80, 50, 40, .10), 0 4px 10px rgba(80, 50, 40, .06);

  /* — fonts — */
  --font-script: 'Caveat', 'Patrick Hand', cursive;
  --font-script-alt: 'Shadows Into Light', 'Caveat', cursive;
  --font-ui: 'Quicksand', 'Nunito', system-ui, sans-serif;
  --font-hand: var(--font-script);
  --font-body: var(--font-ui);

  /* — density (tweakable) — */
  --gap: 1rem;
  --section-pad: 5rem;
  --container: 1180px;

  /* — paleta oficial suntype.cl (ver CLAUDE.md) — usada por pages.css/home — */
  --suntype-bg: #FBF6F1;
  --suntype-surface: #FFFDF9;
  --suntype-text: #1F252C;
  --suntype-muted: #6F6A66;
  --suntype-border: #EADFD7;
  --suntype-pink: #F6B9B4;
  --suntype-pink-hover: #F3A5A0;
  --suntype-pink-soft: #FDE2DF;
  --suntype-lilac: #D8C7F2;
  --suntype-green: #D8E8D4;
  --suntype-yellow: #FFE3A3;
  --suntype-peach: #F7C6B6;

  /* — paleta global de Astra sobrescrita con marca Suntype —
     Astra trae azul (#045cb4) por defecto en su "global color palette" y lo
     aplica como fallback en hover/focus de cualquier botón/link que no
     defina su propio color (ej. .gallery__wish). CLAUDE.md: "No usar
     colores azules o verdes — son defaults de Astra/WooCommerce". Esto
     elimina la fuga de azul en cualquier elemento sin estilo explícito. */
  --ast-global-color-0: #F3A5A0;
  --ast-global-color-1: #F6B9B4;
  --ast-global-color-2: #1F252C;
  --ast-global-color-3: #6F6A66;
  --ast-global-color-4: #FFFDF9;
  --ast-global-color-5: #FBF6F1;
  --ast-global-color-6: #EADFD7;
  --ast-global-color-7: #EADFD7;
  --ast-global-color-8: #1F252C;
}

/* — dark mode (tweakable) — */
[data-theme="dark"] {
  --cream: #1c1816;
  --cream-2: #221d1a;
  --paper: #2a2421;
  --ink: #f5ece1;
  --ink-soft: #d6c9bb;
  --ink-mute: #9c8e80;
  --hairline: #3a322e;
  --pink-soft: #3a2528;
  --lilac-soft: #2c2532;
  --peach-soft: #382c20;
  --mint-soft: #1f2a1f;
  --butter-soft: #3a3219;
  --sky-soft: #1f2a32;
  --bg: var(--cream);
  --surface: var(--paper);
  --fg: var(--ink);
  --shadow-soft: 0 2px 12px rgba(0,0,0,.4);
  --shadow-card: 0 8px 28px rgba(0,0,0,.5);
  --shadow-lift: 0 16px 40px rgba(0,0,0,.6);
}

/* ============================================================
   reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
/* overflow-x: clip (no "hidden") — "hidden" obliga, por spec, a que
   overflow-y compute a "auto" en el mismo elemento, convirtiendo html/body
   en contenedores de scroll propios y rompiendo .site-header{position:sticky}
   (su ancestro de scroll más cercano deja de ser el viewport real). "clip"
   también descarta el overflow horizontal pero no dispara esa regla. */
/* Fallback en cascada: overflow-x:clip tiene soporte amplio (Safari 16.4+,
   marzo 2023) pero no universal. En un navegador que no reconozca "clip" la
   declaración se ignora y queda "hidden" (vuelve el bug de sticky en ese
   caso puntual, pero no se reintroduce overflow horizontal). Smoke test en
   Safari/iOS real pendiente — no se pudo ejecutar desde este entorno
   (Windows, sin Xcode/iOS Simulator; agent-browser aquí solo corre Chrome). */
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; max-width: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
/* padding:0 explícito — Astra aplica padding:15px 30px a todo <button> por
   defecto (estilo submit); sin este reset, ese padding colapsa a 0 el
   content-box de los botones-ícono (hamburger, cerrar, etc.) que tienen
   width/height fijo. */
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
input, textarea, select { font-family: inherit; color: inherit; }

.script { font-family: var(--font-script); font-weight: 500; }
.script-alt { font-family: var(--font-script-alt); }
.muted { color: var(--muted); }

/* ============================================================
   layout primitives
   ============================================================ */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.row { display: flex; align-items: center; gap: var(--gap); }
.section { padding: var(--section-pad) 0; }
.section--tight { padding: calc(var(--section-pad) * .6) 0; }

.eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ============================================================
   header / nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in oklab, var(--rule) 60%, transparent);
}
/* Con sesión iniciada, la admin bar de WP es fixed top:0 y tapaba el header
   sticky al hacer scroll. --wp-admin--admin-bar--height ya la expone WP
   y se ajusta sola en sus propios breakpoints (32px desktop, 46px ≤782px). */
body.admin-bar .site-header { top: var(--wp-admin--admin-bar--height, 32px); }
/* el overlay del menú móvil es position:fixed inset:0 — sin este offset,
   la admin bar de WP (z-index mayor) tapa el botón de cerrar en su esquina
   superior cuando se navega logueado. */
body.admin-bar .mobile-nav-overlay,
body.admin-bar .mobile-nav { top: var(--wp-admin--admin-bar--height, 32px); }
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  font-family: var(--font-script);
  font-size: 38px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
}
.brand .heart {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--pink-deep);
  border-radius: 50%;
  position: relative;
  align-self: flex-start;
  margin-top: 6px;
}
.brand .heart::before, .brand .heart::after {
  content: '';
  position: absolute;
  width: 9px; height: 9px;
  background: var(--pink-deep);
  border-radius: 50%;
}
.brand .heart::before { left: -5px; top: 0; }
.brand .heart::after { left: -2.5px; top: -4px; transform: rotate(45deg); border-radius: 2px; }
.nav { display: flex; gap: 28px; flex: 1; justify-content: center; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav ul { display: flex; gap: 28px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav li { list-style: none; margin: 0; padding: 0; }
.nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 8px 2px;
  transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 6px;
  background: var(--pink-hi);
  z-index: -1;
  border-radius: 3px;
}
.head-actions { display: flex; gap: 14px; align-items: center; }

/* hamburger — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  place-items: center; border-radius: 50%;
  color: var(--ink); background: none;
  transition: background .2s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--pink-soft); }
/* líneas individuales para poder animarlas a "X" al abrir */
.nav-toggle__line { transition: transform .25s ease, opacity .2s ease; transform-origin: center; }
.nav-toggle.is-open .nav-toggle__line--top { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__line--mid { opacity: 0; }
.nav-toggle.is-open .nav-toggle__line--bottom { transform: translateY(-6px) rotate(-45deg); }

/* slide-in mobile menu */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(45,38,34,.45); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s; z-index: 95;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(320px, calc(100% - 24px));
  max-width: calc(100% - 24px);
  background: var(--paper);
  box-shadow: var(--shadow-lift);
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  z-index: 96; display: flex; flex-direction: column;
  padding: 22px 24px;
  box-sizing: border-box;
  overflow-x: hidden;
}
.mobile-nav-overlay.open .mobile-nav { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mobile-nav__head .script { font-family: var(--font-script); font-size: 34px; color: var(--ink); }
.mobile-nav__head button { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--ink-soft); }
.mobile-nav__head button:hover { background: var(--cream-2); color: var(--ink); }
.mobile-nav__links { display: flex; flex-direction: column; gap: 2px; list-style: none; margin: 0; padding: 0; }
.mobile-nav__links ul { display: flex; flex-direction: column; gap: 2px; list-style: none; margin: 0; padding: 0; }
.mobile-nav__links li { list-style: none; margin: 0; padding: 0; }
.mobile-nav__links a {
  display: block; width: 100%; box-sizing: border-box;
  font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); padding: 14px 12px; border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.mobile-nav__links a:hover,
.mobile-nav__links a.active,
.mobile-nav__links .current-menu-item > a { background: var(--pink-soft); color: var(--ink); }
.mobile-nav__links .sep { height: 1px; background: var(--rule); margin: 12px 0; }
.mobile-nav__quick {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.mobile-nav__quick .head-icon { width: 44px; height: 44px; }
.head-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink-soft);
  transition: background .2s, color .2s;
  position: relative;
}
.head-icon:hover { background: var(--pink-soft); color: var(--ink); }
.head-icon .badge {
  position: absolute;
  top: 4px; right: 2px;
  min-width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--pink-deep);
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: grid; place-items: center;
  padding: 0 4px;
}

/* ============================================================
   barra de anuncios
   ============================================================ */
.suntype-announce-bar {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-align: center;
  overflow: hidden;
  position: relative;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suntype-announce-bar[hidden] { display: none; }
.suntype-announce-bar .announce-text {
  flex: 1;
  text-align: center;
  padding: 0 48px;
}
.suntype-announce-bar .announce-link {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 10px;
  white-space: nowrap;
  font-size: 11px;
}
.suntype-announce-bar__close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 6px 8px;
  line-height: 1;
  opacity: 0.6;
  font-size: 16px;
  font-family: var(--font-ui);
}
.suntype-announce-bar__close:hover { opacity: 1; }

/* ============================================================
   buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .15s, box-shadow .2s, background .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--pink);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { background: var(--pink-deep); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--soft {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn--soft:hover { background: var(--cream-2); }
.btn--block { width: 100%; justify-content: center; }
.btn--big { padding: 18px 36px; font-size: 14px; }

/* ============================================================
   hand-drawn bits
   ============================================================ */
.highlight-pink, .highlight-yellow, .highlight-lilac {
  background-image: linear-gradient(transparent 55%, var(--hl, var(--pink-hi)) 55%, var(--hl, var(--pink-hi)) 92%, transparent 92%);
  padding: 0 .15em;
}
.highlight-yellow { --hl: #ffe79a; }
.highlight-lilac  { --hl: #ddd0ea; }
.highlight-pink   { --hl: #fbcfd1; }

.heart-icon {
  display: inline-block;
  width: 1em; height: 1em;
  vertical-align: -.05em;
  color: var(--pink-deep);
}

.sparkle {
  position: absolute;
  font-family: var(--font-script);
  color: var(--butter);
  opacity: .9;
  pointer-events: none;
  user-select: none;
}

/* circular badge "diseñado con amor" */
.seal {
  --size: 110px;
  width: var(--size); height: var(--size);
  border-radius: 50%;
  background: var(--pink-soft);
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.seal__inner {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--pink-deep);
}
.seal__text {
  position: absolute;
  inset: 0;
  animation: seal-spin 22s linear infinite;
}
@keyframes seal-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   product card
   ============================================================ */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: transform .25s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card__img {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
  display: grid; place-items: center;
}
.product-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-card__img .frase {
  font-family: var(--font-script-alt);
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
  text-align: center;
  padding: 0 18%;
}
.product-card__title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
}
.product-card__sub {
  font-family: var(--font-script);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.1;
  margin-top: -4px;
}
.product-card__price {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-top: 4px;
}
.product-card__wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity .2s, background .2s;
  color: var(--ink-soft);
}
.product-card:hover .product-card__wish { opacity: 1; }
.product-card__wish.is-active { opacity: 1; color: var(--pink-deep); }

/* product image bg variants — soft pastel washes */
.bg-tote   { background: linear-gradient(135deg, #ede2d0, #d9c8b1); }
.bg-polera { background: linear-gradient(135deg, #f4d2d4, #ecbabe); }
.bg-cuad   { background: linear-gradient(135deg, #ebe1cf, #d6c5ad); }
.bg-stick  { background: linear-gradient(135deg, #f6e3d8, #ebcdba); }
.bg-taza   { background: linear-gradient(135deg, #e8dde8, #d4c4d8); }
.bg-lam    { background: linear-gradient(135deg, #def0fa, #b9d6e8); }
.bg-pack   { background: linear-gradient(135deg, #fde9d2, #f3cfa3); }
.bg-plan   { background: linear-gradient(135deg, #def0dd, #bcd9bb); }

/* ============================================================
   placeholder image
   ============================================================ */
.ph {
  position: relative;
  background: repeating-linear-gradient(45deg, var(--cream-2), var(--cream-2) 8px, var(--cream) 8px, var(--cream) 16px);
  display: grid; place-items: center;
  border-radius: var(--r-md);
  overflow: hidden;
  color: var(--ink-soft);
}
.ph__label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--paper);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--rule);
}

/* ============================================================
   footer
   ============================================================ */
.site-footer {
  background: var(--cream-2);
  padding: 60px 0 40px;
  margin-top: 60px;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 48px;
  align-items: start;
}
.footer-grid h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 700;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 14px; color: var(--ink-soft); }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: .04em;
}

/* Botón "scroll al inicio" de Astra: por defecto es un cuadrado de 31px con
   radius de 2px y sin sombra — más chico que cualquier otro botón táctil del
   sitio (los del header son 44px) y se ve como un error suelto. Se agranda
   y redondea; el "display" lo sigue controlando el JS de Astra, así que acá
   solo se toca tamaño/forma, nunca display. El offset contra el footer lo
   resuelve initScrollTopFooterAvoid() en theme.js.
   Astra centra el ícono con line-height (relativo al font-size, no al alto
   real), pero el SVG interno queda block dentro de un span inline y esa
   técnica no lo centra bien. Se centra el ícono con position absolute +
   transform en vez de pelear con line-height — no depende del display
   que togglea el JS, porque #ast-scroll-top ya es position:fixed. */
#ast-scroll-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}
#ast-scroll-top .ast-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

/* ============================================================
   forms
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.input, .select, .textarea {
  font-family: var(--font-ui);
  font-size: 14px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px var(--pink-soft);
}
.textarea { min-height: 110px; resize: vertical; }
.input--pill {
  border-radius: var(--r-pill);
  background: var(--paper);
  padding-left: 22px;
}

/* ============================================================
   chips / tags
   ============================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--paper);
  border: 1px solid var(--rule);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.chip:hover { background: var(--pink-soft); border-color: var(--pink); }
.chip.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ============================================================
   sticky note (decorative)
   ============================================================ */
.sticky-note {
  background: #fff;
  padding: 14px 16px;
  font-family: var(--font-script);
  font-size: 18px;
  line-height: 1.2;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(80,50,40,.12);
  border-radius: 2px;
  transform: rotate(-3deg);
  position: relative;
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 980px) {
  :root { --section-pad: 3.5rem; }
  .nav { display: none; }
  .nav-toggle { display: grid; width: 44px; height: 44px; }
  .site-header__inner { gap: 14px; }
  .brand { flex: 1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* búsqueda/cuenta/favoritos quedan solo como accesos rápidos dentro del
     menú móvil (.mobile-nav__quick); en el header solo carrito + hamburger */
  .head-icon--desktop-only,
  .head-icon--desktop-only-wrap { display: none; }
  .head-actions .head-icon { width: 44px; height: 44px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-header__inner { padding: 14px 18px; gap: 12px; }
  .brand { font-size: 30px; }
  .wrap { padding: 0 18px; }
}

/* — page enter — */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.fade-in { animation: fadeUp .5s ease both; }

/* utility */
.center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; } .gap-4 { gap: 32px; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   ============================================================
   CONVERSION + TRUST LAYER (ML + Shopify pro)
   ============================================================
   ============================================================ */

/* ---- announcement bar ---- */
.announce {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-align: center;
  overflow: hidden;
  position: relative;
  height: 38px;
}
.announce__track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
  padding: 0 44px;
  transition: opacity .4s;
}
.announce__track svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--pink); }
.announce__track strong { color: var(--pink-hi); }
.announce__nav {
  position: absolute; top: 0; bottom: 0;
  width: 40px;
  display: grid; place-items: center;
  color: rgba(255,255,255,.5);
  cursor: pointer;
}
.announce__nav:hover { color: white; }
.announce__nav.prev { left: 0; }
.announce__nav.next { right: 0; }

/* ---- trust strip (under hero / generic) ---- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--rule);
}
.trust-strip__item {
  background: var(--paper);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
.trust-strip__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--pink-soft); color: var(--pink-deep);
}
.trust-strip__icon svg { width: 19px; height: 19px; }
.trust-strip__t { font-size: 13px; font-weight: 700; line-height: 1.15; }
.trust-strip__s { font-size: 11px; color: var(--ink-soft); line-height: 1.25; margin-top: 1px; }

/* ---- installments / price block ---- */
.installments {
  font-size: 14px;
  color: #2e7d52;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.installments .mp { color: #2e7d52; }
.price-tax-note { font-size: 12px; color: var(--ink-mute); }
.price-discount-tag {
  display: inline-flex; align-items: center;
  background: var(--mint-soft); color: #2e7d52;
  font-weight: 700; font-size: 13px;
  padding: 3px 10px; border-radius: var(--r-pill);
}

/* ---- delivery / shipping estimate box ---- */
.deliverybox {
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--paper);
}
.deliverybox__row { display: flex; gap: 12px; align-items: flex-start; }
.deliverybox__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; display: grid; place-items: center;
}
.deliverybox__icon svg { width: 18px; height: 18px; }
.deliverybox__txt { font-size: 13px; line-height: 1.45; }
.deliverybox__txt strong { font-weight: 700; }
.deliverybox__txt .free-em { color: #2e7d52; font-weight: 700; }
.deliverybox__txt .date-em { color: var(--ink); font-weight: 700; }
.deliverybox__link { color: var(--pink-deep); font-weight: 600; font-size: 12px; }

/* ---- stock / urgency ---- */
.stockbar { margin: 4px 0 2px; }
.stockbar__head {
  display: flex; justify-content: space-between;
  font-size: 12px; font-weight: 600; margin-bottom: 5px;
}
.stockbar__head .left { color: #c2553f; }
.stockbar__track { height: 6px; background: var(--cream-2); border-radius: 999px; overflow: hidden; }
.stockbar__fill { height: 100%; background: linear-gradient(90deg, #f5a89a, #ec99a1); border-radius: 999px; }
.viewing-now {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--ink-soft);
}
.viewing-now .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #e0584a; position: relative;
}
.viewing-now .dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid rgba(224,88,74,.4);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring { 0%{transform:scale(.6);opacity:1} 100%{transform:scale(1.8);opacity:0} }

/* ---- payment methods row ---- */
.paylogos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.paylogo {
  height: 30px; padding: 0 10px;
  border: 1px solid var(--rule); border-radius: 6px;
  background: #fff;
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 800; letter-spacing: .02em;
}
.paylogo--webpay { color: #4a3aa3; }
.paylogo--mp { color: #00a5e0; }
.paylogo--visa { color: #1a1f71; }
.paylogo--master { color: #eb001b; }
.paylogo--transfer { color: var(--ink); }
.paylogo--flow { color: #00b6cb; }

/* ---- rating stars (inline) ---- */
.rating { display: inline-flex; align-items: center; gap: 6px; }
.rating__stars { display: inline-flex; color: #e8b14a; }
.rating__stars svg { width: 15px; height: 15px; }
.rating__count { font-size: 13px; color: var(--ink-soft); }
.rating__count a { color: var(--pink-deep); text-decoration: underline; }

/* review summary block */
.review-summary {
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  padding: 24px 0; align-items: center;
}
.review-summary__big { text-align: center; }
.review-summary__num { font-size: 56px; font-weight: 700; line-height: 1; font-family: var(--font-ui); }
.review-summary__bars { display: flex; flex-direction: column; gap: 6px; }
.review-bar { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--ink-soft); }
.review-bar__track { flex: 1; height: 7px; background: var(--cream-2); border-radius: 999px; overflow: hidden; }
.review-bar__fill { height: 100%; background: #e8b14a; border-radius: 999px; }
.review-photos { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.review-photo {
  width: 64px; height: 64px; border-radius: var(--r-sm);
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-script-alt); font-size: 11px; line-height: 1; padding: 4px;
  cursor: pointer; transition: transform .15s;
}
.review-photo:hover { transform: scale(1.05); }
.verified-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: #2e7d52; font-weight: 600;
}

/* ---- "se compra junto" bundle ---- */
.bundle {
  border: 1px dashed var(--pink); border-radius: var(--r-lg);
  padding: 22px; background: var(--pink-soft);
}
.bundle__row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.bundle__item {
  width: 84px; text-align: center;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.bundle__thumb {
  width: 72px; height: 72px; border-radius: var(--r-sm); overflow: hidden;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-script-alt); font-size: 11px; line-height: 1; padding: 4px;
  position: relative;
}
.bundle__check {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink); color: white;
  display: grid; place-items: center; font-size: 11px;
  border: 2px solid var(--pink-soft);
}
.bundle__price { font-size: 11px; font-weight: 700; }
.bundle__plus { font-size: 22px; color: var(--ink-soft); font-weight: 300; }
.bundle__cta {
  margin-left: auto; text-align: right;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
.bundle__total { font-size: 13px; }
.bundle__total strong { font-size: 20px; }

/* ---- sticky add-to-cart bar (PDP) ---- */
.sticky-add {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: color-mix(in oklab, var(--paper) 96%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -8px 24px rgba(80,50,40,.08);
  z-index: 45;
  transform: translateY(110%);
  transition: transform .3s cubic-bezier(.22,.8,.22,1);
}
.sticky-add.show { transform: translateY(0); }
.sticky-add__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 12px 28px;
  display: flex; align-items: center; gap: 20px;
}
.sticky-add__img {
  width: 46px; height: 46px; border-radius: var(--r-xs);
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-script-alt); font-size: 9px; line-height: 1; flex-shrink: 0;
}
.sticky-add__info { flex: 1; min-width: 0; }
.sticky-add__title { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-add__price { font-size: 14px; font-weight: 700; }
.sticky-add__price .installments { font-size: 12px; font-weight: 600; }

/* ---- Q&A ---- */
.qa-item { border-bottom: 1px solid var(--rule); padding: 18px 0; }
.qa-q { display: flex; gap: 10px; font-size: 14px; font-weight: 600; }
.qa-q .badge-q { color: var(--pink-deep); font-weight: 800; }
.qa-a { display: flex; gap: 10px; font-size: 14px; color: var(--ink-soft); margin-top: 8px; line-height: 1.55; }
.qa-a .badge-a { color: #2e7d52; font-weight: 800; }
.qa-ask {
  display: flex; gap: 8px; margin-top: 18px;
}
.qa-ask input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--rule);
  border-radius: var(--r-pill); background: var(--paper); font-size: 14px; outline: none;
}
.qa-ask input:focus { border-color: var(--pink-deep); }

/* CART DRAWER: implementado en woocommerce.css (conectado a
   woocommerce/cart/mini-cart.php) — ver esa sección, no duplicar aquí. */

/* quick-add on catalog cards */
.product-card__quickadd {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: var(--ink); color: var(--cream);
  border-radius: var(--r-pill); padding: 11px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .2s, transform .2s, background .2s;
}
.product-card:hover .product-card__quickadd { opacity: 1; transform: translateY(0); }
.product-card__quickadd:hover { background: var(--pink-deep); }
.product-card__rating {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  font-size: 11px; color: var(--ink-soft); margin-top: -2px;
}
.product-card__rating svg { width: 12px; height: 12px; color: #e8b14a; }
.product-card__ship {
  font-size: 11px; color: #2e7d52; font-weight: 600; margin-top: 2px;
}
.product-card__cuotas { font-size: 11px; color: var(--ink-mute); }

@media (max-width: 760px) {
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .review-summary { grid-template-columns: 1fr; gap: 16px; }
}

/* ---- real logo ---- */
.brand--img { display: inline-flex; align-items: center; }
.brand--img img { height: 32px; width: auto; display: block; }
.brand--img-lg img { height: 46px; }
[data-theme="dark"] .brand--img img { filter: invert(1) brightness(1.6) hue-rotate(180deg); }
@media (max-width: 640px) { .brand--img img { height: 28px; } }

/* ---- static seal (replaces spinning seal) ---- */
.seal-img { width: 138px; height: 138px; object-fit: contain; display: block; }
.hero__seal.seal-img { width: 118px; height: 118px; filter: drop-shadow(0 6px 14px rgba(80,50,40,.14)); }

/* ============================================================
   AUTH MODAL (login / register) — global
   ============================================================ */
.auth-overlay {
  position: fixed; inset: 0;
  background: rgba(45,38,34,.5); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
  z-index: 110;
}
.auth-overlay.open { opacity: 1; visibility: visible; }
.auth-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(.98);
  opacity: 0; visibility: hidden;
  width: min(440px, 92vw);
  max-height: 92vh; overflow-y: auto;
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
  padding: 36px 36px 30px;
  z-index: 120;
  transition: opacity .25s, transform .25s, visibility .25s;
}
.auth-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.auth-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-soft);
}
.auth-modal__close:hover { background: var(--cream-2); color: var(--ink); }
.auth-modal__script { font-size: 40px; line-height: 1; color: var(--ink); margin-bottom: 6px; }
.auth-modal__sub { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 22px; line-height: 1.5; }
.auth-tabs {
  display: flex; gap: 5px;
  background: var(--cream-2); border-radius: var(--r-pill);
  padding: 5px; margin-bottom: 22px;
}
.auth-tabs button {
  flex: 1; padding: 11px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--ink-soft); transition: background .15s, color .15s;
}
.auth-tabs button.is-active { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-card); }
.auth-row { display: flex; justify-content: space-between; align-items: center; margin: 14px 0 20px; }
.auth-check { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink-soft); cursor: pointer; }
.auth-check input { accent-color: var(--ink); }
.auth-link, .auth-alt a, .auth-guest a { color: var(--pink-deep); font-size: 12.5px; font-weight: 600; }
.auth-alt { text-align: center; margin-top: 20px; font-size: 13px; color: var(--ink-soft); }
.auth-guest { text-align: center; margin-top: 10px; font-size: 12.5px; color: var(--ink-mute); }
.auth-modal .btn--big { font-size: 13px; }

/* ---- auth como página (mi-cuenta: login / registro) ---- */
.auth-card-wrap { max-width: 460px; margin: 56px auto 100px; padding: 0 20px; }
.auth-card {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: var(--r-lg); box-shadow: var(--shadow-card);
  padding: 36px 36px 30px;
}
.auth-panel { display: none; }
.auth-panel.is-active { display: block; animation: fadeUp .3s ease; }
.auth-card__script { font-family: var(--font-script); font-size: clamp(34px, 4vw, 42px); line-height: 1; margin: 0 0 6px; color: var(--ink); }
.auth-card__sub { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 22px; line-height: 1.5; }
.auth-card .btn--big { font-size: 13px; margin-top: 4px; }
.auth-card .woocommerce-privacy-policy-text p { font-size: 12px; color: var(--ink-mute); line-height: 1.5; margin: 14px 0; }
.auth-card .woocommerce-privacy-policy-text a { color: var(--pink-deep); font-weight: 600; }
.auth-card .woocommerce-privacy-policy-text a:hover { text-decoration: underline; }

/* ---- inputs del popup de auth: vive en TODAS las páginas, no solo en
   las que WooCommerce marca con body.woocommerce (de donde sale el estilo
   de los inputs en woocommerce.css) ---- */
.auth-modal .form-row label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
}
.auth-modal .form-row input.input-text {
  font-family: var(--font-ui); padding: 13px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--rule); background: var(--paper); color: var(--ink);
  font-size: 14px; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.auth-modal .form-row input.input-text:focus {
  outline: none; border-color: var(--pink-deep); box-shadow: 0 0 0 3px var(--pink-soft);
}
.auth-modal .form-row { margin-bottom: 16px; }
.suntype-auth-msg { margin: 0 0 14px; font-size: 13px; color: var(--ink-soft); min-height: 1.2em; }
.suntype-auth-msg.is-error { color: #b3413a; }
@media (max-width: 480px) { .auth-card { padding: 28px 22px 24px; } }

/* ============================================================
   INFO / LEGAL PAGES (envíos, cambios, pagos, faq, términos…)
   ============================================================ */
/* Estas páginas usan la plantilla por defecto de WP/Astra, que imprime su
   propio <header class="entry-header"><h1> con el título — duplicado con
   el título propio de .info-hero. Se oculta solo cuando .info-hero existe
   en la página (mismo problema que ya se resolvió para cart/checkout/
   cuenta, que sí tienen body class propia; estas páginas no, así que se
   detecta por contenido con :has()). */
body:has(.info-hero) .entry-header { display: none; }

.info-hero { text-align: center; padding: 56px 28px 40px; }
.info-hero .kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pink-deep); margin-bottom: 12px;
}
.info-hero h1 { font-family: var(--font-script); font-size: clamp(44px, 5.2vw, 70px); line-height: 1.02; margin: 0 0 14px; color: var(--ink); }
.info-hero p { max-width: 560px; margin: 0 auto; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }

.info-wrap { max-width: 760px; margin: 0 auto; padding: 8px 28px 80px; }

/* a section block */
.info-block { margin-bottom: 38px; }
.info-block > h2 {
  display: flex; align-items: center; gap: 12px;
  font-size: 22px; color: var(--ink); margin: 0 0 14px;
}
.info-block > h2 .ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--lilac-soft); color: var(--lilac-deep);
  display: grid; place-items: center; flex-shrink: 0;
}
.info-block > h2 .ic.mint { background: var(--mint-soft); color: #4a6b48; }
.info-block > h2 .ic.peach { background: var(--peach-soft); color: #d28c4a; }
.info-block > h2 .ic.pink { background: var(--pink-soft); color: var(--pink-deep); }
.info-block p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 14px; }
.info-block ul { margin: 0 0 14px; padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.info-block ul li { position: relative; padding-left: 24px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.info-block ul li::before { content: '♥'; position: absolute; left: 0; top: 1px; color: var(--pink); font-size: 12px; }
.info-block a { color: var(--pink-deep); font-weight: 600; }

/* highlighted fact card */
.info-callout {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--cream-2); border-radius: var(--r-md);
  padding: 18px 20px; margin: 0 0 18px;
}
.info-callout svg { flex-shrink: 0; margin-top: 2px; color: var(--ink-soft); }
.info-callout p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.info-callout strong { color: var(--ink); }
.info-callout.accent { background: var(--pink-soft); }

/* two-up fact cards */
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 8px; }
.info-card {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 22px 24px;
}
.info-card .ic {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 12px;
  background: var(--lilac-soft); color: var(--lilac-deep);
}
.info-card .ic.mint { background: var(--mint-soft); color: #4a6b48; }
.info-card h3 { font-size: 16px; margin: 0 0 6px; color: var(--ink); }
.info-card p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.info-card .big { font-family: var(--font-script); font-size: 30px; color: var(--ink); line-height: 1; margin: 2px 0 6px; }

/* steps row */
.info-steps { display: grid; gap: 14px; margin-bottom: 8px; }
.info-step { display: flex; gap: 16px; align-items: flex-start; }
.info-step .n {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: var(--cream);
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
}
.info-step h4 { margin: 4px 0 4px; font-size: 15px; color: var(--ink); }
.info-step p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

/* FAQ accordion */
.faq-group { margin-bottom: 32px; }
.faq-group__title {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pink-deep); margin: 0 0 14px;
}
.faq-q {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: var(--r-md); margin-bottom: 10px; overflow: hidden;
}
.faq-q summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--ink);
}
.faq-q summary::-webkit-details-marker { display: none; }
.faq-q summary .chev { transition: transform .2s; color: var(--ink-soft); flex-shrink: 0; }
.faq-q[open] summary .chev { transform: rotate(180deg); }
.faq-q[open] summary { color: var(--pink-deep); }
.faq-q__body { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); }
.faq-q__body p { margin: 0 0 10px; }
.faq-q__body a { color: var(--pink-deep); font-weight: 600; }

/* legal numbered sections */
.legal-sec { margin-bottom: 30px; }
.legal-sec h2 { font-size: 19px; color: var(--ink); margin: 0 0 12px; display: flex; gap: 12px; }
.legal-sec h2 .n { color: var(--pink-deep); font-weight: 700; }
.legal-sec p, .legal-sec li { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); }
.legal-sec ul { margin: 8px 0; padding-left: 22px; }
.legal-note {
  background: var(--butter-soft); border-radius: var(--r-sm);
  padding: 14px 18px; font-size: 13px; color: #7a6320; line-height: 1.55; margin: 0 0 24px;
}
.legal-updated { font-size: 13px; color: var(--ink-mute); margin-bottom: 28px; }

/* mini cross-links at bottom of info pages */
.info-more {
  border-top: 1px solid var(--rule); margin-top: 8px; padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.info-more a {
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  background: var(--cream-2); padding: 10px 18px; border-radius: var(--r-pill);
  transition: background .15s, color .15s;
}
.info-more a:hover { background: var(--pink-soft); color: var(--ink); }

@media (max-width: 560px) {
  .info-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   WordPress / Astra overrides — suntype-child
   ============================================================ */

/* Reset Astra defaults que chocan con nuestros tokens */
.ast-container, #page { background: var(--bg); }
.entry-content, .woocommerce { font-family: var(--font-ui); }

/* Barra de anuncios rotativa */
.suntype-announce-bar {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-align: center;
  padding: 10px 0;
}
.suntype-announce-bar a { color: var(--pink-hi); }

/* Header Astra → aplicar tokens */
.site-header, .ast-primary-header-bar {
  background: color-mix(in oklab, var(--bg) 92%, transparent) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in oklab, var(--rule) 60%, transparent) !important;
}

/* Menú Astra */
.ast-primary-header-bar .main-header-menu > .menu-item > .menu-link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ast-primary-header-bar .main-header-menu > .menu-item > .menu-link:hover,
.ast-primary-header-bar .main-header-menu > .current-menu-item > .menu-link {
  color: var(--ink);
}

/* Footer Astra */
.ast-footer-copyright { font-family: var(--font-ui); color: var(--ink-mute); }
