/* =============================================================
   ÍNDICE PADEL — sistema de diseño
   1. Tokens  2. Reset  3. Utilidades  4. Tipografía  5. Componentes
   6. Secciones  7. Efectos  8. Responsive  9. Reduced-motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --ink: #0b1220;
  --ink-soft: #16213a;
  --bg: #f6f7fa;
  --surface: #ffffff;
  --surface-alt: #eef1f6;
  --line: #e3e6ec;
  --line-soft: #edeff3;
  --text: #10182b;
  --muted: #5b6478;
  --muted-2: #8890a0;

  --accent: #c6f135;      /* lima — CTA principal, marca */
  --accent-ink: #142006;  /* texto sobre lima */
  --accent-deep: #7fae00; /* lima oscuro para hover/borde */
  --accent-2: #ff5a3c;    /* coral — ofertas/descuentos */
  --accent-2-soft: #ffe3db;
  --blue: #2d6cf6;        /* enlaces/afiliación info */

  --potencia: #ff5a3c;
  --control: #2d9cdb;
  --polivalente: #7c5cff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 15, 30, .06);
  --shadow: 0 8px 24px rgba(10, 15, 30, .08);
  --shadow-lg: 0 18px 48px rgba(10, 15, 30, .14);

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Space Grotesk", var(--sans);
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

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

  --nav-h: 68px;
  --container: 1240px;
}

/* =============================================================
   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(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  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%; }
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; }
input, select, textarea { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--display); text-wrap: balance; line-height: 1.08; letter-spacing: -0.02em; font-weight: 600; }
::selection { background: var(--accent); color: var(--accent-ink); }

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

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

/* =============================================================
   3. Utilidades
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.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; }
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .gap-4 { gap: 2.5rem; }
.section { padding-block: clamp(2.5rem, 5vw, 5rem); }
.section-tight { padding-block: clamp(1.5rem, 3vw, 2.5rem); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2.5rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2.5rem}
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 959px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 539px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.icon { width: 1.15em; height: 1.15em; flex: none; display: inline-block; vertical-align: -0.2em; }

/* =============================================================
   4. Tipografía
   ============================================================= */
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: 1.25rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 700;
}
.lede { font-size: 1.1rem; color: var(--muted); max-width: 56ch; }
.section-head { max-width: 640px; margin-bottom: 2rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* =============================================================
   5. Componentes
   ============================================================= */

/* --- Botones --- */
.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 .18s var(--ease-out), background .18s var(--ease-out), box-shadow .18s var(--ease-out), color .18s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-soft); box-shadow: var(--shadow); }
.btn-buy { background: var(--accent); color: var(--accent-ink); font-weight: 700; }
.btn-buy:hover { background: var(--accent-deep); color: #fff; box-shadow: var(--shadow); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline-invert { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-outline-invert:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }

/* --- Badges / chips --- */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .65rem; border-radius: 999px; font-size: .72rem; font-weight: 700;
  letter-spacing: .01em; white-space: nowrap;
}
.badge-demo { background: #fff3d6; color: #7a5300; }
.badge-offer { background: var(--accent-2); color: #fff; }
.badge-featured { background: var(--ink); color: #fff; }
.badge-affiliate { background: var(--surface-alt); color: var(--muted); border: 1px solid var(--line); }
.badge-nivel { background: var(--surface-alt); color: var(--text); }

.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem 1rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); font-size: .88rem; font-weight: 600; color: var(--text);
  transition: all .16s var(--ease-out); cursor: pointer;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip .count { color: var(--muted-2); font-weight: 500; }
.chip.is-active .count { color: rgba(255,255,255,.6); }

/* --- Rating --- */
.rating { display: inline-flex; align-items: center; gap: .4rem; font-size: .88rem; }
.rating-stars { display: inline-flex; gap: 1px; color: var(--accent-deep); }
.rating-stars svg { width: 14px; height: 14px; }
.rating-count { color: var(--muted-2); }

/* --- Score bars (potencia/control/etc.) --- */
.score-row { display: grid; grid-template-columns: 108px 1fr 34px; align-items: center; gap: .7rem; font-size: .85rem; }
.score-label { color: var(--muted); }
.score-track { height: 8px; border-radius: 999px; background: var(--surface-alt); overflow: hidden; }
.score-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent-deep), var(--accent)); }
.score-value { font-family: var(--mono); font-weight: 700; text-align: right; }

