/* =============================================================
   1. Tokens — identidad premium: negro/antracita, dorado, plateado
   ============================================================= */
:root {
  /* Superficies de contenido (legibilidad ante todo en tablas y specs) */
  --bg: #f7f6f3;
  --bg-soft: #efeee8;
  --surface: #ffffff;
  --border: #e3e0d6;
  --text: #17150f;
  --text-soft: #59564a;
  --text-faint: #8b8677;

  /* Superficies oscuras — header, hero, footer, tarjetas destacadas */
  --dark: #0e0d0c;
  --dark-soft: #1c1a17;
  --dark-elevated: #242119;
  --dark-border: rgba(255, 255, 255, .1);
  --dark-text: #f3f0e8;
  --dark-text-soft: rgba(243, 240, 232, .68);
  --dark-text-faint: rgba(243, 240, 232, .44);

  /* Acento dorado — controlado, nunca brillante */
  --gold: #c6a24d;
  --gold-bright: #ddc077;
  --gold-deep: #96762f;
  --gold-soft: rgba(198, 162, 77, .14);
  --gold-contrast: #1a1508;

  /* Acento plateado — detalle técnico/precisión */
  --silver: #aab0b8;
  --silver-soft: #eceef0;
  --silver-line: #cdd2d8;

  --success: #4c7a5a;
  --success-soft: #e9f1ec;
  --warn: #a8752e;
  --warn-soft: #f6ecdc;
  --danger: #a34638;
  --danger-soft: #f7e9e6;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(14, 13, 12, .08), 0 1px 2px rgba(14, 13, 12, .05);
  --shadow-md: 0 10px 28px rgba(14, 13, 12, .12);
  --shadow-lg: 0 24px 56px rgba(14, 13, 12, .22);
  --shadow-gold: 0 8px 24px rgba(198, 162, 77, .22);

  --container: 1160px;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   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; }
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.12; letter-spacing: -0.01em; font-weight: 600; }
h1, h2, h3 { font-family: var(--serif); }
ul, ol { padding-left: 1.2em; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--gold); color: var(--gold-contrast); }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 4px; }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.eyebrow::before, .eyebrow::after { content: ""; width: 14px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.on-dark { color: var(--gold-bright); }
.lead { font-size: 1.08rem; color: var(--text-soft); }
.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: .97rem; margin-bottom: 1em; }
.prose h2 { margin-top: 1.5em; margin-bottom: .5em; font-size: 1.5rem; }
.breadcrumbs { font-size: .8rem; color: var(--text-faint); margin-bottom: 16px; letter-spacing: .01em; }
.breadcrumbs a { color: var(--gold-deep); }
.nota { font-size: .82rem; color: var(--text-faint); margin-top: 8px; }
.mono { font-family: var(--mono); font-size: .92em; letter-spacing: -.01em; }

/* Separador con índices tipo esfera de reloj — muy sutil */
.tick-divider { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 10px 0 0; opacity: .6; }
.tick-divider span { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.tick-divider span:nth-child(3n) { background: var(--silver); }

/* =============================================================
   4. Botones
   ============================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: .92rem; letter-spacing: .01em; transition: transform .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s var(--ease-out); }
.btn-primary { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: var(--gold-contrast); box-shadow: var(--shadow-gold); border: 1px solid var(--gold); }
.btn-primary:hover { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(198,162,77,.3); }
.btn-secondary { background: var(--dark); color: var(--dark-text); border: 1px solid var(--gold-deep); }
.btn-secondary:hover { border-color: var(--gold); background: var(--dark-soft); color: var(--gold-bright); }
.btn-ghost { color: var(--gold-deep); font-weight: 600; }
.btn-ghost:hover { text-decoration: underline; }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: .84rem; border-radius: var(--radius-sm); }

.btn-comprar { display: inline-flex; align-items: center; justify-content: center; padding: 11px 20px; border-radius: var(--radius-sm); font-weight: 700; font-size: .87rem; background: var(--dark); color: var(--gold-bright); border: 1px solid var(--gold-deep); transition: all .2s var(--ease-out); }
.btn-comprar:hover { background: var(--gold); color: var(--gold-contrast); border-color: var(--gold); transform: translateY(-1px); }
.btn-comprar-lg { padding: 16px 28px; font-size: .98rem; width: 100%; }
.btn-comprar.is-pending { background: var(--bg-soft); color: var(--text-faint); border: 1px dashed var(--border); cursor: default; }
.btn-comprar.is-pending:hover { transform: none; }

.badge { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-pill); }
.badge-limit { background: var(--bg-soft); color: var(--text-faint); border: 1px solid var(--border); }
.badge-gold { background: var(--gold-soft); color: var(--gold-deep); border: 1px solid rgba(198,162,77,.35); }

/* =============================================================
   5. Header / nav — negro, dorado en el CTA
   ============================================================= */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(14,13,12,.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--dark-border); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; font-weight: 700; font-family: var(--serif); color: var(--dark-text); }
