/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-2: #eef0f3;
  --ink: #12161c;
  --ink-soft: #5b6472;
  --ink-faint: #8891a0;
  --line: #e2e5ea;
  --line-strong: #cdd2da;

  --accent: #ff6b35;
  --accent-ink: #2a0d00;
  --accent-hover: #e6572a;
  --accent-soft: #ffe9de;

  --brand: #0e7c86;
  --brand-ink: #063338;
  --brand-soft: #e3f4f4;
  --brand-hover: #0a636b;

  --success: #1a7f4e;
  --success-soft: #e6f4ec;
  --danger: #c1341f;
  --danger-soft: #fbe9e6;
  --star: #f5a623;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 16px rgba(18, 22, 28, .06);
  --shadow-lg: 0 16px 40px rgba(18, 22, 28, .12);
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
  --container: 1200px;

  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Consolas", monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1114;
    --surface: #171b20;
    --surface-2: #1e232a;
    --ink: #eef1f5;
    --ink-soft: #a3adb8;
    --ink-faint: #707a86;
    --line: #262c34;
    --line-strong: #333b45;
    --accent-soft: #3a1c0f;
    --brand-soft: #103436;
    --success-soft: #10301f;
    --danger-soft: #351310;
    --shadow: 0 4px 20px rgba(0, 0, 0, .35);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, .5);
  }
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--font-display); text-wrap: balance; line-height: 1.1; letter-spacing: -0.01em; font-weight: 700; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--accent-soft); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; padding: .7rem 1.1rem;
  background: var(--ink); color: var(--bg); z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.section { padding-block: clamp(2.6rem, 6vw, 5rem); }
.section-head { max-width: 640px; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em; color: var(--brand); margin-bottom: .6rem;
}
.section-head h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); margin-bottom: .5rem; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }
.mt-0 { margin-top: 0; }
.scroller { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.scroller::-webkit-scrollbar { height: 8px; }
.scroller::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 8px; }

/* =============================================================
   4. Buttons & badges
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: .96rem;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), background .18s var(--ease-out), color .18s var(--ease-out);
  white-space: nowrap;
}
.btn-primary, .btn-primary:hover { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { border: 1.5px solid var(--line-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost { color: var(--brand); font-weight: 700; }
.btn-ghost:hover { color: var(--brand-hover); }
.btn-sm { padding: .55rem 1rem; font-size: .86rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }

.badge {
  display: inline-flex; align-items: center; gap: .3rem; padding: .3rem .7rem; border-radius: 999px;
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.badge-bestseller { background: var(--accent-soft); color: var(--accent-hover); }
.badge-value { background: var(--success-soft); color: var(--success); }
.badge-editor { background: var(--brand-soft); color: var(--brand-ink); }
.badge-cat { background: var(--surface-2); color: var(--ink-soft); }
.badge-offer { background: var(--danger-soft); color: var(--danger); }

/* =============================================================
   5. Header / Nav
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 500; background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(1px)) { .site-header { background: var(--surface); } }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center; color: #fff; font-size: 1.05rem; flex: none;
}
.nav-links { display: none; align-items: center; gap: 1.7rem; font-weight: 600; font-size: .95rem; }
.nav-links a { color: var(--ink-soft); transition: color .15s var(--ease-out); }
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.nav-links a.nav-cta, .nav-links a.nav-cta:hover { background: var(--brand); color: #fff; padding: .55rem 1.05rem; border-radius: 999px; }
.nav-cta-desktop { display: none; }
.nav-toggle { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; }
.nav-toggle:hover { background: var(--surface-2); }
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-cta-desktop { display: inline-flex; }
}
.mobile-menu {
  position: fixed; inset: 72px 0 0 0; background: var(--bg); z-index: 490; padding: 1.4rem var(--gutter);
  transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { display: block; padding: .95rem 0; font-size: 1.15rem; font-weight: 700; border-bottom: 1px solid var(--line); }
@media (min-width: 960px) { .mobile-menu { display: none; } }

/* =============================================================
   6. Hero
   ============================================================= */
