/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Manrope", var(--sans);

  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-alt: #eef0f4;
  --ink: #191c22;
  --ink-soft: #5a6170;
  --line: #dfe2ea;

  --accent: #2f6fe0;
  --accent-dark: #1f4fb0;
  --accent-soft: #e4edfc;

  --accent2: #7a3fe0;
  --accent2-soft: #efe6fc;

  --gold: #d9a441;
  --green-ok: #1f9d55;
  --red-bad: #d9432f;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(20, 25, 40, .05), 0 10px 28px rgba(20, 25, 40, .08);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #12141a;
    --surface: #1a1d25;
    --surface-alt: #20242e;
    --ink: #edeff3;
    --ink-soft: #a4abba;
    --line: #2c313d;
    --accent: #6a9bff;
    --accent-dark: #93b7ff;
    --accent-soft: #1e2c4c;
    --accent2: #a179ff;
    --accent2-soft: #2a2149;
  }
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.12; letter-spacing: -0.015em; font-family: var(--display); font-weight: 800; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--accent-soft); color: var(--accent-dark); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--surface); color: var(--ink);
  z-index: 9999; border-radius: 8px; font-weight: 600; box-shadow: var(--shadow);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 760px; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; padding: .8rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: .95rem; transition: transform .15s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s var(--ease-out); white-space: nowrap; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.02rem; }
.btn-md { padding: .65rem 1.1rem; font-size: .88rem; }
.btn-sm { padding: .45rem .85rem; font-size: .82rem; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(47,111,224,.28); }
.btn-outline { background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-buy { background: var(--green-ok); color: #fff; }
.btn-buy:hover { background: #178145; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(31,157,85,.28); }
.btn-buy.is-sample { background: var(--surface-alt); color: var(--ink-soft); cursor: not-allowed; border: 1.5px dashed var(--line); }
.btn-buy.is-sample:hover { transform: none; box-shadow: none; }
.sample-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; opacity: .8; }
.no-commission-tag { display: block; font-size: .72rem; color: var(--ink-soft); margin-top: .35rem; font-style: italic; }

/* =============================================================
   4. Header
   ============================================================= */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 90%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 66px; }
.brand { display: flex; align-items: center; gap: .5rem; font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--accent-dark); flex-shrink: 0; }
.header-nav { display: none; gap: 1.35rem; font-size: .9rem; font-weight: 600; flex: 1; }
.header-nav a { color: var(--ink-soft); transition: color .2s var(--ease-out); white-space: nowrap; }
.header-nav a:hover, .header-nav a.is-active { color: var(--accent); }
.header-cta { display: none; flex-shrink: 0; }
@media (min-width: 960px) { .header-nav { display: flex; } .header-cta { display: inline-flex; } }

/* =============================================================
   5. Hero
   ============================================================= */
.hero {
  padding: 3.5rem 0 2.5rem;
  background: radial-gradient(60% 90% at 85% 0%, var(--accent-soft), transparent 70%),
              radial-gradient(55% 80% at 5% 30%, var(--accent2-soft), transparent 70%);
}
.hero-inner { text-align: center; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); max-width: 20ch; margin: 0 auto; }
.hero-sub { margin: 1.1rem auto 0; max-width: 58ch; color: var(--ink-soft); font-size: 1.08rem; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 1.75rem; }

/* =============================================================
   6. Sections
   ============================================================= */
.section { padding: 3rem 0; }
.section-alt { background: var(--surface-alt); }
.section h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 1.5rem; }
.section p { color: var(--ink-soft); }

.page-header { padding: 2.5rem 0 1.5rem; text-align: center; }
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-header-sub { margin-top: .75rem; color: var(--ink-soft); max-width: 60ch; margin-inline: auto; }

.breadcrumb { padding: 1rem 1.25rem 0; font-size: .85rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent); }