.logo .mark { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(160deg, var(--gold-bright), var(--gold-deep)); color: var(--gold-contrast); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-family: var(--serif); font-weight: 700; box-shadow: 0 0 0 1px rgba(198,162,77,.4); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-size: .88rem; font-weight: 500; color: var(--dark-text-soft); letter-spacing: .01em; position: relative; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .25s var(--ease-out); transform-origin: left; }
.nav-links a:not(.nav-cta):hover { color: var(--dark-text); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a.nav-cta, .nav-links a.nav-cta:hover {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: var(--gold-contrast); padding: 9px 16px; border-radius: var(--radius-sm); font-weight: 700;
}
.nav-links a.nav-cta:hover { box-shadow: var(--shadow-gold); }
.nav-toggle { display: none; font-size: 1.4rem; color: var(--dark-text); }
@media (max-width: 900px) {
  .nav-links { position: fixed; top: 68px; left: 0; right: 0; height: calc(100vh - 68px); background: var(--dark); flex-direction: column; align-items: flex-start; padding: 26px 22px; gap: 18px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s var(--ease-out), transform .2s var(--ease-out); overflow-y: auto; }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-toggle { display: block; }
  .nav-links a.nav-cta { width: 100%; text-align: center; }
}

/* =============================================================
   6. Footer
   ============================================================= */
.site-footer { background: var(--dark); color: var(--dark-text-soft); padding: 52px 0 24px; margin-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; margin-bottom: 26px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-bright); margin-bottom: 14px; font-weight: 600; }
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer-grid a { font-size: .87rem; color: var(--dark-text-soft); }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-grid .logo { color: var(--dark-text); }
.footer-disclosure { font-size: .76rem; color: var(--dark-text-faint); max-width: 780px; margin-bottom: 20px; border-top: 1px solid var(--dark-border); padding-top: 20px; }
.footer-bottom { border-top: 1px solid var(--dark-border); padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: var(--dark-text-faint); }
.footer-bottom a:hover { color: var(--gold-bright); }
.aviso-afiliados { font-size: .8rem; color: var(--text-faint); background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 24px; }

/* =============================================================
   7. Hero + finder banner (fondo oscuro, editorial)
   ============================================================= */
.hero { padding: 64px 0 44px; text-align: center; background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(198,162,77,.16), transparent), var(--dark); color: var(--dark-text); position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto 0 -60% 0; height: 320px; background: radial-gradient(circle, rgba(198,162,77,.08), transparent 70%); pointer-events: none; }
.hero .container { position: relative; }
.hero h1 { max-width: 820px; margin: 14px auto .5em; font-size: clamp(2.1rem, 4.4vw, 3.2rem); color: var(--dark-text); }
.hero .lead { max-width: 600px; margin: 0 auto 30px; color: var(--dark-text-soft); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-secondary { background: transparent; }

.finder-banner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: linear-gradient(135deg, var(--dark-elevated), var(--dark)); color: var(--dark-text); border: 1px solid var(--gold-deep); border-radius: var(--radius-lg); padding: 40px 44px; position: relative; overflow: hidden; }
.finder-banner::before { content: ""; position: absolute; top: -40%; right: -10%; width: 260px; height: 260px; border: 1px solid rgba(198,162,77,.25); border-radius: 50%; }
.finder-banner::after { content: ""; position: absolute; top: -30%; right: 0%; width: 190px; height: 190px; border: 1px solid rgba(198,162,77,.18); border-radius: 50%; }
.finder-banner-text { position: relative; z-index: 1; }
.finder-banner-text h2 { color: var(--dark-text); margin-bottom: 8px; }
.finder-banner-text p { color: var(--dark-text-soft); max-width: 480px; }
.finder-banner .btn-primary { flex-shrink: 0; position: relative; z-index: 1; }
@media (max-width: 720px) { .finder-banner { padding: 30px 24px; } }

