/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #0b0d09;
  --bg-elevated: #12150e;
  --card: #171b12;
  --card-hover: #1d2216;
  --border: #262c1c;
  --border-soft: #1c2115;
  --text: #f3f5ea;
  --text-dim: #aab094;
  --text-faint: #737a63;
  --accent: #c8ff5e;
  --accent-ink: #10130a;
  --accent-2: #5ee3ff;
  --success: #79e0a6;
  --danger: #ff8a80;
  --warning: #ffc95e;

  --display: "Space Grotesk", "Inter", sans-serif;
  --sans: "Inter", "Segoe UI", sans-serif;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --container: 1240px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);

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

  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.03) inset, 0 12px 28px -18px rgba(0, 0, 0, 0.7);
  --shadow-pop: 0 20px 60px -20px rgba(0, 0, 0, 0.65);

  color-scheme: dark;
}

/* =============================================================
   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 {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  background-image:
    radial-gradient(ellipse 70% 45% at 15% -10%, rgba(200, 255, 94, 0.09), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(94, 227, 255, 0.06), transparent 60%);
  background-attachment: fixed;
}

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; }
p { text-wrap: pretty; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--display); text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; font-weight: 600; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--accent); color: var(--accent-ink); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--accent); color: var(--accent-ink);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .25s 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); white-space: nowrap; border: 0;
}
.section { padding-block: clamp(3rem, 7vw, 6rem); position: relative; }
.section-tight { padding-block: clamp(2rem, 4vw, 3.2rem); }
.section-head { max-width: 62ch; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .8rem;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(200,255,94,.18); }
.section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: .6rem; }
.section-head p { color: var(--text-dim); font-size: 1.02rem; }
.muted { color: var(--text-dim); }
.center { text-align: center; margin-inline: auto; }

/* =============================================================
   4. Buttons & badges
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out), color .2s var(--ease-out);
  white-space: nowrap;
}
.btn-primary, a.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 8px 24px -10px rgba(200,255,94,.45);
}
.btn-primary:hover, a.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(200,255,94,.55); }
.btn-ghost, a.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--border);
}
.btn-ghost:hover, a.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.btn-sm { padding: .55rem 1rem; font-size: .84rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: 999px;
  background: rgba(255,255,255,.06); color: var(--text-dim); border: 1px solid var(--border);
}
.badge-accent { background: rgba(200,255,94,.14); color: var(--accent); border-color: rgba(200,255,94,.3); }
.badge-offer { background: rgba(255,138,128,.14); color: var(--danger); border-color: rgba(255,138,128,.3); }
.badge-dgt { background: rgba(94,227,255,.12); color: var(--accent-2); border-color: rgba(94,227,255,.3); }

/* =============================================================
   5. Header / nav
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,13,9,.82); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}
@supports not (backdrop-filter: blur(1px)) { .site-header { background: #0d0f0a; } }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; color: var(--accent-ink); font-weight: 800; font-size: .9rem;
}
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a:not(.nav-cta) { font-size: .93rem; color: var(--text-dim); font-weight: 500; transition: color .2s var(--ease-out); position: relative; }
.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a:not(.nav-cta).is-active { color: var(--text); }
.nav-links a:not(.nav-cta).is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-links a.nav-cta, .nav-links a.nav-cta:hover {
  color: var(--accent-ink); background: var(--accent); padding: .55rem 1.1rem; border-radius: 999px; font-weight: 700; font-size: .88rem;
}
.nav-links a.nav-cta .compare-count {
  background: var(--accent-ink); color: var(--accent); border-radius: 999px; font-size: .72rem; padding: .05rem .45rem; margin-left: .35rem; font-weight: 800;
}
.nav-actions { display: flex; align-items: center; gap: .8rem; }
.nav-toggle-input { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border); align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; }
.nav-toggle { flex-direction: column; gap: 4px; }

/* CSS-only mobile drawer: no JS required to open/close navigation */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200; background: rgba(6,7,4,.6);
  opacity: 0; pointer-events: none; transition: opacity .25s var(--ease-out);
}
.nav-toggle-input:checked ~ .mobile-drawer { opacity: 1; pointer-events: auto; }
.mobile-drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(320px, 84vw);
  background: var(--bg-elevated); border-left: 1px solid var(--border); padding: 1.4rem;
  transform: translateX(100%); transition: transform .3s var(--ease-out);
  display: flex; flex-direction: column; gap: 1.4rem;
}
.nav-toggle-input:checked ~ .mobile-drawer .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-panel a { font-size: 1.05rem; padding: .6rem 0; border-bottom: 1px solid var(--border-soft); color: var(--text); }
.mobile-drawer-close { align-self: flex-end; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; font-size: 1.2rem; cursor: pointer; }