.hero { padding-block: clamp(2.4rem, 7vw, 4.6rem) clamp(2rem, 5vw, 3rem); position: relative; overflow: clip; }
.hero-halo {
  position: absolute; inset: -40% -10% -60% -10%; z-index: -1; pointer-events: none;
  background: radial-gradient(45% 40% at 30% 20%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 70%),
              radial-gradient(40% 35% at 85% 10%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%);
  filter: blur(60px);
}
.hero-grid { display: grid; gap: 2.4rem; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 3rem; } }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 1rem; max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero-lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 52ch; margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 1.4rem 1.8rem; }
.trust-item { display: flex; align-items: center; gap: .55rem; font-size: .88rem; color: var(--ink-soft); font-weight: 600; }
.trust-item svg { width: 20px; height: 20px; color: var(--brand); flex: none; }

.hero-visual {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--shadow-lg);
}
.hero-visual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.hero-mini-card { background: var(--surface-2); border-radius: var(--radius); padding: .9rem; text-align: center; }
.hero-mini-card img { width: 100%; aspect-ratio: 1; object-fit: contain; margin-bottom: .5rem; }
.hero-mini-card .hmc-name { font-size: .78rem; font-weight: 700; }
.hero-mini-card .hmc-price { font-size: .82rem; color: var(--brand); font-weight: 800; font-family: var(--font-mono); }

/* =============================================================
   7. Product cards
   ============================================================= */
.grid { display: grid; gap: 1.3rem; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid-cats { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.card-watch {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s var(--ease-out);
  position: relative;
}
@media (hover: hover) { .card-watch:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); } }
.cw-media { position: relative; background: var(--surface-2); padding: 1.4rem 1.4rem .6rem; }
.cw-media img { width: 100%; aspect-ratio: 1/1; object-fit: contain; }
.cw-badges { position: absolute; top: .8rem; left: .8rem; display: flex; flex-direction: column; gap: .4rem; z-index: 2; }
.cw-cat { position: absolute; top: .8rem; right: .8rem; z-index: 2; }
.cw-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.cw-name { font-size: 1.06rem; font-weight: 700; line-height: 1.25; }
.cw-name a::after { content: ""; position: absolute; inset: 0; }
.cw-rating { display: flex; align-items: center; gap: .4rem; font-size: .84rem; color: var(--ink-soft); }
.stars { color: var(--star); letter-spacing: 1px; font-size: .82rem; }
.cw-specs { display: flex; flex-wrap: wrap; gap: .4rem .7rem; font-size: .78rem; color: var(--ink-soft); }
.cw-specs span { display: inline-flex; align-items: center; gap: .3rem; }
.cw-specs svg { width: 14px; height: 14px; color: var(--brand); }
.cw-price-row { display: flex; align-items: baseline; gap: .55rem; margin-top: auto; padding-top: .4rem; }
.cw-price { font-size: 1.3rem; font-weight: 800; font-family: var(--font-mono); }
.cw-price-old { font-size: .86rem; color: var(--ink-faint); text-decoration: line-through; }
.cw-actions { display: flex; gap: .6rem; margin-top: .5rem; position: relative; z-index: 3; }
.cw-actions .btn { flex: 1; }
.cw-updated { font-size: .72rem; color: var(--ink-faint); }

/* =============================================================
   8. Category cards
   ============================================================= */
.cat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .5rem; transition: border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
@media (hover: hover) { .cat-card:hover { transform: translateY(-3px); border-color: var(--brand); } }
.cat-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: .3rem; }
.cat-icon svg { width: 24px; height: 24px; }
.cat-card h3 { font-size: 1.08rem; }
.cat-card p { font-size: .88rem; color: var(--ink-soft); }
.cat-count { font-size: .8rem; color: var(--brand); font-weight: 700; margin-top: .2rem; }

/* =============================================================
   9. Trust / why-us
   ============================================================= */
.why-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.why-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.why-card .wc-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-hover); display: grid; place-items: center; margin-bottom: .8rem; }
.why-card .wc-icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1rem; margin-bottom: .35rem; }
.why-card p { font-size: .9rem; color: var(--ink-soft); }

/* =============================================================
   10. Buscador por prioridad
   ============================================================= */