/* =============================================================
   8. Sections + grids
   ============================================================= */
.section { padding: 60px 0; }
.section-tight { padding: 36px 0; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--dark); color: var(--dark-text); }
.section-dark h2 { color: var(--dark-text); }
.section-dark .lead, .section-dark p { color: var(--dark-text-soft); }
.section-head { max-width: 660px; margin: 0 auto 32px; text-align: center; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head-row .section-head { margin: 0; text-align: left; max-width: none; }
.tool-page-head { padding: 40px 0 6px; }
.tool-page-head h1 { margin-bottom: .3em; }
.tool-page-head .lead { margin-bottom: 20px; }

.reloj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.reloj-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .28s var(--ease-out), transform .28s var(--ease-out), border-color .28s var(--ease-out); }
.reloj-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gold-deep); }
.reloj-card-img { display: block; aspect-ratio: 1/1; background: var(--bg-soft); overflow: hidden; }
.reloj-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .4s var(--ease-out); }
.reloj-card:hover .reloj-card-img img { transform: scale(1.04); }
.reloj-card-body { padding: 18px; position: relative; }
.reloj-card-marca { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-deep); }
.reloj-card-body h3 { font-size: 1.04rem; margin: 5px 0 8px; font-family: var(--sans); font-weight: 700; }
.reloj-card-precio { font-weight: 800; color: var(--text); margin-bottom: 14px; font-family: var(--mono); font-size: .98rem; }
.reloj-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.cat-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 26px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); font-weight: 700; text-align: center; transition: transform .22s var(--ease-out), border-color .22s var(--ease-out), box-shadow .22s var(--ease-out); }
.cat-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cat-icon { font-size: 1.8rem; }
.cat-card-count { font-size: .74rem; font-weight: 500; color: var(--text-faint); }

.marca-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.marca-card { display: flex; align-items: center; justify-content: center; padding: 30px 16px; background: var(--dark); color: var(--dark-text); border: 1px solid var(--dark-border); border-radius: var(--radius-md); font-family: var(--serif); font-size: 1.15rem; font-weight: 700; transition: border-color .22s var(--ease-out), color .22s var(--ease-out); }
.marca-card:hover { border-color: var(--gold); color: var(--gold-bright); }

.marca-hero { background: var(--dark); color: var(--dark-text); padding: 48px 0; text-align: center; }
.marca-hero h1 { color: var(--dark-text); }
.marca-hero p { color: var(--dark-text-soft); max-width: 640px; margin: 12px auto 0; }
.marca-block { margin-bottom: 44px; }
.marca-block h2 { margin-bottom: 18px; }
.guia-link-card { display: block; padding: 18px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); font-weight: 700; }
.guia-link-card:hover { border-color: var(--gold-deep); }
.guia-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }

/* =============================================================
   9. Wizard — "Encuentra tu reloj ideal"
   ============================================================= */
