/* =========================================================================
   MejoresFertilizantes — sistema visual
   Editorial de reviews con conversion a Amazon. Dos familias tipograficas:
   Instrument Sans para interfaz y titulares, Source Serif 4 para el cuerpo
   de los articulos, que es donde el lector pasa el tiempo.
   ========================================================================= */

:root {
  /* Marca: verde bosque desaturado. El verde puro anterior (#007600) competia
     con el naranja de Amazon y ensuciaba cualquier composicion. */
  --brand:      #285c3e;
  --brand-700:  #1c4530;
  --brand-300:  #7fa792;
  --brand-50:   #edf3ef;

  /* Naranja Amazon: reservado EXCLUSIVAMENTE a acciones que llevan a Amazon.
     Es una senal aprendida por el usuario; diluirla en otros usos la gasta. */
  --amazon:     #e8871e;
  --amazon-700: #c96f10;
  --amazon-50:  #fdf3e6;

  /* Neutros de familia calida y unica, para no mezclar grises frios y calidos. */
  --ink:      #191b19;
  --ink-2:    #434843;
  --muted:    #6f746e;
  --line:     #e3e1db;
  --line-2:   #efedE7;
  --paper:    #ffffff;
  --paper-2:  #f8f7f3;
  --paper-3:  #f2f0ea;

  --danger:   #a8341f;
  --ok:       #2f6b45;

  --radius:     14px;
  --radius-sm:  9px;
  --radius-lg:  22px;

  /* Sombras tenidas con el matiz del papel, no negro puro. */
  --shadow:    0 1px 2px rgba(45,40,30,.05), 0 6px 18px rgba(45,40,30,.05);
  --shadow-lg: 0 2px 6px rgba(45,40,30,.06), 0 18px 44px rgba(45,40,30,.09);
  --shadow-brand: 0 8px 26px rgba(40,92,62,.18);

  --maxw:       1160px;
  --maxw-read:  720px;
  --maxw-wide:  1040px;

  --font:       'Instrument Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-read:  'Source Serif 4', Georgia, 'Times New Roman', serif;

  --z-header: 100;
  --z-sticky: 200;
  --z-banner: 300;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--brand-700); }

:focus-visible {
  outline: 3px solid var(--brand-300);
  outline-offset: 2px;
  border-radius: 4px;
}

.container      { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container--read { max-width: var(--maxw-read); }
.container--wide { max-width: var(--maxw-wide); }

h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.022em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.15rem); margin: 0 0 .45em; letter-spacing: -.032em; }
h2 { font-size: clamp(1.45rem, 1.2rem + 1.1vw, 1.95rem); margin: 1.9em 0 .55em; }
h3 { font-size: clamp(1.15rem, 1.05rem + .4vw, 1.32rem); margin: 1.7em 0 .45em; letter-spacing: -.014em; }
h4 { font-size: 1.02rem; margin: 1.4em 0 .4em; }
p  { margin: 0 0 1.15em; }

/* ---------- Cabecera ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 18px;
}
.brand {
  font-weight: 700; font-size: 1.1rem; letter-spacing: -.03em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; text-decoration: none;
}
.brand:hover { color: var(--brand-700); }
.brand__mark { width: 32px; height: 32px; flex: 0 0 32px; border-radius: 9px; }

.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 1px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: block; padding: 8px 11px; border-radius: 8px;
  color: var(--ink-2); font-weight: 500; font-size: .93rem; text-decoration: none;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__link:hover { background: var(--brand-50); color: var(--brand-700); }
/* Indicar donde esta el usuario: faltaba por completo. */
.nav__link[aria-current="page"] {
  color: var(--brand-700); background: var(--brand-50); font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--brand);
}
.nav__toggle {
  display: none; background: var(--paper); border: 1px solid var(--line); border-radius: 9px;
  padding: 9px 13px; cursor: pointer; color: var(--ink); font: 600 .9rem var(--font);
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; font-weight: 600; font-size: .96rem;
  font-family: var(--font);
  border: 1px solid transparent; cursor: pointer; text-decoration: none; line-height: 1.15;
  transition: background .18s var(--ease), transform .12s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px) scale(.995); }