/* =============================================================
   7. Product card & grid
   ============================================================= */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card-media {
  display: block; position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 8%, #fbfbfc 0%, #eef0f4 78%);
}
.product-card-media::after {
  content: ""; position: absolute; left: 12%; right: 12%; bottom: 8%; height: 18%;
  background: radial-gradient(closest-side, rgba(20,22,30,.16), transparent 75%);
  filter: blur(4px); pointer-events: none;
}
.product-card-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: 1.1rem; mix-blend-mode: multiply; }
.card-sample-ribbon {
  position: absolute; top: 12px; left: -32px; z-index: 2;
  background: var(--gold); color: #2a1e00; font-size: .68rem; font-weight: 800;
  padding: .3rem 2.5rem; transform: rotate(-40deg); text-transform: uppercase; letter-spacing: .04em;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.product-card-body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.product-card-cat { font-size: .72rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .05em; }
.product-card-body h3 { font-size: 1.05rem; font-weight: 700; }
.product-card-body h3 a:hover { color: var(--accent); }
.product-card-desc { font-size: .87rem; color: var(--ink-soft); flex: 1; }
.rating { font-size: .85rem; color: var(--gold); font-weight: 700; }
.rating small { color: var(--ink-soft); font-weight: 500; }
.rating-empty { font-size: .8rem; color: var(--ink-soft); font-style: italic; }

.jornada-badge { display: inline-flex; align-items: center; gap: .3rem; font-size: .78rem; font-weight: 700; padding: .3rem .6rem; border-radius: 999px; width: fit-content; }
.jornada-ok { background: color-mix(in srgb, var(--green-ok) 14%, transparent); color: var(--green-ok); }
.jornada-limit { background: color-mix(in srgb, var(--gold) 16%, transparent); color: #8a6414; }

.price-block { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.price-now { font-family: var(--display); font-weight: 800; font-size: 1.25rem; color: var(--ink); }
.price-was { font-size: .88rem; color: var(--ink-soft); text-decoration: line-through; }
.price-badge { background: var(--red-bad); color: #fff; font-size: .72rem; font-weight: 800; padding: .15rem .45rem; border-radius: 6px; }
.price-date { font-size: .74rem; color: var(--ink-soft); }

.product-card-actions { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: .4rem; flex-wrap: wrap; }
.compare-check { display: flex; align-items: center; gap: .35rem; font-size: .78rem; color: var(--ink-soft); cursor: pointer; }

/* =============================================================
   8. Category grid
   ============================================================= */
.section-sub { color: var(--ink-soft); margin-top: -1rem; margin-bottom: 1.5rem; }

.gama-block {
  margin-bottom: 2.75rem; padding: 1.25rem 1.25rem 1.5rem; border-radius: var(--radius);
  background: var(--surface-alt); border: 1px solid var(--line); border-left: 5px solid var(--gama-color, var(--accent));
}
.gama-block:last-child { margin-bottom: 0; }
.gama-block--bajo { --gama-color: var(--green-ok); }
.gama-block--medio { --gama-color: var(--accent); }
.gama-block--alto { --gama-color: var(--gold); }

.gama-block-head { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.gama-pill {
  display: inline-flex; align-items: center; font-weight: 800; font-size: .95rem; letter-spacing: -.01em;
  color: var(--gama-color, var(--accent)); background: color-mix(in srgb, var(--gama-color, var(--accent)) 15%, transparent);
  padding: .35rem .9rem; border-radius: 999px;
}
.gama-block-head p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.gama-count { margin-left: auto; font-size: .8rem; font-weight: 700; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); padding: .25rem .7rem; border-radius: 999px; }
.gama-block .product-grid { margin: 0; }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 720px) { .category-grid { grid-template-columns: repeat(4, 1fr); } }
.category-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.5rem 1rem; text-align: center; transition: transform .2s var(--ease-out), border-color .2s var(--ease-out);
}
.category-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.category-card h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.category-card span { font-size: .82rem; color: var(--ink-soft); }

/* =============================================================
   9. Ficha (product page)
   ============================================================= */
.sample-banner {
  max-width: 1180px; margin: 1rem auto 0; padding: .85rem 1.25rem;
  background: var(--accent2-soft); color: var(--accent2); border-radius: var(--radius-sm);
  font-size: .9rem; border: 1px dashed var(--accent2);
}
.ficha-header { display: flex; flex-direction: column; gap: 1.75rem; padding-top: 1.5rem; }
@media (min-width: 860px) { .ficha-header { flex-direction: row; align-items: flex-start; } }
.ficha-gallery { flex: 1 1 380px; display: flex; flex-direction: column; gap: .6rem; }
.ficha-gallery-hero {
  width: 100%; aspect-ratio: 1/1; position: relative; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 10%, #fbfbfc 0%, #eef0f4 78%);
  border-radius: var(--radius); padding: 1.5rem; display: flex; align-items: center; justify-content: center;
}
.ficha-gallery-hero::after {
  content: ""; position: absolute; left: 14%; right: 14%; bottom: 9%; height: 16%;
  background: radial-gradient(closest-side, rgba(20,22,30,.18), transparent 75%);
  filter: blur(6px); pointer-events: none;
}
.ficha-gallery-hero img { position: relative; z-index: 1; max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.ficha-gallery-thumbs { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .2rem; }
.ficha-gallery-thumb {
  flex: 0 0 auto; width: 68px; height: 68px; padding: .4rem; border-radius: var(--radius-sm);
  border: 2px solid var(--line); background: radial-gradient(120% 120% at 50% 15%, #fbfbfc 0%, #eef0f4 80%);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.ficha-gallery-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.ficha-gallery-thumb.is-active { border-color: var(--accent); }
.ficha-gallery-thumb:hover { border-color: var(--accent); }
.ficha-summary { flex: 1 1 380px; display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.ficha-summary h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.ficha-buy-row { margin: .4rem 0; }
.ficha-ideal { font-size: .92rem; color: var(--ink-soft); background: var(--surface-alt); padding: .75rem 1rem; border-radius: var(--radius-sm); }

.ficha-radar-row { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
@media (min-width: 860px) { .ficha-radar-row { flex-direction: row; align-items: flex-start; } }
.ficha-radar-chart { flex-shrink: 0; width: 260px; }
.ficha-editorial { flex: 1; }
.ficha-editorial p { margin-bottom: 1rem; color: var(--ink); }
.radar-svg { width: 100%; height: auto; }

.spec-table { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.spec-table td, .spec-table th { padding: .65rem .9rem; border-bottom: 1px solid var(--line); font-size: .9rem; text-align: left; }
.spec-table td:first-child { color: var(--ink-soft); width: 45%; }
.spec-table td:last-child { font-weight: 600; }
.spec-group-row th { background: var(--surface-alt); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--accent-dark); }
.spec-table tr:last-child td { border-bottom: none; }

.pros-contras-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .pros-contras-grid { grid-template-columns: 1fr 1fr; } }
.pros-col h3, .contras-col h3 { font-size: 1.05rem; margin-bottom: .75rem; }
.pros-col h3 { color: var(--green-ok); }
.contras-col h3 { color: var(--red-bad); }
.pros-col ul, .contras-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.pros-col li, .contras-col li { padding-left: 1.5rem; position: relative; font-size: .92rem; }
.pros-col li::before { content: "✓"; position: absolute; left: 0; color: var(--green-ok); font-weight: 800; }
.contras-col li::before { content: "✕"; position: absolute; left: 0; color: var(--red-bad); font-weight: 800; }

/* Barras de autonomía / peso */
.bars-block h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.bar-row { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: .75rem; margin-bottom: .65rem; }
.bar-label { font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.bar-track { height: 10px; border-radius: 999px; background: var(--surface-alt); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; transition: width .6s var(--ease-out); }
.bar-value { font-size: .85rem; font-weight: 700; white-space: nowrap; max-width: 30vw; overflow: hidden; text-overflow: ellipsis; }
.bar-track { min-width: 0; }
.bars-note { font-size: .78rem; color: var(--ink-soft); margin-top: .5rem; }

.comparador-bars { display: flex; flex-direction: column; gap: 1.5rem; }
.comparador-bars h3 { font-size: 1rem; margin-bottom: .75rem; }
.comparador-bar-group { display: flex; flex-direction: column; gap: .5rem; }
.comparador-bar-row { display: grid; grid-template-columns: 140px 1fr auto; align-items: center; gap: .75rem; }
.comparador-bar-row .bar-label { font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Selector interactivo de perfil de autonomía */
.autonomy-picker { margin-bottom: 1.1rem; }
.autonomy-picker-label { display: block; font-size: .82rem; font-weight: 700; color: var(--ink-soft); margin-bottom: .5rem; }
.autonomy-picker-btns { display: flex; flex-wrap: wrap; gap: .5rem; }
.autonomy-profile-btn {
  padding: .5rem .9rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--surface); color: var(--ink-soft); font-size: .82rem; font-weight: 600;
  transition: background .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.autonomy-profile-btn:hover { border-color: var(--accent); color: var(--accent); }
.autonomy-profile-btn.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* =============================================================
   10. Comparador
   ============================================================= */
.comparador-picker { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1rem; }
.comparador-select { flex: 1 1 280px; min-width: 0; max-width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink); font: inherit; text-overflow: ellipsis; }
.comparador-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; min-height: 2rem; }
.comparador-chip { display: flex; align-items: center; gap: .5rem; background: var(--surface); border: 1.5px solid var(--line); border-radius: 999px; padding: .4rem .5rem .4rem .9rem; font-size: .85rem; font-weight: 600; }
.comparador-chip button { color: var(--ink-soft); font-size: 1rem; line-height: 1; padding: .1rem .3rem; border-radius: 50%; }
.comparador-chip button:hover { background: var(--surface-alt); color: var(--red-bad); }
.comparador-chip-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.comparador-empty { text-align: center; color: var(--ink-soft); padding: 2rem 1rem; border: 1.5px dashed var(--line); border-radius: var(--radius); }

.comparador-result { display: flex; flex-direction: column; gap: 2rem; }
.comparador-radar-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
#comparador-radar { max-width: 360px; width: 100%; height: auto; }
.comparador-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; font-size: .85rem; font-weight: 600; }
.comparador-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.comparador-legend i { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }

.comparador-table-wrap { overflow-x: auto; }
.comparador-table { min-width: 560px; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.comparador-table th, .comparador-table td { padding: .65rem .9rem; border-bottom: 1px solid var(--line); font-size: .88rem; text-align: center; white-space: nowrap; }
.comparador-table td:first-child, .comparador-table th:first-child { text-align: left; position: sticky; left: 0; background: var(--surface); font-weight: 600; color: var(--ink-soft); white-space: normal; }
.comparador-table thead th { background: var(--surface-alt); font-size: .82rem; }
.comparador-table thead th:first-child { background: var(--surface-alt); }
.comparador-table td.is-best { color: var(--green-ok); font-weight: 800; }
.comparador-table tr.spec-group-row th { background: var(--accent-soft); color: var(--accent-dark); text-transform: uppercase; font-size: .74rem; letter-spacing: .04em; text-align: left; }
.comparador-table .comparador-th-product { display: flex; flex-direction: column; align-items: center; gap: .4rem; white-space: normal; }
.comparador-table .comparador-th-product img { width: 60px; height: 60px; object-fit: contain; }

/* =============================================================
   11. Guides / FAQ
   ============================================================= */
.guia-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 720px) { .guia-grid { grid-template-columns: repeat(3, 1fr); } }
.guia-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.guia-item h3 a:hover { color: var(--accent); }
.guia-item-why { font-size: .85rem; color: var(--ink-soft); }

.faq-list { display: flex; flex-direction: column; gap: .6rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary { padding: 1rem 1.15rem; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--accent); flex-shrink: 0; transition: transform .2s var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.15rem 1.1rem; font-size: .92rem; }

.ofertas-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; grid-column: 1 / -1; }

.related-guides { margin-bottom: 1.5rem; }
.related-guides h3 { font-size: 1rem; margin-bottom: .6rem; }
.related-guides ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.related-guides a { font-weight: 600; }

/* =============================================================
   12. Ad slots
   ============================================================= */
.ad-slot {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem;
  border-radius: var(--radius-sm); background: var(--surface-alt); overflow: hidden;
}
.ad-slot-label { font-size: .68rem; font-weight: 700; letter-spacing: .08em; color: var(--ink-soft); text-transform: uppercase; }
.ad-slot .adsbygoogle { width: 100%; }
.ad-slot-banner { max-width: 1180px; margin: 1.5rem auto; min-height: 90px; }
.ad-slot-incontent { max-width: 760px; margin: 2rem auto; min-height: 250px; }

.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: var(--surface); border-top: 1px solid var(--line); box-shadow: 0 -8px 28px rgba(0,0,0,.16);
  padding: 1rem 1.25rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem;
}
.cookie-banner p { margin: 0; font-size: .85rem; color: var(--ink-soft); max-width: 640px; }
.cookie-banner-actions { display: flex; gap: .6rem; flex: 0 0 auto; }

/* =============================================================
   13. Disclosure & legal
   ============================================================= */
.disclosure-inline { font-size: .85rem; color: var(--ink-soft); background: var(--surface-alt); padding: .85rem 1rem; border-radius: var(--radius-sm); }
.affiliate-disclosure { font-size: .78rem; color: var(--ink-soft); padding-top: 1.5rem; border-top: 1px solid var(--line); margin-top: 1.5rem; }
.legal-page h1 { margin-bottom: 1.25rem; }
.legal-page h2 { font-size: 1.15rem; margin-top: 1.75rem; margin-bottom: .5rem; }
.legal-page p { margin-bottom: .5rem; }

/* =============================================================
   14. Footer
   ============================================================= */
.site-footer { border-top: 1px solid var(--line); padding: 2.5rem 0 1.5rem; margin-top: 2rem; background: var(--surface-alt); }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 640px) { .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.footer-brand p { color: var(--ink-soft); font-size: .85rem; max-width: 42ch; margin-top: .4rem; }
.footer-inner nav { display: flex; gap: 1.25rem; font-size: .88rem; font-weight: 600; color: var(--ink-soft); }
.footer-copy { max-width: 1180px; margin: 1.5rem auto 0; padding: 0 1.25rem; text-align: center; font-size: .78rem; color: var(--ink-soft); }

/* =============================================================
   15. Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { transform: none; transition: opacity .25s linear; }
}