/* =============================================================
   6. Hero
   ============================================================= */
.hero { padding-block: clamp(3.5rem, 9vw, 7rem) clamp(2.5rem, 6vw, 4rem); position: relative; overflow: clip; }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }
.hero-title { font-size: clamp(2.4rem, 5.6vw, 4.1rem); max-width: 16ch; }
.hero-title .accent-text { color: var(--accent); }
.hero-sub { margin-top: 1.1rem; font-size: 1.12rem; color: var(--text-dim); max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.4rem; }
.hero-stat b { display: block; font-family: var(--display); font-size: 1.5rem; }
.hero-stat span { color: var(--text-faint); font-size: .82rem; }
.hero-visual {
  position: relative; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--card), var(--bg-elevated));
  aspect-ratio: 4/3.2; display: grid; place-items: center; box-shadow: var(--shadow-pop);
}
.hero-visual img { width: 82%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }
.hero-visual-glow { position: absolute; inset: -40% -20% auto -20%; height: 70%; background: radial-gradient(closest-side, rgba(200,255,94,.35), transparent 70%); filter: blur(60px); pointer-events: none; }

/* =============================================================
   7. Cards & grids
   ============================================================= */
.grid { display: grid; gap: 1.3rem; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.product-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-m);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out);
  position: relative;
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(200,255,94,.3); }
.product-card-media { position: relative; aspect-ratio: 4/3; background: var(--bg-elevated); overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.product-card:hover .product-card-media img { transform: scale(1.05); }
.product-card-badges { position: absolute; top: .7rem; left: .7rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.product-card-body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.product-card-brand { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-faint); font-weight: 600; }
.product-card-title { font-size: 1.05rem; font-weight: 600; line-height: 1.3; }
.product-card-title a { transition: color .2s; }
.product-card-title a:hover { color: var(--accent); }
.product-card-specs { display: flex; flex-wrap: wrap; gap: .4rem .7rem; font-size: .8rem; color: var(--text-dim); margin-block: .1rem; }
.product-card-specs span { display: inline-flex; align-items: center; gap: .3rem; }
.product-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding-top: .5rem; }
.price-block { display: flex; flex-direction: column; }
.price-now { font-family: var(--display); font-size: 1.3rem; font-weight: 700; }
.price-old { font-size: .82rem; color: var(--text-faint); text-decoration: line-through; }
.price-note { font-size: .68rem; color: var(--text-faint); }
.rating-row { display: flex; align-items: center; gap: .35rem; font-size: .82rem; color: var(--text-dim); }
.stars { display: inline-flex; gap: 1px; color: var(--accent); }
.stars svg { width: 13px; height: 13px; flex: none; }
.card-actions { display: flex; gap: .5rem; padding: 0 1.15rem 1.15rem; }
.compare-toggle {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600;
  border: 1px solid var(--border); border-radius: 999px; padding: .5rem .85rem; color: var(--text-dim);
  transition: all .2s var(--ease-out); flex: none;
}
.compare-toggle:hover { border-color: var(--accent-2); color: var(--accent-2); }
.compare-toggle.is-active { background: rgba(94,227,255,.14); border-color: var(--accent-2); color: var(--accent-2); }