.btn--amazon {
  background: var(--amazon); color: #21160a;
  box-shadow: 0 1px 2px rgba(120,70,10,.18), 0 8px 20px rgba(232,135,30,.26);
}
.btn--amazon:hover { background: var(--amazon-700); color: #fff; box-shadow: 0 2px 4px rgba(120,70,10,.2), 0 12px 26px rgba(232,135,30,.32); }
.btn--green { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn--green:hover { background: var(--brand-700); color: #fff; }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-700); background: var(--brand-50); }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 9px 15px; font-size: .875rem; border-radius: 8px; white-space: nowrap; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero { padding: 68px 0 52px; position: relative; }
.hero--home {
  background:
    radial-gradient(900px 420px at 88% -20%, var(--brand-50), transparent 62%),
    radial-gradient(600px 300px at 8% 110%, var(--amazon-50), transparent 60%),
    linear-gradient(178deg, var(--paper), var(--paper-2));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* Grano sutil: rompe la planitud del degradado sin cargar una imagen. */
.hero--home::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
.hero > .container { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand-700); background: var(--paper); border: 1px solid var(--brand-300);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { max-width: 17ch; }
.hero__lead {
  font-family: var(--font-read);
  font-size: 1.22rem; line-height: 1.55; color: var(--ink-2);
  max-width: 56ch; margin-bottom: 28px; text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Barra de confianza: sustituye al vacio bajo el hero. */
.trustbar {
  display: flex; flex-wrap: wrap; gap: 10px 34px; margin-top: 34px;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: .875rem; color: var(--ink-2);
}
.trustbar b { color: var(--ink); font-weight: 600; }
.trustbar__item { display: inline-flex; align-items: center; gap: 8px; }
.trustbar__num { font-size: 1.35rem; font-weight: 700; color: var(--brand); letter-spacing: -.03em; }

/* Tarjeta de recomendacion en el hero: llena el hueco derecho con la accion
   que mas convierte, en vez de con decoracion. */
.hero__grid { display: grid; grid-template-columns: minmax(0,1fr) 316px; gap: 56px; align-items: start; }
.toppick {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
}
.toppick__image { margin: 0; height: 178px; background: var(--paper-3); overflow: hidden; }
.toppick__image img { width: 100%; height: 100%; object-fit: cover; }
.toppick__body { display: flex; flex-direction: column; gap: 12px; padding: 22px 24px 24px; }
.toppick__body > * { margin-left: 0; margin-right: 0; }
.hero--section { padding-bottom: 42px; }
.hero__grid--section { align-items: center; }
.section-hero__image { margin: 0; height: 245px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transform: rotate(1.2deg); }
.section-hero__image img { width: 100%; height: 100%; object-fit: cover; }
}
.toppick__label {
  margin: 0; font-size: .7rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--amazon-700);
}
.toppick__name { margin: 0; font-weight: 600; font-size: 1.06rem; line-height: 1.3; }
.toppick__score { display: flex; align-items: center; gap: 13px; padding: 12px 0; border-block: 1px solid var(--line-2); }
.toppick__num {
  font-size: 2rem; font-weight: 700; color: var(--brand); letter-spacing: -.04em; line-height: 1;
}
.toppick__for { font-size: .83rem; color: var(--ink-2); line-height: 1.4; }
.toppick__price { margin: 0; font-size: 1.65rem; font-weight: 700; letter-spacing: -.035em; }
.toppick__alt { font-size: .86rem; text-align: center; color: var(--ink-2); text-decoration: none; }
.toppick__alt:hover { color: var(--brand-700); text-decoration: underline; }

/* ---------- Secciones ---------- */
.section { padding: 60px 0; }
.section--soft { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head {
  display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 30px;
}
.section__head h2 { margin: 0; }
.section__head p { margin: 8px 0 0; color: var(--muted); font-size: .96rem; max-width: 52ch; }
.section__head a { font-weight: 600; font-size: .93rem; white-space: nowrap; text-decoration: none; }
.section__head a:hover { text-decoration: underline; }

/* ---------- Rejillas ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
/* Rejilla asimetrica para categorias: rompe la fila de tarjetas identicas. */
.grid--cats { grid-template-columns: repeat(12, 1fr); }
.grid--cats > :nth-child(-n+2) { grid-column: span 6; }  /* 2 destacadas arriba */
.grid--cats > :nth-child(n+3)  { grid-column: span 3; }  /* 4 abajo, fila exacta */

/* ---------- Tarjetas ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 11px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--brand-300); }
.card__cat {
  font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em;
  color: var(--brand); 
}
.card__title { font-size: 1.08rem; margin: 0; line-height: 1.28; }
.card__title a { color: var(--ink); text-decoration: none; }
.card__title a:hover { color: var(--brand-700); }
.card__excerpt { color: var(--ink-2); font-size: .93rem; margin: 0; flex: 1; line-height: 1.55; }
.card__meta { font-size: .8rem; color: var(--muted); margin-top: auto; }

.cat-card { text-decoration: none; justify-content: flex-start; }
.cat-card__image { width: calc(100% + 44px); height: 142px; margin: -22px -22px 5px; object-fit: cover; }
.cat-card__icon {
  font-size: 1.4rem; width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--brand-50); border-radius: 11px;
}
.cat-card__title { font-size: 1.15rem; margin: 4px 0 0; color: var(--ink); }
.cat-card__desc { color: var(--ink-2); font-size: .92rem; margin: 0; flex: 1; line-height: 1.5; }
.cat-card__link { font-weight: 600; font-size: .9rem; color: var(--brand); margin-top: auto; }
.cat-card:hover .cat-card__link { text-decoration: underline; }

/* ---------- Ficha de precio ---------- */
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 11px;
  position: relative; transition: box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.price-card:hover { box-shadow: var(--shadow-lg); border-color: var(--brand-300); }
.price-card__rank {
  position: absolute; top: -11px; left: 18px;
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px;
}
.price-card__name { font-weight: 600; margin: 0; font-size: .98rem; line-height: 1.35; min-height: 2.7em; }
.price-card__price {
  font-size: 1.85rem; font-weight: 700; letter-spacing: -.035em; color: var(--ink); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-card__avail { font-size: .8rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.price-card__avail::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.price-card__avail.is-in  { color: var(--ok); }
.price-card__avail.is-out { color: var(--danger); }
.price-card__meta { font-size: .74rem; color: var(--muted); margin-top: auto; }
.price-card__loading { color: var(--muted); font-size: .9rem; }
/* Los botones quedan a la misma altura aunque los nombres ocupen distinto. */
.price-card .btn { margin-top: auto; }

/* ---------- Migas ---------- */
.breadcrumbs { font-size: .84rem; color: var(--muted); margin: 0 0 18px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 7px; }
.breadcrumbs li + li::before { content: "/"; color: var(--line); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--ink-2); }

/* ---------- Articulo ---------- */
.article { padding: 30px 0 72px; }
.article__head { margin-bottom: 26px; }
.page-image { margin: 0 0 30px; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-3); }
.page-image img { width: 100%; max-height: 410px; object-fit: cover; }
.page-image figcaption { padding: 10px 14px 12px; color: var(--muted); font: .76rem/1.4 var(--font); }
.article__meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  color: var(--muted); font-size: .86rem;
  margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--line);
}
.article__meta strong { color: var(--ink-2); font-weight: 600; }
.article__standfirst {
  font-family: var(--font-read); font-size: 1.16rem; line-height: 1.6;
  color: var(--ink-2); margin: 0; max-width: 62ch; text-wrap: pretty;
}

/* Rejilla de lectura: indice fijo a la izquierda en pantallas anchas. */
.article__grid {
  display: grid; grid-template-columns: 232px minmax(0, 1fr); gap: 52px;
  max-width: var(--maxw-wide); margin: 0 auto; padding: 0 22px;
}
.article__grid > * { min-width: 0; }
.article__aside { position: relative; }
.article__aside-inner { position: sticky; top: 92px; }

.article__body {
  font-family: var(--font-read);
  font-size: 1.14rem;
  line-height: 1.72;
  color: #23262a;
  max-width: 68ch;
}
.article__body p { margin: 0 0 1.3em; text-wrap: pretty; }
.article__body strong { font-weight: 600; color: var(--ink); }
.article__body h2, .article__body h3, .article__body h4 { font-family: var(--font); scroll-margin-top: 90px; }
.article__body h2 {
  padding-top: .55em; border-top: 1px solid var(--line-2);
}
.article__body > h2:first-child { border-top: 0; padding-top: 0; }
.article__body ul, .article__body ol { padding-left: 1.15em; margin: 0 0 1.3em; }
.article__body li { margin-bottom: .5em; }
.article__body li::marker { color: var(--brand-300); }
.article__body hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.article__body img { border-radius: var(--radius); margin: 1.6em 0; }
.article__body blockquote {
  margin: 1.6em 0; padding: 18px 22px;
  background: var(--brand-50); border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-2);
}
.article__body blockquote p:last-child { margin: 0; }
.article__body code {
  font-size: .9em; background: var(--paper-3); padding: .15em .4em; border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Tablas: siempre desplazables, nunca desbordan el ancho de la pagina. */
.table-scroll {
  overflow-x: auto; margin: 1.7em 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}
.article__body table {
  width: 100%; border-collapse: collapse; font-family: var(--font);
  font-size: .92rem; margin: 0; min-width: 460px;
}
.article__body th, .article__body td {
  text-align: left; padding: 12px 15px; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.article__body th {
  background: var(--paper-2); font-weight: 600; color: var(--ink);
  position: sticky; top: 0; white-space: nowrap;
}
.article__body tbody tr:last-child td { border-bottom: 0; }
.article__body tbody tr:hover td { background: var(--paper-2); }

/* Enlaces a Amazon dentro del texto: visibles pero sin gritar. */
.lnk-amazon {
  color: var(--amazon-700); font-weight: 600; font-family: var(--font); font-size: .96em;
  text-decoration-color: var(--amazon);
}
.lnk-amazon:hover { color: var(--amazon); }
.lnk-amazon__ext { font-size: .78em; margin-left: 2px; vertical-align: .1em; opacity: .75; }

/* ---------- Indice ---------- */
.toc { font-family: var(--font); font-size: .89rem; }
.toc > summary { display: none; }
.toc__title {
  font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin: 0 0 12px;
}
.toc ul { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.toc ul ul { padding-left: 13px; border: 0; }
.toc li { margin: 0; }
.toc a {
  display: block; padding: 6px 0 6px 15px; margin-left: -2px;
  color: var(--ink-2); text-decoration: none; border-left: 2px solid transparent;
  line-height: 1.4; transition: color .15s var(--ease), border-color .15s var(--ease);
}
.toc a:hover { color: var(--brand-700); border-left-color: var(--brand-300); }
.toc a.is-active { color: var(--brand-700); border-left-color: var(--brand); font-weight: 600; }

/* ---------- Veredicto (cabecera de review) ---------- */
.verdict {
  display: grid; grid-template-columns: auto minmax(0,1fr); gap: 22px; align-items: center;
  background: linear-gradient(160deg, var(--brand-50), var(--paper));
  border: 1px solid var(--brand-300); border-radius: var(--radius-lg);
  padding: 24px 26px; margin: 0 0 34px;
}
.verdict__score {
  display: grid; place-items: center; width: 92px; height: 92px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--brand); box-shadow: var(--shadow);
  font-family: var(--font);
}
.verdict__num { font-size: 1.75rem; font-weight: 700; color: var(--brand-700); line-height: 1; letter-spacing: -.04em; }
.verdict__max { font-size: .7rem; color: var(--muted); font-weight: 600; }
.verdict__body h2 { margin: 0 0 6px; font-size: 1.12rem; }
.verdict__body p { margin: 0 0 14px; font-size: .96rem; color: var(--ink-2); font-family: var(--font); }
.verdict__actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.verdict__price { font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; }

/* ---------- Pros y contras ---------- */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 1.8em 0; font-family: var(--font); }
.proscons__col { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.proscons__col--pros { background: #f2f8f4; border-color: #cfe3d6; }
.proscons__col--cons { background: #fdf5f2; border-color: #eed6ce; }
.proscons__col h3 {
  margin: 0 0 12px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
  display: flex; align-items: center; gap: 8px;
}
.proscons__col--pros h3 { color: var(--ok); }
.proscons__col--cons h3 { color: var(--danger); }
.proscons ul { list-style: none; margin: 0; padding: 0; font-size: .93rem; }
.proscons li { position: relative; padding-left: 24px; margin-bottom: .7em; line-height: 1.5; }
.proscons li:last-child { margin-bottom: 0; }
.proscons li::before {
  position: absolute; left: 0; top: -.05em; font-weight: 700; font-size: 1.05em;
}
.proscons__col--pros li::before { content: "+"; color: var(--ok); }
.proscons__col--cons li::before { content: "−"; color: var(--danger); }

/* ---------- FAQ ---------- */
.faq { font-family: var(--font); margin: 1.8em 0; }
.faq__item { border-top: 1px solid var(--line); padding: 18px 0; }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { font-size: 1.02rem; font-weight: 600; margin: 0 0 8px; color: var(--ink); }
.faq__a { margin: 0; color: var(--ink-2); font-size: .96rem; line-height: 1.6; }

/* ---------- Aviso de afiliacion ---------- */
.disclosure {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--amazon);
  border-radius: var(--radius-sm); padding: 13px 16px; margin: 0 0 28px;
  font-family: var(--font); font-size: .84rem; color: var(--ink-2); line-height: 1.5;
}
.disclosure a { color: var(--brand); }

/* ---------- CTA fija en movil ---------- */
.cta-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  display: none; align-items: center; gap: 14px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 22px rgba(45,40,30,.09);
}
.cta-sticky__info { flex: 1; min-width: 0; font-family: var(--font); }
.cta-sticky__name {
  font-size: .8rem; color: var(--ink-2); margin: 0; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.cta-sticky__price { font-size: 1.08rem; font-weight: 700; letter-spacing: -.03em; margin: 0; }

/* ---------- Enlaces internos contextuales ---------- */
.seealso {
  font-family: var(--font); background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px; margin: 2em 0;
}
.seealso__title {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
  font-weight: 600; margin: 0 0 12px;
}
.seealso ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.seealso a { color: var(--ink); text-decoration: none; font-size: .94rem; font-weight: 500; display: inline-flex; gap: 8px; }
.seealso a::before { content: "→"; color: var(--brand-300); }
.seealso a:hover { color: var(--brand-700); text-decoration: underline; }

/* ---------- Relacionados ---------- */
.related { margin-top: 52px; padding-top: 34px; border-top: 1px solid var(--line); }
.related h2 { font-size: 1.25rem; margin: 0 0 20px; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--brand-700);
  background-image: radial-gradient(700px 300px at 85% -30%, rgba(127,167,146,.4), transparent 65%);
  color: #fff; border-radius: var(--radius-lg); padding: 42px 38px;
  box-shadow: var(--shadow-lg); font-family: var(--font);
}
.newsletter h2 { color: #fff; margin: 0 0 10px; font-size: 1.5rem; max-width: 20ch; }
.newsletter p { color: rgba(255,255,255,.82); max-width: 50ch; margin: 0 0 22px; font-size: .97rem; }
.newsletter form { display: flex; gap: 10px; max-width: 470px; flex-wrap: wrap; }
.newsletter input[type=email] {
  flex: 1; min-width: 210px; padding: 13px 17px; border-radius: 10px; border: 1px solid transparent;
  font-size: 1rem; font-family: var(--font); color: var(--ink);
}
.newsletter input[type=email]:focus-visible { outline: 3px solid var(--brand-300); }
.newsletter .btn { background: #fff; color: var(--brand-700); box-shadow: none; }
.newsletter .btn:hover { background: var(--brand-50); color: var(--brand-700); }
.newsletter__note { font-size: .79rem; color: rgba(255,255,255,.6); margin: 14px 0 0; }
.newsletter__msg { margin-top: 12px; font-weight: 600; min-height: 1.2em; font-size: .92rem; }

/* ---------- Pie ---------- */
.site-footer { background: var(--paper-2); border-top: 1px solid var(--line); padding: 52px 0 34px; margin-top: 64px; }
.site-footer__grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 44px; }
.site-footer__brand { max-width: 42ch; }
.site-footer__disc { font-size: .84rem; color: var(--muted); margin-top: 14px; line-height: 1.55; }
.site-footer h4 {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
  margin: 0 0 14px; font-weight: 600;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--ink-2); font-size: .93rem; text-decoration: none; }
.site-footer a:hover { color: var(--brand-700); text-decoration: underline; }
.site-footer__bottom {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: .83rem; color: var(--muted); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}

/* ---------- 404 ---------- */
.notfound { padding: 96px 0; text-align: center; }
.notfound h1 { font-size: clamp(2.4rem, 7vw, 3.6rem); }
.notfound p { color: var(--ink-2); max-width: 46ch; margin: 0 auto 28px; font-family: var(--font-read); font-size: 1.1rem; }

/* ---------- Utilidades ---------- */
.pill {
  display: inline-block; background: var(--brand-50); color: var(--brand-700);
  font-size: .74rem; font-weight: 600; padding: 5px 11px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: .05em;
}
.pill--amazon { background: var(--amazon-50); color: var(--amazon-700); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
a.sr-only:focus-visible {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  padding: 12px 18px; background: var(--brand); color: #fff; border-radius: 9px; z-index: 999;
}

/* ---------- Banner de cookies ---------- */
.cookie-banner {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: var(--z-banner); width: min(660px, calc(100vw - 32px));
  display: flex; align-items: center; gap: 18px;
  padding: 15px 19px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
/* Sin esto, el display:flex de arriba gana al [hidden] del navegador y el
   aviso no se puede cerrar. */
.cookie-banner[hidden] { display: none; }
.cookie-banner__text { margin: 0; font-size: .855rem; color: var(--ink-2); line-height: 1.5; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .article__grid { grid-template-columns: minmax(0, 1fr); gap: 0; max-width: var(--maxw-read); }
  .article__aside-inner { position: static; }
  .toc {
    background: var(--paper-2); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 14px 18px; margin-bottom: 30px;
  }
  .toc > summary {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; list-style: none; font-size: .74rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
  }
  .toc > summary::-webkit-details-marker { display: none; }
  .toc > summary::after { content: "+"; font-size: 1.15rem; color: var(--ink-2); }
  .toc[open] > summary::after { content: "−"; }
  .toc[open] > summary { margin-bottom: 12px; }
  .toc .toc__title { display: none; }
  .toc ul { border-left: 0; }
  .toc a { padding-left: 0; border-left: 0; }
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .toppick { max-width: 420px; }
  .hero__grid--section { grid-template-columns: minmax(0, 1fr) 270px; gap: 28px; }
  .section-hero__image { height: 215px; }
}
@media (max-width: 900px) {
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--cats { grid-template-columns: repeat(2, 1fr); }
  .grid--cats > * { grid-column: span 1 !important; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 66px; left: 0; right: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    display: none; flex-direction: column; align-items: stretch; padding: 10px;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 12px 14px; }
  .article__body { font-size: 1.08rem; }
  .hero__grid--section { grid-template-columns: 1fr; }
  .section-hero__image { width: 100%; height: 220px; transform: none; }
  .proscons { grid-template-columns: 1fr; }
  .verdict { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .cta-sticky { display: flex; }
  /* Deja hueco para que la CTA fija no tape el pie. */
  body:has(.cta-sticky) .site-footer { padding-bottom: 90px; }
  .cookie-banner { bottom: 78px; }
}
@media (max-width: 560px) {
  .grid--4, .grid--3, .grid--2, .grid--cats { grid-template-columns: 1fr; }
  .hero { padding: 44px 0 34px; }
  .section { padding: 44px 0; }
  .newsletter { padding: 30px 22px; border-radius: var(--radius); }
  .toppick__image { height: 150px; }
  .cat-card__image { height: 156px; }
  .page-image img { max-height: 300px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .trustbar { gap: 14px 22px; }
}

/* Aceptar y rechazar con el mismo peso: el banner es opt-in real. */
.cookie-banner__actions { display: flex; gap: .5rem; flex-shrink: 0; }
@media (max-width: 640px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}
