/* =============================================================
   SmartwatchLab — styles.css
   1. Tokens  2. Reset & base  3. Utilities  4. Typography
   5. Components  6. Sections  7. Effects  8. Responsive  9. Reduced-motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Surfaces — blanco y plateado */
  --ink:         #ffffff;
  --ink-2:       #f3f6f4;
  --panel:       #eef2f0;
  --panel-2:     #f8faf9;
  --panel-3:     #e3e9e6;
  --line:        rgba(13,40,28,0.11);
  --line-soft:   rgba(13,40,28,0.06);

  /* Texto — matices de verde */
  --text:        #0f2a1c;
  --text-soft:   #3d5c4b;
  --text-dim:    #5f7469;

  /* Verde principal (antes "gold" — acento y CTAs) */
  --gold:        #128046;
  --gold-2:      #0c6b3c;
  --gold-ink:    #ffffff;

  /* Verde secundario (antes "teal" — enlaces, chips, checks) */
  --teal:        #159152;
  --teal-2:      #0e7a4c;
  --violet:      #166534;

  /* Estado */
  --danger:      #d64545;
  --success:     #189a56;

  /* Degradados */
  --grad-gold: linear-gradient(135deg, #128046 0%, #0f7a44 55%, #0c6b3c 100%);
  --grad-tech: linear-gradient(135deg, #159152 0%, #0c6b3c 100%);
  --grad-bg-glow: radial-gradient(60% 50% at 50% 0%, rgba(24,154,86,0.08), transparent 70%);

  /* Tipografia — sans-serif con caracter, nada generica */
  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --mono: "Space Mono", "JetBrains Mono", ui-monospace, monospace;

  /* Easings */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container: 1240px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --nav-h: 76px;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.6) inset, 0 10px 30px rgba(15,42,28,0.08);
  --shadow-2: 0 24px 60px rgba(15,42,28,0.14);
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  background: var(--ink);
  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;
}
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; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; font-family: var(--display); font-weight: 600; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--gold-ink); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.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; }

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

.section { position: relative; padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-2);
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--gold); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-top: .6rem; }
.section-head p { color: var(--text-soft); margin-top: .85rem; font-size: 1.02rem; }
.section-head.center { text-align: center; margin-inline: auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.grid-glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 40% at 12% 0%, rgba(34,181,115,0.07), transparent 70%),
    radial-gradient(45% 45% at 88% 10%, rgba(24,154,86,0.08), transparent 70%);
}

/* =============================================================
   4. Typography
   ============================================================= */
.h-display { font-size: clamp(2.6rem, 6vw, 5rem); line-height: .98; }
.text-gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-gradient-tech {
  background: var(--grad-tech);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--text-soft); max-width: 60ch; }
.mono-num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: .96rem; letter-spacing: -0.005em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn-primary {
  background: var(--grad-gold); color: var(--gold-ink);
  box-shadow: 0 10px 26px -8px rgba(24,154,86,.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(24,154,86,.55); }
.btn-secondary {
  background: rgba(15,42,28,0.04); color: var(--text);
  border: 1px solid var(--line);
}
.btn-secondary:hover { background: rgba(15,42,28,0.08); border-color: rgba(15,42,28,0.2); transform: translateY(-2px); }
.btn-ghost { color: var(--teal-2); }
.btn-ghost:hover { color: var(--gold-2); }
.btn-block { width: 100%; }
.btn-sm { padding: .6rem 1.1rem; font-size: .85rem; }

/* --- Nav --- */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-gold);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px -4px rgba(24,154,86,.45);
  color: #fff;
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-name span { color: var(--gold-2); }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-size: .93rem; color: var(--text-soft); transition: color .25s var(--ease-out); position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a.is-active { color: var(--text); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px;
  background: var(--grad-gold);
}
.nav-cta-wrap { display: flex; align-items: center; gap: .7rem; }
.nav-cta-wrap .nav-cta { display: none; }
.nav-links a.nav-cta, .nav-links a.nav-cta:hover {
  color: var(--gold-ink); background: var(--grad-gold);
  padding: .55rem 1.1rem; border-radius: 999px; font-weight: 700;
}