/* Category entry cards */
.category-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.6rem;
  padding: 1.7rem; border-radius: var(--radius-m); border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--card), var(--bg-elevated));
  min-height: 190px; transition: transform .25s var(--ease-out), border-color .25s var(--ease-out);
}
.category-card:hover { transform: translateY(-4px); border-color: rgba(200,255,94,.35); }
.category-card h3 { font-size: 1.25rem; }
.category-card p { color: var(--text-dim); font-size: .88rem; margin-top: .4rem; }
.category-card .cat-arrow { align-self: flex-end; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; transition: all .2s var(--ease-out); }
.category-card:hover .cat-arrow { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

/* =============================================================
   8. Trust / cómo elegimos
   ============================================================= */
.trust-grid { display: grid; gap: 1.2rem; }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card { padding: 1.5rem; border-radius: var(--radius-m); background: var(--card); border: 1px solid var(--border); }
.trust-card-num { font-family: var(--display); color: var(--accent); font-size: 1.4rem; margin-bottom: .6rem; }
.trust-card h3 { font-size: 1.02rem; margin-bottom: .5rem; }
.trust-card p { font-size: .88rem; color: var(--text-dim); }

/* =============================================================
   9. Ficha (product page)
   ============================================================= */
.breadcrumbs { font-size: .82rem; color: var(--text-faint); display: flex; gap: .4rem; flex-wrap: wrap; padding-top: 1.4rem; }
.breadcrumbs a:hover { color: var(--accent); }

.ficha-header { display: grid; gap: clamp(1.8rem, 4vw, 3rem); padding-block: 1.6rem clamp(2rem, 5vw, 3rem); }
@media (min-width: 900px) { .ficha-header { grid-template-columns: 1.05fr .95fr; align-items: start; } }

/* CSS-only gallery: radio inputs + labels swap the visible image, no JS required */
.gallery-radio { position: absolute; opacity: 0; pointer-events: none; }
.gallery-main {
  border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--border);
  background: var(--card); aspect-ratio: 1/1; display: grid; place-items: center; position: relative;
}
.gallery-main img { grid-area: 1/1; width: 100%; height: 100%; object-fit: contain; padding: 1.2rem; display: none; }
.gallery-thumbs { display: flex; gap: .6rem; margin-top: .8rem; overflow-x: auto; padding-bottom: .3rem; }
.gallery-thumbs label {
  flex: none; width: 66px; height: 66px; border-radius: 10px; overflow: hidden; border: 1.5px solid var(--border);
  background: var(--card); opacity: .65; transition: all .2s var(--ease-out); cursor: pointer; display: block;
}
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery-radio:nth-of-type(1):checked ~ .gallery-main img:nth-of-type(1),
.gallery-radio:nth-of-type(2):checked ~ .gallery-main img:nth-of-type(2),
.gallery-radio:nth-of-type(3):checked ~ .gallery-main img:nth-of-type(3),
.gallery-radio:nth-of-type(4):checked ~ .gallery-main img:nth-of-type(4),
.gallery-radio:nth-of-type(5):checked ~ .gallery-main img:nth-of-type(5),
.gallery-radio:nth-of-type(6):checked ~ .gallery-main img:nth-of-type(6),
.gallery-radio:nth-of-type(7):checked ~ .gallery-main img:nth-of-type(7),
.gallery-radio:nth-of-type(8):checked ~ .gallery-main img:nth-of-type(8) { display: block; }
.gallery-radio:nth-of-type(1):checked ~ .gallery-thumbs label:nth-of-type(1),
.gallery-radio:nth-of-type(2):checked ~ .gallery-thumbs label:nth-of-type(2),
.gallery-radio:nth-of-type(3):checked ~ .gallery-thumbs label:nth-of-type(3),
.gallery-radio:nth-of-type(4):checked ~ .gallery-thumbs label:nth-of-type(4),
.gallery-radio:nth-of-type(5):checked ~ .gallery-thumbs label:nth-of-type(5),
.gallery-radio:nth-of-type(6):checked ~ .gallery-thumbs label:nth-of-type(6),
.gallery-radio:nth-of-type(7):checked ~ .gallery-thumbs label:nth-of-type(7),
.gallery-radio:nth-of-type(8):checked ~ .gallery-thumbs label:nth-of-type(8) { opacity: 1; border-color: var(--accent); }