.indice-badge {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--ink); color: #fff; flex: none;
}
.indice-badge .num { font-family: var(--mono); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.indice-badge .lbl { font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-top: 2px; }

/* --- Visual de producto (placeholder ilustrado, sin foto real) --- */
.product-visual {
  aspect-ratio: 4/5; border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: var(--surface-alt);
}
.product-visual svg { width: 60%; height: 60%; }
.product-visual .pv-initial {
  position: absolute; top: 10px; left: 12px; font-family: var(--display); font-weight: 700;
  font-size: .75rem; letter-spacing: .04em; color: rgba(255,255,255,.85);
}
.product-visual-photo { background: var(--surface); border: 1px solid var(--line-soft); padding: 10px; }
.product-visual-photo img { width: 100%; height: 100%; object-fit: contain; }

/* --- Galeria de la ficha (foto real + miniaturas) --- */
.ficha-gallery-wrap { display: flex; flex-direction: column; gap: .6rem; }
.ficha-gallery-main {
  aspect-ratio: 4/5; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: center; padding: 16px;
}
.ficha-gallery-main img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ficha-thumbs { display: flex; gap: .5rem; }
.ficha-thumb {
  width: 60px; height: 60px; border-radius: 10px; border: 1.5px solid var(--line); background: var(--surface);
  padding: 4px; flex: none; cursor: pointer; transition: border-color .15s var(--ease-out);
}
.ficha-thumb img { width: 100%; height: 100%; object-fit: contain; }
.ficha-thumb.is-active, .ficha-thumb:hover { border-color: var(--ink); }

/* --- Tarjeta de producto --- */
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s var(--ease-out), transform .2s var(--ease-out);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product-card .pc-media { position: relative; padding: 14px 14px 0; }
.product-card .pc-badges { position: absolute; top: 24px; left: 24px; display: flex; justify-content: flex-start; gap: .4rem; z-index: 2; max-width: calc(100% - 76px); }
.product-card .pc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.product-card .pc-brand { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); font-weight: 700; }
.product-card h3 { font-size: 1.02rem; line-height: 1.25; }
.product-card h3 a { color: inherit; }
.product-card h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.pc-mini-specs { display: flex; flex-wrap: wrap; gap: .35rem; font-size: .74rem; color: var(--muted); }
.pc-mini-specs span { background: var(--surface-alt); padding: .2rem .5rem; border-radius: 6px; }
.pc-price-row { display: flex; align-items: baseline; gap: .5rem; margin-top: .15rem; }
.pc-price { font-family: var(--mono); font-size: 1.25rem; font-weight: 700; }
.pc-price-before { font-family: var(--mono); font-size: .85rem; color: var(--muted-2); text-decoration: line-through; }
.pc-discount { color: var(--accent-2); font-weight: 700; font-size: .8rem; }
.pc-actions { display: flex; gap: .5rem; margin-top: .5rem; }
.pc-actions .btn { flex: 1; }
.pc-compare-toggle {
  position: absolute; top: 24px; right: 24px; z-index: 3; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: 1px solid var(--line); display: none;
  align-items: center; justify-content: center; font-size: .8rem; font-weight: 700;
}