.quiz-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.quiz-head { background: linear-gradient(135deg, var(--brand), #0a5057); color: #fff; padding: 1.6rem 1.6rem 1.3rem; }
.quiz-head h2 { color: #fff; font-size: 1.4rem; margin-bottom: .3rem; }
.quiz-head p { color: rgba(255,255,255,.85); font-size: .92rem; }
.quiz-body { padding: 1.5rem 1.6rem 1.8rem; }
.quiz-options { display: grid; gap: .7rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.quiz-opt {
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1rem .9rem; text-align: center; font-weight: 700; font-size: .92rem;
  transition: all .15s var(--ease-out); display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.quiz-opt svg { width: 26px; height: 26px; color: var(--brand); flex: none; }
.quiz-opt:hover { border-color: var(--brand); background: var(--brand-soft); }
.quiz-opt.is-selected { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-ink); }
.finder-result { margin-top: 1.6rem; }
.finder-result:empty { margin-top: 0; }
.finder-lead { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1rem; }

/* =============================================================
   11. Filters (category pages)
   ============================================================= */
.filters-bar { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin-bottom: 1.6rem; padding: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.filters-bar label { font-size: .82rem; font-weight: 700; color: var(--ink-soft); margin-right: .3rem; }
.filters-bar select {
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); padding: .5rem .8rem; font: inherit; font-weight: 600;
  background: var(--surface); color: var(--ink);
}
.filters-count { margin-left: auto; font-size: .85rem; color: var(--ink-soft); }

/* =============================================================
   12. Ficha (product page)
   ============================================================= */
.ficha-top { display: grid; gap: 2rem; padding-block: 1.6rem 2.4rem; }
@media (min-width: 900px) { .ficha-top { grid-template-columns: 1fr 1.1fr; gap: 2.6rem; } }
.breadcrumbs { font-size: .82rem; color: var(--ink-faint); margin-bottom: 1rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--brand); }

.ficha-galeria-main { background: var(--surface-2); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: .8rem; }
.ficha-galeria-main img { width: 100%; aspect-ratio: 1/1; object-fit: contain; padding: 1.4rem; }
.ficha-thumbs { display: flex; gap: .6rem; flex-wrap: wrap; }
.ficha-thumbs button { width: 66px; height: 66px; border-radius: var(--radius-sm); background: var(--surface-2); border: 2px solid transparent; padding: .3rem; }
.ficha-thumbs button.is-active { border-color: var(--brand); }
.ficha-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.ficha-marca { color: var(--brand); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.ficha-nombre { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .6rem; }
.ficha-rating { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; font-size: .92rem; color: var(--ink-soft); }
.ficha-rating .stars { font-size: 1rem; }
.ficha-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.ficha-precio-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; margin-bottom: 1.2rem; }
.precio-actual { font-size: 2rem; font-weight: 800; font-family: var(--font-mono); }
.precio-antes { font-size: 1rem; color: var(--ink-faint); text-decoration: line-through; margin-left: .5rem; }
.precio-nota { font-size: .78rem; color: var(--ink-faint); margin-top: .3rem; }
.ficha-quick-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-bottom: 1.2rem; }
.qs-item { background: var(--surface-2); border-radius: var(--radius-sm); padding: .7rem .8rem; }
.qs-item .qs-label { font-size: .72rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .04em; }
.qs-item .qs-value { font-weight: 700; font-size: .95rem; }
.ideal-para-chip { background: var(--brand-soft); color: var(--brand-ink); border-radius: var(--radius); padding: .9rem 1.1rem; font-size: .9rem; margin-bottom: 1.2rem; }
.ideal-para-chip strong { display: block; margin-bottom: .2rem; }

/* Sticky mobile buy bar */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400; background: var(--surface); border-top: 1px solid var(--line);
  padding: .7rem var(--gutter); display: flex; align-items: center; gap: .8rem; box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  transform: translateY(100%); transition: transform .25s var(--ease-out);
}
.sticky-buy.is-visible { transform: translateY(0); }
.sticky-buy .sb-price { font-weight: 800; font-family: var(--font-mono); font-size: 1.05rem; white-space: nowrap; }
.sticky-buy .btn { flex: 1; }
@media (min-width: 900px) { .sticky-buy { display: none; } }

/* Radar chart */
.radar-wrap { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.radar-wrap svg { max-width: 340px; width: 100%; }
.radar-legend { display: flex; flex-wrap: wrap; gap: .5rem 1rem; justify-content: center; font-size: .82rem; }
.radar-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.radar-legend i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

/* Spec table */
.spec-table-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.spec-group-title { background: var(--surface-2); padding: .7rem 1.2rem; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.spec-table-wrap table { width: 100%; }
.spec-table-wrap tr { border-bottom: 1px solid var(--line); }
.spec-table-wrap tr:last-child { border-bottom: none; }
.spec-table-wrap td { padding: .8rem 1.2rem; font-size: .92rem; }
.spec-table-wrap td:first-child { color: var(--ink-soft); display: flex; align-items: center; gap: .4rem; }
.spec-table-wrap td:last-child { text-align: right; font-weight: 700; font-family: var(--font-mono); }
.spec-yes { color: var(--success); }
.spec-no { color: var(--ink-faint); }
.glossary-term { border-bottom: 1.5px dotted var(--ink-faint); cursor: help; position: relative; }
.glossary-term:hover .glossary-tip, .glossary-term:focus .glossary-tip { opacity: 1; transform: translate(-50%, -4px); pointer-events: auto; }
.glossary-tip {
  position: absolute; bottom: 100%; left: 50%; transform: translate(-50%, 0); width: max-content; max-width: 240px;
  background: var(--ink); color: var(--bg); font-family: var(--font-body); font-weight: 400; font-size: .8rem;
  padding: .6rem .8rem; border-radius: var(--radius-sm); opacity: 0; pointer-events: none; transition: all .15s var(--ease-out); z-index: 20;
  margin-bottom: 8px; line-height: 1.4; text-align: left;
}
.specs-extra { margin-top: 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; }
.specs-extra summary { font-weight: 700; cursor: pointer; }

.editorial-cuerpo { font-size: 1.02rem; line-height: 1.75; color: var(--ink); }
.editorial-cuerpo p + p { margin-top: 1rem; }
.pros-contras { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; margin: 1.4rem 0; }
@media (max-width: 539px) { .pros-contras { grid-template-columns: 1fr; } }
.pc-col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.pc-col h3 { font-size: .95rem; display: flex; align-items: center; gap: .5rem; margin-bottom: .7rem; }
.pc-col h3 svg { width: 1.15em; height: 1.15em; flex: none; }
.pc-col.pros h3 { color: var(--success); }
.pc-col.contras h3 { color: var(--danger); }
.pc-col li { display: flex; gap: .5rem; font-size: .9rem; margin-bottom: .55rem; align-items: flex-start; }
.pc-col li svg { width: 16px; height: 16px; flex: none; margin-top: .15em; }
.pc-col.pros li svg { color: var(--success); }
.pc-col.contras li svg { color: var(--danger); }

.resenas-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; }
.resenas-resumen-ia { font-size: .78rem; color: var(--ink-faint); margin-top: .8rem; }

.similares-strip { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: .5rem; }
.similares-strip .card-watch { min-width: 220px; flex: none; }

.aviso-afiliados { font-size: .82rem; color: var(--ink-faint); background: var(--surface-2); border-radius: var(--radius); padding: 1rem 1.2rem; margin-block: 1.6rem; }

/* =============================================================
   13. Comparator
   ============================================================= */
.comparador-picker { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem; margin-bottom: 1.6rem; }
.comparador-search { position: relative; margin-bottom: 1rem; }
.comparador-search input { width: 100%; padding: .85rem 1rem .85rem 2.6rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius); font: inherit; background: var(--surface); color: var(--ink); }
.comparador-search svg { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--ink-faint); }
.comparador-suggestions { display: flex; flex-wrap: wrap; gap: .6rem; }
.comparador-chip {
  display: flex; align-items: center; gap: .5rem; border: 1.5px solid var(--line); border-radius: 999px; padding: .5rem .5rem .5rem .5rem;
  font-size: .84rem; font-weight: 600; background: var(--surface-2);
}
.comparador-chip img { width: 28px; height: 28px; object-fit: contain; }
.comparador-chip button.add { color: var(--brand); }
.comparador-slots { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1rem; }
.comparador-slot {
  position: relative; width: 130px; background: var(--surface-2); border-radius: var(--radius); padding: 1.5rem .8rem .8rem; text-align: center;
}
.comparador-slot img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.comparador-slot .cs-name { font-size: .76rem; font-weight: 700; margin-top: .4rem; }
.comparador-slot .remove-badge {
  position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; border-radius: 50%; background: var(--danger); color: #fff;
  display: grid; place-items: center; font-size: .9rem; box-shadow: var(--shadow);
}
.comparador-slot.is-empty { display: flex; align-items: center; justify-content: center; color: var(--ink-faint); font-size: .78rem; border: 1.5px dashed var(--line-strong); background: transparent; }