.nav-toggle {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 10px; border: 1px solid var(--line); color: var(--text);
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  /* Solido, sin backdrop-filter: en algunos motores (incl. Chromium headless)
     backdrop-filter sobre position:fixed compone mal y deja ver el fondo. */
  background: var(--ink);
  padding: 2rem 1.25rem;
  display: flex; flex-direction: column; gap: 1.4rem;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { font-family: var(--display); font-size: 1.4rem; font-weight: 600; color: var(--text); }
.mobile-menu .btn { margin-top: .5rem; }

/* --- Cards --- */
.card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.product-card {
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .45s var(--ease-out), border-color .3s var(--ease-out), box-shadow .45s var(--ease-out);
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(24,154,86,.35); box-shadow: var(--shadow-2); }
.product-card-media { position: relative; aspect-ratio: 4/3; background: var(--panel-3); overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 1.4rem; transition: transform .6s var(--ease-out); }
.product-card:hover .product-card-media img { transform: scale(1.06); }
.product-card-badges { position: absolute; top: .8rem; left: .8rem; right: .8rem; display: flex; justify-content: space-between; gap: .4rem; z-index: 2; }
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase;
  padding: .32rem .6rem; border-radius: 999px;
  background: rgba(15,30,24,0.72); color: #eef7f1; border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
}
.badge svg { width: 12px; height: 12px; flex: none; }
.badge-gold { background: var(--grad-gold); color: var(--gold-ink); border: none; font-weight: 700; }
.badge-teal { color: #d7fdea; border-color: rgba(255,255,255,.3); }
.badge-danger { color: #ffe1e1; border-color: rgba(255,255,255,.25); background: rgba(150,30,30,.78); }

.product-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.product-card-brand { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
.product-card-name { font-size: 1.08rem; line-height: 1.3; }
.product-card-name a { transition: color .25s var(--ease-out); }
.product-card-name a:hover { color: var(--gold-2); }

.rating { display: flex; align-items: center; gap: .45rem; font-size: .85rem; color: var(--text-soft); }
.rating-stars { display: inline-flex; gap: 2px; }
.rating-stars svg { width: 14px; height: 14px; flex: none; color: var(--gold); }
.rating-stars svg.is-empty { color: rgba(13,40,28,.16); }

.product-card-price { display: flex; align-items: baseline; gap: .55rem; margin-top: auto; padding-top: .5rem; }
.price-now { font-family: var(--mono); font-size: 1.25rem; font-weight: 700; color: var(--text); }
.price-before { font-family: var(--mono); font-size: .88rem; color: var(--text-dim); text-decoration: line-through; }
.product-card-actions { display: flex; gap: .55rem; margin-top: .7rem; }
.product-card-actions .btn { flex: 1; }

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.4rem;
}

/* --- Score chips / spec chips --- */
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .75rem; border-radius: 999px;
  background: rgba(15,42,28,0.04); border: 1px solid var(--line);
  font-size: .8rem; color: var(--text-soft);
}
.chip svg { width: 14px; height: 14px; flex: none; color: var(--teal); }
.chip.is-yes { color: var(--teal-2); border-color: rgba(34,181,115,.35); }
.chip.is-no { color: var(--text-dim); opacity: .7; }

/* --- Spec table --- */
.spec-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.spec-table { min-width: 100%; font-size: .92rem; }
.spec-table caption { text-align: left; font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); padding: 1rem 1.2rem .6rem; background: var(--panel); }
.spec-table tr { border-top: 1px solid var(--line-soft); }
.spec-table th, .spec-table td { padding: .8rem 1.2rem; text-align: left; }
.spec-table th { color: var(--text-soft); font-weight: 500; width: 40%; }
.spec-table td { font-family: var(--mono); color: var(--text); }
.spec-table tbody tr:nth-child(odd) { background: rgba(15,42,28,0.02); }
.spec-table .is-null { color: var(--text-dim); }
.spec-table .is-best { color: var(--teal-2); font-weight: 700; }

/* --- Radar chart --- */
.radar-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.radar-svg { width: 100%; max-width: 420px; height: auto; }
.radar-legend { display: flex; flex-wrap: wrap; gap: .6rem 1.1rem; justify-content: center; }
.radar-legend-item { display: flex; align-items: center; gap: .5rem; font-size: .84rem; color: var(--text-soft); }
.radar-legend-dot { width: 10px; height: 10px; border-radius: 3px; flex: none; }