/* --- Filtros --- */
.layout-catalog { display: grid; grid-template-columns: 280px 1fr; gap: 20px; align-items: start; }
.layout-ficha { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.layout-comparator { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
@media (max-width: 1023px) {
  .layout-catalog { grid-template-columns: 1fr; }
  .layout-ficha { grid-template-columns: 1fr; }
  .layout-comparator { grid-template-columns: 1fr; }
}
.filters-bar { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.filters-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.filter-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; }
.filter-group { padding-block: 1rem; border-bottom: 1px solid var(--line-soft); }
.filter-group:last-child { border-bottom: 0; }
.filter-group summary, .filter-group .filter-title { font-weight: 700; font-size: .92rem; margin-bottom: .7rem; cursor: pointer; list-style: none; }
.filter-group summary::-webkit-details-marker { display: none; }
.filter-options { display: flex; flex-wrap: wrap; gap: .45rem; }
.filter-options label {
  display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .75rem; border-radius: 999px;
  border: 1px solid var(--line); font-size: .82rem; cursor: pointer; transition: all .15s var(--ease-out);
}
.filter-options input { accent-color: var(--ink); }
.filter-options label:has(input:checked) { background: var(--ink); color: #fff; border-color: var(--ink); }
.range-field { display: flex; flex-direction: column; gap: .4rem; font-size: .84rem; }
.range-field input[type="range"] { accent-color: var(--ink); width: 100%; }
.sort-select {
  padding: .6rem 1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
  font-size: .88rem; font-weight: 600;
}
.results-count { font-size: .9rem; color: var(--muted); }
.filters-drawer-toggle { display: none; }
.empty-state { text-align: center; padding: 3.5rem 1rem; color: var(--muted); }

/* Mobile filter drawer */
.filters-drawer-backdrop {
  position: fixed; inset: 0; background: rgba(10,15,30,.45); z-index: 85; display: none;
}
.filters-drawer-backdrop.is-open { display: block; }
.filters-drawer-panel {
  position: fixed; right: 0; top: 0; bottom: 0; width: min(400px, 92vw); background: var(--surface);
  z-index: 86; transform: translateX(100%); transition: transform .28s var(--ease-out);
  overflow-y: auto; padding: 1.25rem;
}
.filters-drawer-backdrop.is-open .filters-drawer-panel { transform: translateX(0); }
.filters-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }

/* --- Comparador --- */
.compare-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--ink); color: #fff;
  transform: translateY(100%); transition: transform .25s var(--ease-out);
  padding: .9rem 0; box-shadow: 0 -8px 24px rgba(0,0,0,.2);
}
.compare-bar.is-visible { transform: translateY(0); }
body.has-compare-bar { padding-bottom: 78px; }
body.has-compare-bar .site-footer { margin-bottom: 0; }
.compare-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.compare-slots { display: flex; gap: .5rem; align-items: center; }
.compare-slot {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; position: relative;
}
.compare-slot.filled { background: var(--accent); color: var(--accent-ink); }
.compare-slot button { position: absolute; top: -6px; right: -6px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-2); color: #fff; font-size: .6rem; line-height: 1; }