.comparador-empty { text-align: center; padding: 3rem 1rem; color: var(--ink-soft); }
.comparador-table-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.scroll-hint { display: none; text-align: center; font-size: .78rem; font-weight: 700; color: var(--brand); padding: .7rem 0 0; }
@media (max-width: 719px) { .scroll-hint { display: block; } }
.comparador-table { width: 100%; }
.comparador-table th, .comparador-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); font-size: .88rem; text-align: center; }
.comparador-table th:first-child, .comparador-table td:first-child { text-align: left; color: var(--ink-soft); position: sticky; left: 0; background: var(--surface); min-width: 160px; }
.comparador-table thead th { vertical-align: top; padding-top: 1rem; }
.ct-head-card img { width: 70px; height: 70px; object-fit: contain; margin: 0 auto .5rem; }
.ct-head-card .ct-name { font-weight: 700; font-size: .85rem; display: block; margin-bottom: .3rem; }
.ct-head-card .btn { margin-top: .5rem; }
.comparador-table td.is-best { background: var(--success-soft); color: var(--success); font-weight: 800; }
.comparador-radar-overlay { display: flex; justify-content: center; padding: 1.6rem; }

/* =============================================================
   14. Buying guide / FAQ / ofertas
   ============================================================= */
.guide-content { max-width: 760px; }
.guide-content h2 { margin-top: 2rem; margin-bottom: .8rem; font-size: 1.4rem; }
.guide-content p { margin-bottom: 1rem; color: var(--ink); }
.guide-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.guide-content li { margin-bottom: .4rem; }
.toc-box { background: var(--surface-2); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-bottom: 2rem; }
.toc-box strong { display: block; margin-bottom: .5rem; }
.toc-box a { color: var(--brand); font-weight: 600; display: block; padding: .25rem 0; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 1.1rem 0; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { transition: transform .2s var(--ease-out); flex: none; width: 20px; height: 20px; color: var(--brand); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item p { padding-bottom: 1.1rem; color: var(--ink-soft); }

.offer-strip { display: flex; align-items: center; gap: .5rem; background: var(--danger-soft); color: var(--danger); border-radius: 999px; padding: .5rem 1rem; font-weight: 700; font-size: .84rem; width: fit-content; margin-bottom: 1.6rem; }

/* =============================================================
   15. Footer
   ============================================================= */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); padding-block: 3rem 1.6rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.4fr repeat(3, 1fr); margin-bottom: 2rem; }
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-faint); margin-bottom: .8rem; }
.footer-col a { display: block; padding: .3rem 0; font-size: .9rem; color: var(--ink-soft); }
.footer-col a:hover { color: var(--brand); }
.footer-about p { font-size: .88rem; color: var(--ink-soft); margin-top: .6rem; max-width: 34ch; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between; font-size: .8rem; color: var(--ink-faint); }
.footer-disclosure { font-size: .78rem; color: var(--ink-faint); background: var(--surface); border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 1.6rem; }

/* =============================================================
   16. Reveal / motion
   ============================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition-duration: .01s; }
}

/* =============================================================
   17. Responsive helpers
   ============================================================= */
@media (min-width: 540px) { }
@media (min-width: 720px) { }
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) { }