/* --- Pros / cons --- */
.pros-cons { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.pc-col {
  border-radius: var(--radius); padding: 1.3rem 1.4rem; border: 1px solid var(--line);
}
.pc-col.pros { background: linear-gradient(160deg, rgba(34,181,115,.08), transparent 60%); }
.pc-col.cons { background: linear-gradient(160deg, rgba(214,69,69,.06), transparent 60%); }
.pc-col h3 { display: flex; align-items: center; gap: .55rem; font-size: 1rem; margin-bottom: .8rem; }
.pc-col h3 svg { width: 1.15em; height: 1.15em; flex: none; }
.pc-col.pros h3 { color: var(--teal-2); }
.pc-col.cons h3 { color: #b23a3a; }
.pc-col li { display: flex; gap: .6rem; padding-block: .4rem; font-size: .93rem; color: var(--text-soft); align-items: flex-start; }
.pc-col li svg { width: 1.1em; height: 1.1em; flex: none; margin-top: .15em; }
.pc-col.pros li svg { color: var(--teal); }
.pc-col.cons li svg { color: var(--danger); }

/* --- Reviews --- */
.review-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem;
  background: var(--panel-2);
}
.review-head { display: flex; align-items: center; justify-content: space-between; gap: .7rem; flex-wrap: wrap; margin-bottom: .5rem; }
.review-author { font-weight: 600; font-size: .92rem; }
.review-verified { display: inline-flex; align-items: center; gap: .3rem; font-size: .72rem; color: var(--teal-2); font-family: var(--mono); }
.review-verified svg { width: 1.1em; height: 1.1em; flex: none; }
.review-title { font-size: .95rem; font-weight: 600; margin-bottom: .35rem; }
.review-text { font-size: .89rem; color: var(--text-soft); line-height: 1.65; }
.review-meta { font-size: .76rem; color: var(--text-dim); margin-top: .6rem; font-family: var(--mono); }
.reviews-source-note {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: var(--text-dim); margin-top: 1rem;
}
.reviews-source-note svg { width: 16px; height: 16px; flex: none; color: var(--gold); }

/* --- Gallery --- */
.gallery { display: grid; gap: .7rem; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; background: var(--panel-2); aspect-ratio: 1/1; border: 1px solid var(--line); }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 2rem; }
.gallery-thumbs { display: flex; gap: .6rem; overflow-x: auto; padding-bottom: .3rem; }
.gallery-thumbs button { flex: none; width: 68px; height: 68px; border-radius: 10px; overflow: hidden; border: 2px solid var(--line); background: var(--panel-2); transition: border-color .25s var(--ease-out); }
.gallery-thumbs button.is-active { border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; padding: .3rem; }

/* --- Affiliate disclosure --- */
.disclosure {
  font-size: .82rem; color: var(--text-dim); line-height: 1.65;
  border-top: 1px solid var(--line-soft); padding-top: 1.1rem; margin-top: 1.5rem;
}
.disclosure a { color: var(--teal-2); text-decoration: underline; text-underline-offset: 2px; }
.disclosure-banner {
  display: flex; align-items: flex-start; gap: .8rem;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.2rem; font-size: .84rem; color: var(--text-soft);
}
.disclosure-banner svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: 2px; }

/* --- Footer --- */
.footer { border-top: 1px solid var(--line-soft); padding-block: 3.5rem 2.2rem; background: var(--ink-2); }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
.footer-col h4 { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .9rem; font-family: var(--mono); font-weight: 500; }
.footer-col a { display: block; font-size: .92rem; color: var(--text-soft); padding-block: .35rem; transition: color .2s var(--ease-out); }
.footer-col a:hover { color: var(--gold-2); }
.footer-brand p { color: var(--text-dim); font-size: .87rem; margin-top: .8rem; max-width: 32ch; }
.footer-bottom { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); font-size: .78rem; color: var(--text-dim); }
.footer-bottom .disclosure { border: none; padding: 0; margin: 0; }