.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.compare-table { min-width: 640px; }
.compare-table th, .compare-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .9rem; vertical-align: top; }
.compare-table thead th { position: sticky; top: 0; background: var(--surface); z-index: 2; }
.compare-table .row-label { font-weight: 700; color: var(--muted); white-space: nowrap; background: var(--surface-alt); }
.compare-table td.best { background: #f2fbe0; font-weight: 700; }
.compare-col-head { min-width: 190px; }
.compare-col-head .cc-name { font-weight: 700; margin-top: .5rem; }
.compare-picker { display: flex; gap: .6rem; flex-wrap: wrap; }
.compare-search-result { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .5rem .8rem; cursor: pointer; }
.compare-search-result:hover { border-color: var(--ink); }

/* --- Radar chart --- */
.radar-wrap { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.radar-wrap svg { width: 100%; max-width: 320px; }
.radar-legend { display: flex; flex-wrap: wrap; gap: .5rem 1rem; justify-content: center; font-size: .78rem; }
.radar-legend .lg-item { display: flex; align-items: center; gap: .35rem; }
.radar-legend .lg-dot { width: 10px; height: 10px; border-radius: 50%; }

/* --- Ficha de producto --- */
.ficha-head { display: grid; grid-template-columns: 380px 1fr; gap: 2.5rem; align-items: start; }
.ficha-gallery { position: sticky; top: calc(var(--nav-h) + 16px); }
.ficha-info h1 { margin-bottom: .3rem; }
.ficha-brand-link { color: var(--blue); font-weight: 600; font-size: .92rem; }
.ficha-price-block { background: var(--surface-alt); border-radius: var(--radius); padding: 1.25rem; margin-block: 1.1rem; }
.ficha-price-row { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.ficha-price { font-family: var(--mono); font-size: 2rem; font-weight: 700; }
.ficha-price-before { font-family: var(--mono); font-size: 1.05rem; color: var(--muted-2); text-decoration: line-through; }
.ficha-price-note { font-size: .78rem; color: var(--muted-2); margin-top: .5rem; }
.ficha-quick-specs { display: flex; flex-wrap: wrap; gap: .5rem; margin-block: 1rem; }
.ficha-quick-specs .qs { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .85rem; font-size: .82rem; }

.spec-table-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.spec-group-title { background: var(--surface-alt); padding: .7rem 1.25rem; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.spec-table { width: 100%; }
.spec-table tr { border-bottom: 1px solid var(--line-soft); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table th { text-align: left; padding: .75rem 1.25rem; font-weight: 500; color: var(--muted); width: 44%; }
.spec-table td { padding: .75rem 1.25rem; font-weight: 600; }

.pc-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.pc-columns .pros h4, .pc-columns .cons h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .75rem; }
.pc-columns .pros h4 { color: var(--accent-deep); }
.pc-columns .cons h4 { color: var(--accent-2); }
.pc-columns li { display: flex; gap: .6rem; padding-block: .4rem; font-size: .93rem; align-items: flex-start; }
.pc-columns li svg { flex: none; margin-top: .2rem; width: 1.1em; height: 1.1em; }

.callout { border-left: 3px solid var(--accent-deep); background: var(--surface-alt); padding: 1rem 1.25rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .95rem; }
.callout.callout-warn { border-color: var(--accent-2); }

.disclosure-banner {
  background: var(--surface-alt); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .85rem 1.1rem; font-size: .82rem; color: var(--muted); display: flex; gap: .6rem; align-items: flex-start;
}
.disclosure-banner svg { flex: none; width: 1.2em; height: 1.2em; color: var(--muted-2); margin-top: .1rem; }
.disclosure-banner.demo { background: #fff3d6; border-color: #f3d98f; color: #6b4c00; }

/* --- Header / Nav --- */
.site-header {
  position: sticky; top: 0; z-index: 80; background: rgba(246,247,250,.88); backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%); border-bottom: 1px solid var(--line); height: var(--nav-h);
}
.site-header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: flex; align-items: center; gap: .5rem; font-family: var(--display); font-weight: 700; font-size: 1.18rem; }
.logo .logo-mark { width: 30px; height: 30px; border-radius: 8px; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.logo .logo-mark svg { width: 18px; height: 18px; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-weight: 600; font-size: .92rem; color: var(--muted); transition: color .15s; }
.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(--accent); color: var(--accent-ink); padding: .6rem 1.1rem; border-radius: 999px;
}
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-burger { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--line); }
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--ink); color: #fff; transform: translateX(100%);
  transition: transform .28s var(--ease-out); padding: 1.25rem; overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-nav a { display: block; font-size: 1.35rem; font-family: var(--display); font-weight: 600; padding-block: .6rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav .mn-cta { margin-top: 1.5rem; }

/* --- Hero --- */
.hero { background: var(--ink); color: #fff; padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 70%;
  background: radial-gradient(45% 50% at 30% 30%, rgba(198,241,53,.28), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; text-align: center; }
.hero h1 { color: #fff; }
.hero .lede { color: rgba(255,255,255,.72); margin-inline: auto; }
.search-shell {
  margin-top: 2.2rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; padding: .4rem .4rem .4rem 1.3rem; display: flex; align-items: center; gap: .6rem;
  backdrop-filter: blur(6px);
}
.search-shell input {
  flex: 1; min-width: 0; background: transparent; border: 0; color: #fff; font-size: 1rem; padding-block: .75rem;
}
@media (max-width: 539px) {
  .search-shell { padding: .4rem .4rem .4rem 1rem; }
  .search-shell .btn { padding: .7rem 1rem; flex: none; }
}
.search-shell input::placeholder { color: rgba(255,255,255,.5); }
.search-shell svg { color: rgba(255,255,255,.55); flex: none; }
.hero-quicklinks { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.4rem; }
.hero-stats { display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem); margin-top: 3rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--mono); font-size: 1.9rem; font-weight: 700; color: var(--accent); }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

/* --- Category cards --- */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 959px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 539px) { .category-grid { grid-template-columns: 1fr 1fr; } }
.category-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; transition: all .18s var(--ease-out);
}
.category-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--ink); }
.category-card .cc-icon { width: 34px; height: 34px; color: var(--accent-deep); }
.category-card h3 { font-size: 1rem; }
.category-card p { font-size: .82rem; color: var(--muted); }