.wizard { max-width: 740px; margin: 0 auto; }
.wizard-progreso { margin-bottom: 32px; }
.progress-bar { height: 6px; border-radius: var(--radius-pill); background: var(--bg-soft); overflow: hidden; margin-bottom: 10px; border: 1px solid var(--border); }
.progress-bar .fill { height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); width: 12.5%; transition: width .35s var(--ease-out); }
.progress-label { font-size: .82rem; color: var(--text-faint); text-align: center; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

.wizard-step h2 { text-align: center; margin-bottom: 26px; font-size: 1.6rem; }
.wizard-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-bottom: 22px; }
.wizard-option { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 14px; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-md); font-weight: 600; text-align: center; transition: border-color .2s var(--ease-out), background .2s var(--ease-out), transform .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.wizard-option:hover { border-color: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.wizard-option.is-selected { border-color: var(--gold); background: var(--gold-soft); color: var(--gold-deep); box-shadow: 0 0 0 1px var(--gold) inset; }
.opt-icon { font-size: 1.8rem; }
.wizard-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.wizard-explain { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 22px; margin-bottom: 18px; display: grid; gap: 10px; }
.wizard-explain[hidden] { display: none; }
.wizard-explain p { font-size: .9rem; }
.link-help { display: inline-block; font-size: .85rem; color: var(--gold-deep); font-weight: 600; margin-bottom: 12px; }
.link-help:hover { text-decoration: underline; }
.wizard-help-text { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 16px; font-size: .88rem; color: var(--text-soft); }

.wizard-intro-resultado { text-align: center; font-size: 1.15rem; font-weight: 700; margin-bottom: 26px; font-family: var(--serif); }
.resultado-ganador { display: grid; grid-template-columns: 280px 1fr; gap: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); position: relative; }
.resultado-ganador::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep)); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.resultado-ganador-img { background: var(--bg-soft); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; padding: 20px; }
.badge-pct { display: inline-block; background: var(--dark); color: var(--gold-bright); font-weight: 800; padding: 7px 16px; border-radius: var(--radius-pill); font-size: .88rem; margin-bottom: 12px; font-family: var(--mono); }
.resultado-ganador-body h3 { font-size: 1.55rem; margin-bottom: 14px; }
.resultado-specs { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; margin-bottom: 18px; font-size: .92rem; }
.resultado-porque { list-style: none; padding: 0; display: grid; gap: 7px; margin-bottom: 14px; font-size: .92rem; }
.ten-en-cuenta { font-size: .88rem; color: var(--warn); background: var(--warn-soft); padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 18px; }
@media (max-width: 720px) { .resultado-ganador { grid-template-columns: 1fr; } }

.alt-heading { margin: 36px 0 18px; text-align: center; }
.alt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.alt-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; text-align: center; transition: border-color .22s var(--ease-out), transform .22s var(--ease-out); }
.alt-card:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.alt-card-img { display: block; aspect-ratio: 1.3/1; background: var(--bg-soft); border-radius: var(--radius-sm); margin-bottom: 12px; }
.alt-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.alt-etiqueta { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-deep); margin-bottom: 5px; }
.alt-card h4 { font-size: .95rem; margin-bottom: 6px; font-family: var(--sans); }
.alt-pct { font-weight: 700; color: var(--success); font-size: .88rem; margin-bottom: 5px; font-family: var(--mono); }
.alt-precio { font-weight: 700; color: var(--text); margin-bottom: 12px; font-family: var(--mono); }

.resultado-radar { text-align: center; margin: 36px 0; }
.resultado-acciones { justify-content: center; flex-wrap: wrap; margin-top: 14px; }
.compartir-nota { text-align: center; font-size: .82rem; color: var(--text-faint); word-break: break-all; margin-top: 8px; }
.tc-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   10. Radar SVG
   ============================================================= */
.radar-svg { max-width: 340px; width: 100%; height: auto; margin: 0 auto; display: block; }
.radar-grid { fill: none; stroke: var(--border); stroke-width: 1; }
.radar-axis { stroke: var(--silver-line); stroke-width: 1; }
.radar-label { font-size: 10px; fill: var(--text-faint); font-family: var(--sans); font-weight: 600; }
.radar-legend { list-style: none; padding: 0; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 14px; font-size: .84rem; }
.radar-legend .dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }

/* =============================================================
   11. Ficha de producto
   ============================================================= */