/* --- Filter bar --- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.8rem; }
.filter-chip {
  padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: .84rem; color: var(--text-soft); transition: all .25s var(--ease-out);
}
.filter-chip.is-active, .filter-chip:hover { background: var(--grad-gold); color: var(--gold-ink); border-color: transparent; font-weight: 600; }

/* --- Comparator --- */
.compare-picker { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.compare-slot {
  position: relative; width: 96px; height: 96px; border-radius: var(--radius);
  border: 1.5px dashed var(--line); display: grid; place-items: center;
  background: var(--panel-2); overflow: visible;
}
.compare-slot.is-filled { border-style: solid; border-color: rgba(24,154,86,.4); }
.compare-slot img { width: 100%; height: 100%; object-fit: contain; padding: .6rem; }
.compare-slot .slot-empty { font-size: 1.6rem; color: var(--text-dim); }
.compare-slot .remove-badge {
  position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 999px;
  background: var(--danger); color: #fff; display: grid; place-items: center; font-size: .8rem;
  border: 2px solid var(--ink);
}
.compare-search { position: relative; flex: 1; min-width: 220px; }
.compare-search input {
  width: 100%; padding: .85rem 1.1rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--panel-2); color: var(--text);
}
.compare-search-results {
  position: absolute; top: calc(100% + .5rem); left: 0; right: 0; z-index: 20;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-2); overflow: hidden; display: none; max-height: 280px; overflow-y: auto;
}
.compare-search-results.is-open { display: block; }
.compare-search-results button { width: 100%; display: flex; align-items: center; gap: .7rem; padding: .7rem 1rem; text-align: left; }
.compare-search-results button:hover { background: rgba(15,42,28,.05); }
.compare-search-results img { width: 34px; height: 34px; object-fit: contain; flex: none; }

.compare-table-wrap { overflow-x: auto; }
.compare-table { min-width: 100%; border-collapse: separate; border-spacing: 0; }
.compare-table th, .compare-table td { padding: .85rem 1.1rem; border-bottom: 1px solid var(--line-soft); white-space: nowrap; }
.compare-table thead th { position: sticky; top: var(--nav-h); background: var(--ink); z-index: 5; }
.compare-table .row-label { font-size: .82rem; color: var(--text-dim); font-family: var(--mono); text-transform: uppercase; letter-spacing: .04em; white-space: normal; }
.compare-table .col-product { min-width: 200px; }
.compare-table .col-product img { width: 90px; height: 90px; object-fit: contain; margin-bottom: .6rem; background: var(--panel-2); border-radius: var(--radius-sm); padding: .5rem; }
.compare-table td.is-best { color: var(--teal-2); font-weight: 700; position: relative; }
.compare-table td.is-best::before { content: "✓"; margin-right: .35rem; color: var(--teal); }
.compare-empty { text-align: center; padding: 3rem 1rem; color: var(--text-dim); }

/* --- Guide / blog content --- */
.prose { max-width: 72ch; color: var(--text-soft); font-size: 1.02rem; line-height: 1.75; }
.prose h2 { color: var(--text); font-size: 1.5rem; margin-top: 2.2rem; margin-bottom: .8rem; }
.prose h3 { color: var(--text); font-size: 1.2rem; margin-top: 1.6rem; margin-bottom: .6rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.1rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--teal-2); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }

.shortlist-item {
  display: grid; grid-template-columns: 88px 1fr; gap: 1rem;
  padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1rem;
  background: var(--panel-2);
}
.shortlist-item img { width: 88px; height: 88px; object-fit: contain; background: var(--panel-3); border-radius: var(--radius-sm); padding: .4rem; }
.shortlist-rank { font-family: var(--mono); color: var(--gold-2); font-size: .78rem; }
.shortlist-why { font-size: .88rem; color: var(--text-soft); margin-top: .4rem; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary { padding: 1.1rem 0; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.2rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding-bottom: 1.1rem; color: var(--text-soft); font-size: .93rem; }

/* --- Deals / ofertas --- */
.deal-highlight {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center;
  border-radius: var(--radius-lg); padding: 1.8rem; border: 1px solid rgba(24,154,86,.25);
  background: linear-gradient(135deg, rgba(24,154,86,.07), rgba(34,181,115,.05));
}
.deal-highlight img { max-width: 220px; margin-inline: auto; }
.discount-badge {
  display: inline-flex; align-items: center; font-family: var(--mono); font-weight: 700;
  padding: .4rem .8rem; border-radius: 999px; background: var(--danger); color: #fff; font-size: .82rem;
}

/* --- Trust / how-we-choose --- */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.trust-card { padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel-2); }
.trust-card .num { font-family: var(--mono); font-size: .78rem; color: var(--gold-2); letter-spacing: .1em; }
.trust-card h3 { font-size: 1.05rem; margin-top: .6rem; margin-bottom: .5rem; }
.trust-card p { font-size: .89rem; color: var(--text-soft); }