/* --- Cómo elegimos / trust --- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 767px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; }
.trust-card .ti { width: 40px; height: 40px; border-radius: 10px; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--accent-deep); }

/* --- Marca hero --- */
.brand-hero { background: var(--surface-alt); border-radius: var(--radius-lg); padding: 2.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.brand-mark { width: 64px; height: 64px; border-radius: 14px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 1.4rem; }

/* --- Quiz "encuentra tu pala" --- */
.quiz-shell { max-width: 640px; margin-inline: auto; }
.quiz-progress { height: 6px; background: var(--surface-alt); border-radius: 999px; overflow: hidden; margin-bottom: 2rem; }
.quiz-progress-fill { height: 100%; background: var(--accent); border-radius: 999px; transition: width .3s var(--ease-out); }
.quiz-step { display: none; }
.quiz-step.is-active { display: block; }
.quiz-question { font-size: 1.4rem; margin-bottom: 1.4rem; }
.quiz-options { display: grid; gap: .7rem; }
.quiz-options.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 539px) { .quiz-options.cols-2 { grid-template-columns: 1fr; } }
.quiz-option {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.2rem; cursor: pointer;
  transition: all .15s var(--ease-out); background: var(--surface);
}
.quiz-option:hover { border-color: var(--ink); }
.quiz-option.is-selected { border-color: var(--ink); background: var(--ink); color: #fff; }
.quiz-option .qo-title { font-weight: 700; }
.quiz-option .qo-sub { font-size: .82rem; color: var(--muted-2); margin-top: .15rem; }
.quiz-option.is-selected .qo-sub { color: rgba(255,255,255,.6); }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 2rem; }
.quiz-note { font-size: .78rem; color: var(--muted-2); margin-top: 1rem; }

.result-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1.5rem; }
@media (max-width: 767px) { .result-card { flex-direction: column; } }
.result-rank { font-family: var(--mono); font-size: .8rem; color: var(--muted-2); }
.result-why { background: var(--surface-alt); border-radius: var(--radius-sm); padding: .85rem 1rem; font-size: .88rem; margin-top: .7rem; }

/* --- Ofertas --- */
.offer-strip { background: linear-gradient(120deg, var(--accent-2), #ff8a3c); color: #fff; border-radius: var(--radius-lg); padding: 1.6rem 2rem; }

/* --- Rankings --- */
.ranking-row { display: flex; align-items: center; gap: 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.3rem; }
.ranking-pos { font-family: var(--mono); font-size: 1.3rem; font-weight: 700; color: var(--muted-2); width: 34px; }
.ranking-row .rr-media { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex: none; background: var(--surface-alt); }
.ranking-row .rr-info { flex: 1; min-width: 0; }
.ranking-row .rr-meta { display: flex; gap: 1.5rem; align-items: center; }

/* --- Guías --- */
.guide-article { max-width: 720px; margin-inline: auto; }
.guide-article h2 { margin-top: 2rem; margin-bottom: .8rem; }
.guide-article p { margin-bottom: 1rem; color: var(--text); }
.guide-article ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.guide-article li { margin-bottom: .4rem; }
.guide-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--line); padding-block: 1rem; }
.faq-item summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--accent-deep); }
.faq-item p { margin-top: .7rem; color: var(--muted); }

/* --- Breadcrumbs --- */
.breadcrumbs { font-size: .82rem; color: var(--muted-2); display: flex; gap: .4rem; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--text); text-decoration: underline; }

/* --- Footer --- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: 3.5rem 2rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 539px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .9rem; }
.footer-grid a { display: block; padding-block: .3rem; font-size: .9rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; font-size: .78rem; }
.footer-disclosure { font-size: .78rem; line-height: 1.6; max-width: 640px; opacity: .75; }

/* --- Legal / static pages --- */
.legal-body { max-width: 760px; margin-inline: auto; }
.legal-body h2 { margin-top: 2rem; margin-bottom: .7rem; }
.legal-body p, .legal-body li { color: var(--muted); margin-bottom: .8rem; }
.legal-body ul { list-style: disc; padding-left: 1.3rem; }

/* =============================================================
   7. Efectos
   ============================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .ficha-head { grid-template-columns: 1fr; }
  .ficha-gallery { position: static; max-width: 360px; margin-inline: auto; }
  .pc-columns { grid-template-columns: 1fr; gap: .5rem; }
  .filters-bar-desktop { display: none; }
  .filters-drawer-toggle { display: inline-flex; }
}
@media (min-width: 1024px) {
  .filters-drawer-toggle { display: none; }
}
@media (max-width: 767px) {
  .site-header-inner .btn-buy-nav { display: none; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 539px) {
  .container { padding-inline: 16px; }
  h1 { font-size: 2rem; }
  .filters-toolbar .row.gap-2 { flex-wrap: wrap; row-gap: .6rem; }
  .filters-toolbar [data-catalog-search] { width: 100%; }
}

/* =============================================================
   9. Reduced motion (solo lo intrusivo)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}