.ficha-info-top { display: flex; flex-direction: column; gap: .9rem; }
.ficha-brand { color: var(--accent-2); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.ficha-title { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
.ficha-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.ficha-price-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-m); padding: 1.3rem; display: flex; flex-direction: column; gap: .9rem; margin-top: .3rem; }
.ficha-price-row { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.ficha-price-row .price-now { font-size: 2rem; }
.ficha-quicknote { font-size: .82rem; color: var(--text-faint); }
.ficha-key-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin-top: .2rem; }
@media (min-width: 480px) { .ficha-key-specs { grid-template-columns: repeat(4, 1fr); } }
.key-spec { background: var(--bg-elevated); border: 1px solid var(--border-soft); border-radius: var(--radius-s); padding: .7rem .6rem; text-align: center; }
.key-spec b { display: block; font-family: var(--display); font-size: 1.05rem; }
.key-spec span { font-size: .68rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .04em; }

.radar-wrap { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-m); padding: 1.4rem; }
.radar-wrap h3 { font-size: 1.02rem; margin-bottom: .2rem; }
.radar-wrap .muted { font-size: .8rem; }
.radar-svg { width: 100%; height: auto; margin-top: .6rem; overflow: visible; }
.radar-legend { display: flex; flex-wrap: wrap; gap: .6rem 1rem; margin-top: .8rem; font-size: .78rem; }
.radar-legend-item { display: flex; align-items: center; gap: .4rem; color: var(--text-dim); }
.radar-legend-dot { width: 10px; height: 10px; border-radius: 3px; flex: none; }

.spec-table-wrap { border: 1px solid var(--border); border-radius: var(--radius-m); overflow: hidden; background: var(--card); }
.spec-group-title { padding: .9rem 1.2rem .5rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); font-weight: 700; }
.spec-table { font-size: .92rem; }
.spec-table tr { border-top: 1px solid var(--border-soft); }
.spec-table tr:first-child { border-top: 0; }
.spec-table th, .spec-table td { text-align: left; padding: .68rem 1.2rem; font-weight: 400; }
.spec-table th { color: var(--text-dim); width: 46%; font-weight: 500; }
.spec-table td { color: var(--text); font-weight: 500; }
.spec-table td.is-empty { color: var(--text-faint); font-weight: 400; }