/* --- Hero --- */
.hero { padding-block: clamp(3rem, 9vw, 6rem) clamp(2.5rem, 6vw, 4rem); position: relative; overflow: clip; }
.hero-inner { display: grid; gap: 2.5rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .9rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: .78rem; color: var(--text-soft); margin-bottom: 1.4rem; background: var(--panel-2);
}
.hero-badge svg { width: 1.15em; height: 1.15em; flex: none; color: var(--gold); }
.hero h1 { margin-bottom: 1.2rem; }
.hero .lede { margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.8rem; margin-top: 2.4rem; }
.hero-stat .num { font-family: var(--display); font-size: 1.7rem; font-weight: 700; }
.hero-stat .label { font-size: .78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; }

/* --- Hero spotlight: el reloj mejor valorado, junto al titulo --- */
.hero-spotlight {
  position: relative; max-width: 420px; margin-inline: auto; width: 100%;
}
.hero-spotlight-glow {
  position: absolute; inset: -14% -10%; z-index: -1;
  background: radial-gradient(55% 55% at 50% 40%, rgba(24,154,86,.16), transparent 72%);
  filter: blur(50px);
}
.hero-spotlight-card {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2); overflow: hidden;
}
.hero-spotlight-badge {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1.1rem; background: var(--grad-gold); color: #fff;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700;
}
.hero-spotlight-badge svg { width: 1.1em; height: 1.1em; flex: none; }
.hero-spotlight-media { aspect-ratio: 1/1; background: var(--panel-3); display: grid; place-items: center; }
.hero-spotlight-media img { width: 80%; object-fit: contain; }
.hero-spotlight-body { padding: 1.3rem 1.4rem 1.5rem; }
.hero-spotlight-brand { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
.hero-spotlight-name { font-size: 1.2rem; margin-top: .3rem; }
.hero-spotlight-name a:hover { color: var(--gold-2); }
.hero-spotlight-body .rating { margin-top: .5rem; }
.hero-spotlight-price { display: flex; align-items: baseline; gap: .5rem; margin-top: .8rem; }
.hero-spotlight-actions { display: flex; gap: .6rem; margin-top: 1.1rem; }
.hero-spotlight-actions .btn { flex: 1; }

/* =============================================================
   6. Sections
   ============================================================= */
.section-alt { background: var(--panel); }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }

.category-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.category-card {
  position: relative; border-radius: var(--radius); padding: 1.4rem; min-height: 140px;
  border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--panel-2);
  transition: transform .35s var(--ease-out), border-color .3s var(--ease-out);
}
.category-card:hover { transform: translateY(-4px); border-color: rgba(24,154,86,.35); }
.category-card .glow { position: absolute; inset: -40% -40% auto auto; width: 70%; height: 70%; filter: blur(40px); opacity: .35; }
.category-card h3 { font-size: 1.05rem; }
.category-card p { font-size: .78rem; color: var(--text-dim); margin-top: .3rem; }

.guides-strip { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.guide-card {
  border-radius: var(--radius); border: 1px solid var(--line); padding: 1.5rem;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  display: flex; flex-direction: column; gap: .7rem;
}
.guide-card .eyebrow { font-size: .68rem; }
.guide-card h3 { font-size: 1.15rem; }
.guide-card p { font-size: .87rem; color: var(--text-soft); }
.guide-card .btn-ghost { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: .4rem; }

/* =============================================================
   7. Effects
   ============================================================= */
[data-tilt] { transform-style: preserve-3d; will-change: transform; }
.marquee-track { display: flex; gap: 3rem; animation: marquee 32s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .category-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .deal-highlight { grid-template-columns: 200px 1fr; }
  .shortlist-item { grid-template-columns: 120px 1fr; }
  .shortlist-item img { width: 120px; height: 120px; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-cta-wrap .nav-cta { display: inline-flex; }
  .hero-inner { grid-template-columns: 1.1fr .9fr; }
  .section-head.center { text-align: left; margin-inline: 0; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .guides-strip { grid-template-columns: repeat(3, 1fr); }
  .category-strip { grid-template-columns: repeat(6, 1fr); }
  [data-ficha-grid] { grid-template-columns: minmax(0, 440px) 1fr !important; align-items: start; }
}

@media (min-width: 1280px) {
  .container { padding-inline: 2rem; }
}

/* =============================================================
   9. Reduced-motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
}