.ficha { max-width: 840px; margin: 0 auto; padding: 26px 20px 64px; display: grid; gap: 36px; }
.ficha-galeria { text-align: center; }
.ficha-img-main { max-width: 320px; margin: 0 auto; background: var(--bg-soft); border-radius: var(--radius-md); padding: 22px; border: 1px solid var(--border); }
.ficha-head { text-align: center; }
.ficha-head h1 { font-size: 1.95rem; margin-bottom: 8px; }
.ficha-coleccion { font-size: .86rem; color: var(--text-faint); margin-bottom: 6px; }
.ficha-rating { color: var(--text-soft); font-size: .92rem; margin-bottom: 16px; }
.ficha-precio { margin-bottom: 20px; }
.precio-actual { font-size: 1.9rem; font-weight: 800; color: var(--text); margin-right: 10px; font-family: var(--mono); }
.precio-antes { text-decoration: line-through; color: var(--text-faint); font-family: var(--mono); }
.precio-nota { display: block; font-size: .8rem; color: var(--text-faint); margin-top: 6px; }
.ficha-radar { text-align: center; }
.specs-table { margin: 10px 0 26px; }
.specs-table th, .specs-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; font-size: .92rem; }
.specs-table td { font-family: var(--mono); font-size: .89rem; }
.specs-table th { color: var(--text-soft); font-weight: 600; width: 46%; font-family: var(--sans); }
.specs-extra summary { cursor: pointer; font-weight: 700; margin: 14px 0; }
.pros-contras { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 22px 0; }
.pros-contras h3 { font-size: 1.05rem; margin-bottom: 10px; }
.pros-contras ul { list-style: none; padding: 0; display: grid; gap: 9px; font-size: .92rem; }
.pros-contras .pros li::before { content: "✓ "; color: var(--success); font-weight: 700; }
.pros-contras .contras li::before { content: "– "; color: var(--text-faint); font-weight: 700; }
@media (max-width: 600px) { .pros-contras { grid-template-columns: 1fr; } }
.ideal-para { background: var(--gold-soft); border-left: 3px solid var(--gold); padding: 14px 18px; border-radius: var(--radius-sm); font-size: .92rem; }
.resenas-resumen { font-size: .95rem; }
.ficha-comparar { text-align: center; }

/* =============================================================
   12. Comparador
   ============================================================= */
.comparador-buscador { position: relative; max-width: 480px; margin: 0 auto 30px; }
.comparador-buscador input { width: 100%; padding: 14px 18px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-size: .95rem; background: var(--surface); }
.comparador-buscador input:focus-visible { border-color: var(--gold-deep); }
.buscador-resultados { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-md); z-index: 20; overflow: hidden; }
.buscador-item { display: block; width: 100%; text-align: left; padding: 12px 16px; font-size: .9rem; }
.buscador-item:hover { background: var(--bg-soft); }
.comparador-empty { text-align: center; color: var(--text-faint); padding: 40px 0; }
.comparador-scroll { overflow-x: auto; padding-top: 8px; }
.comparador-tabla { min-width: 580px; }
.comparador-tabla th, .comparador-tabla td { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: .89rem; text-align: left; white-space: nowrap; }
.comparador-tabla td { font-family: var(--mono); }
.comparador-tabla thead th { position: relative; text-align: center; padding-top: 18px; font-family: var(--sans); }
.comparador-tabla thead th a { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.comparador-tabla thead th img { width: 66px; height: 66px; object-fit: contain; background: var(--bg-soft); border-radius: var(--radius-sm); padding: 6px; border: 1px solid var(--border); }
.comparador-tabla thead th span { font-size: .82rem; font-weight: 700; white-space: normal; max-width: 120px; }
.comparador-tabla tbody th { color: var(--text-soft); font-weight: 600; white-space: normal; font-family: var(--sans); }
.comparador-tabla td.is-best { background: var(--gold-soft); color: var(--gold-deep); font-weight: 700; }
.remove-badge { position: absolute; top: -6px; right: 4px; width: 22px; height: 22px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm); font-size: .9rem; line-height: 1; color: var(--text-faint); }
.remove-badge:hover { color: var(--danger); border-color: var(--danger); }
.comparador-radar { text-align: center; margin-top: 40px; }

/* =============================================================
   13. FAQ (guías) + legal
   ============================================================= */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); }
.faq-item summary { padding: 16px 18px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--gold-deep); flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer { padding: 0 18px 16px; }
.faq-item .faq-answer p { margin: 0; font-size: .92rem; }

.legal-content h1 { margin-bottom: .6em; }
.legal-content h2 { margin-top: 1.6em; margin-bottom: .4em; font-size: 1.3rem; }

/* =============================================================
   14. Responsive
   ============================================================= */
@media (min-width: 1280px) { .container { padding: 0 32px; } }

@media (max-width: 540px) {
  .wizard-options { grid-template-columns: repeat(2, 1fr); }
  .resultado-specs { grid-template-columns: 1fr; }
}