.editorial-body { max-width: 74ch; font-size: 1.03rem; }
.editorial-body p { margin-bottom: 1.1rem; color: #dfe3d3; }
.pros-cons { display: grid; gap: 1rem; margin-top: 1rem; }
@media (min-width: 640px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pc-col { border-radius: var(--radius-m); padding: 1.3rem; border: 1px solid var(--border); }
.pc-col.pc-pros { background: rgba(121,224,166,.06); border-color: rgba(121,224,166,.25); }
.pc-col.pc-cons { background: rgba(255,138,128,.06); border-color: rgba(255,138,128,.25); }
.pc-col h3 { font-size: .95rem; display: flex; align-items: center; gap: .5rem; margin-bottom: .8rem; }
.pc-col h3 svg { width: 1.15em; height: 1.15em; flex: none; }
.pc-pros h3 { color: var(--success); }
.pc-cons h3 { color: var(--danger); }
.pc-col li { display: flex; gap: .55rem; font-size: .92rem; padding-block: .3rem; color: #dfe3d3; }
.pc-col li svg { width: 1em; height: 1em; flex: none; margin-top: .2em; }
.pc-pros li svg { color: var(--success); }
.pc-cons li svg { color: var(--danger); }

.ideal-para { margin-top: 1.4rem; padding: 1.1rem 1.3rem; border-left: 3px solid var(--accent); background: rgba(200,255,94,.06); border-radius: 0 var(--radius-s) var(--radius-s) 0; font-size: .98rem; }
.ideal-para b { color: var(--accent); }

.reviews-list { display: grid; gap: 1rem; margin-top: 1.2rem; }
.review-card { border: 1px solid var(--border); border-radius: var(--radius-m); padding: 1.2rem; background: var(--card); }
.review-head { display: flex; justify-content: space-between; align-items: center; gap: .6rem; margin-bottom: .5rem; flex-wrap: wrap; }
.review-author { font-weight: 600; font-size: .9rem; display: flex; align-items: center; gap: .5rem; }
.review-verified { display: inline-flex; align-items: center; gap: .3rem; color: var(--success); font-size: .72rem; font-weight: 600; }
.review-verified svg { width: 1.15em; height: 1.15em; flex: none; }
.review-title { font-weight: 600; margin-bottom: .3rem; font-size: .95rem; }
.review-text { color: var(--text-dim); font-size: .9rem; }
.review-empty { color: var(--text-dim); font-size: .92rem; border: 1px dashed var(--border); border-radius: var(--radius-m); padding: 1.2rem; }

.disclosure-box {
  margin-top: 1.6rem; padding: 1.1rem 1.3rem; border-radius: var(--radius-m);
  background: rgba(255,255,255,.03); border: 1px solid var(--border); font-size: .82rem; color: var(--text-faint);
  display: flex; gap: .7rem; align-items: flex-start;
}
.disclosure-box svg { flex: none; width: 1.3em; height: 1.3em; color: var(--text-faint); margin-top: .1em; }
.disclosure-box a { color: var(--text-dim); text-decoration: underline; }

.similar-strip { display: flex; gap: 1.1rem; overflow-x: auto; padding-bottom: .4rem; }
.similar-strip .product-card { flex: 0 0 260px; }

.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--bg-elevated); border-top: 1px solid var(--border);
  padding: .8rem var(--gutter); display: none; align-items: center; justify-content: space-between; gap: 1rem;
  backdrop-filter: blur(10px);
}
.sticky-buy.is-visible { display: flex; }
.sticky-buy .price-now { font-size: 1.1rem; }

/* =============================================================
   10. Comparador
   ============================================================= */
.comparator-picker { border: 1px solid var(--border); border-radius: var(--radius-m); background: var(--card); padding: 1.3rem; }
.picker-search { position: relative; margin-bottom: 1rem; }
.picker-search input {
  width: 100%; padding: .8rem 1rem .8rem 2.6rem; border-radius: 999px; border: 1px solid var(--border);
  background: var(--bg-elevated); color: var(--text); font-size: .95rem;
}
.picker-search input:focus { outline: 2px solid var(--accent); }
.picker-search svg { position: absolute; left: .95rem; top: 50%; transform: translateY(-50%); width: 1.1em; height: 1.1em; color: var(--text-faint); }
.picker-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.picker-chip {
  display: flex; align-items: center; gap: .6rem; padding: .5rem .5rem .5rem .5rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg-elevated); font-size: .85rem; transition: all .2s var(--ease-out);
}
.picker-chip img { width: 30px; height: 30px; object-fit: cover; border-radius: 999px; background: var(--card); }
.picker-chip button { padding: .35rem .9rem .35rem .2rem; font-weight: 600; }
.picker-chip.is-selected { border-color: var(--accent); background: rgba(200,255,94,.1); }
.picker-empty { color: var(--text-faint); font-size: .88rem; padding: .6rem 0; }

.compare-slots { display: grid; gap: .9rem; margin-top: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); }
.compare-slot {
  border: 1.5px dashed var(--border); border-radius: var(--radius-m); padding: 1rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .5rem; min-height: 150px; justify-content: center;
}
.compare-slot.is-filled { border-style: solid; background: var(--bg-elevated); position: relative; }
.compare-slot img { width: 56px; height: 56px; object-fit: contain; }
.compare-slot .slot-name { font-size: .82rem; font-weight: 600; }
.compare-slot .slot-remove { position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; border-radius: 50%; background: var(--danger); color: #2a0d0a; display: grid; place-items: center; font-size: .9rem; font-weight: 800; box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.compare-slot .slot-placeholder { color: var(--text-faint); font-size: .8rem; }

.comparator-empty { text-align: center; padding: 3rem 1rem; color: var(--text-dim); }

.compare-table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-m); background: var(--card); }
table.compare-table { min-width: 640px; }
.compare-table th, .compare-table td { padding: .8rem 1.1rem; border-top: 1px solid var(--border-soft); font-size: .9rem; text-align: left; vertical-align: top; }
.compare-table thead th { position: sticky; top: 0; background: var(--card); z-index: 2; border-top: 0; vertical-align: bottom; }
.compare-table tbody th { position: sticky; left: 0; background: var(--card); z-index: 1; color: var(--text-dim); font-weight: 500; white-space: nowrap; }
.compare-col-head { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; min-width: 150px; }
.compare-col-head img { width: 64px; height: 64px; object-fit: contain; background: var(--bg-elevated); border-radius: var(--radius-s); padding: .4rem; }
.compare-col-head .compare-name { font-weight: 600; font-size: .88rem; }
.compare-best { background: rgba(200,255,94,.09); }
.compare-best-tag { display: inline-flex; align-items: center; gap: .25rem; font-size: .68rem; color: var(--accent); font-weight: 700; margin-top: .2rem; }

.compare-radar-wrap { margin-top: 2rem; }

/* =============================================================
   11. Ofertas / filtros
   ============================================================= */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.6rem; }
.filter-chip {
  padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--border); font-size: .85rem;
  color: var(--text-dim); transition: all .2s var(--ease-out);
}
.filter-chip.is-active, .filter-chip:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,255,94,.08); }
.empty-state { text-align: center; padding: 4rem 1.5rem; border: 1px dashed var(--border); border-radius: var(--radius-m); color: var(--text-dim); }
.empty-state h3 { color: var(--text); margin-bottom: .6rem; font-size: 1.2rem; }

/* =============================================================
   12. Guías / artículos editoriales
   ============================================================= */
.article-header { max-width: 78ch; padding-top: 1.4rem; }
.article-header h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-top: .6rem; }
.article-meta { display: flex; gap: 1rem; color: var(--text-faint); font-size: .84rem; margin-top: 1rem; flex-wrap: wrap; }
.article-body { max-width: 74ch; font-size: 1.05rem; }
.article-body h2 { font-size: 1.5rem; margin-top: 2.4rem; margin-bottom: 1rem; }
.article-body h3 { font-size: 1.15rem; margin-top: 1.6rem; margin-bottom: .7rem; }
.article-body p { margin-bottom: 1.15rem; color: #dfe3d3; }
.article-body ul, .article-body ol { margin: 0 0 1.15rem 1.3rem; list-style: disc; color: #dfe3d3; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: .4rem; }
.article-body a:not(.btn) { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }

.shortlist { display: grid; gap: 1.1rem; margin: 1.6rem 0 2rem; }
.shortlist-item { display: grid; grid-template-columns: 88px 1fr; gap: 1rem; border: 1px solid var(--border); border-radius: var(--radius-m); padding: 1.1rem; background: var(--card); align-items: center; }
@media (min-width: 560px) { .shortlist-item { grid-template-columns: 110px 1fr auto; } }
.shortlist-item img { width: 100%; aspect-ratio: 1; object-fit: contain; background: var(--bg-elevated); border-radius: var(--radius-s); padding: .4rem; }
.shortlist-item h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.shortlist-item p { font-size: .86rem; color: var(--text-dim); }
.shortlist-rank { font-family: var(--display); color: var(--accent); font-size: 1.3rem; margin-right: .5rem; }

/* Native <details>/<summary>: works without JS */
.faq-list { display: grid; gap: .7rem; margin-top: 1.4rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-m); background: var(--card); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.3rem; text-align: left; font-weight: 600; font-size: .98rem; gap: 1rem; }
.faq-q .faq-icon { transition: transform .25s var(--ease-out); flex: none; width: 1.1em; height: 1.1em; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 1.3rem 1.2rem; }
.faq-a p { color: var(--text-dim); font-size: .92rem; }

/* =============================================================
   13. Legal / cómo elegimos article
   ============================================================= */
.legal-body { max-width: 72ch; font-size: 1rem; }
.legal-body h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: .7rem; }
.legal-body p, .legal-body li { color: var(--text-dim); margin-bottom: .9rem; }
.legal-body ul { margin-left: 1.3rem; list-style: disc; }
.legal-body strong { color: var(--text); }

/* =============================================================
   14. Footer
   ============================================================= */
.site-footer { border-top: 1px solid var(--border-soft); padding-block: 3rem 2rem; margin-top: clamp(3rem, 8vw, 6rem); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-soft); }
.footer-brand p { color: var(--text-faint); font-size: .88rem; max-width: 34ch; margin-top: .7rem; }
.footer-links { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-faint); margin-bottom: .8rem; }
.footer-col a { display: block; font-size: .9rem; color: var(--text-dim); padding-block: .3rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .78rem; color: var(--text-faint); }
.footer-disclosure { max-width: 70ch; font-size: .78rem; color: var(--text-faint); line-height: 1.7; }

/* =============================================================
   15. Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-visual-glow { display: none; }
}

/* =============================================================
   16. Responsive — nav collapse
   ============================================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
