/* =============================================================
   ARENERO IDEAL — hoja de estilos única, organizada por secciones
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #faf8f4;
  --bg-alt:    #f2ede3;
  --card-bg:   #ffffff;
  --ink:       #1f2420;
  --ink-mute:  #5c6259;
  --ink-soft:  #8a8f84;
  --line:      #e6ded0;
  --accent:    #2f6f5e;
  --accent-ink:#f4fbf8;
  --accent-2:  #d97a4d;
  --accent-2-ink: #fff6f0;
  --gold:      #c99a3f;
  --danger:    #c0503a;
  --ok:        #2f6f5e;
  --radius-s:  8px;
  --radius-m:  14px;
  --radius-l:  22px;
  --shadow-s:  0 4px 14px rgba(31,36,32,.06), 0 1px 3px rgba(31,36,32,.05);
  --shadow-m:  0 18px 40px rgba(31,36,32,.10), 0 4px 12px rgba(31,36,32,.06);
  --shadow-l:  0 30px 70px rgba(31,36,32,.16), 0 10px 24px rgba(31,36,32,.08);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans:  "Inter", ui-sans-serif, system-ui, sans-serif;
  --container: 1240px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:        #141815;
    --bg-alt:    #1b201c;
    --card-bg:   #1d2320;
    --ink:       #eef1ea;
    --ink-mute:  #a9b0a3;
    --ink-soft:  #767d72;
    --line:      #2b322c;
    --accent:    #57b79b;
    --accent-ink:#0c1613;
    --accent-2:  #e79463;
    --accent-2-ink: #24140b;
    --shadow-s:  0 4px 14px rgba(0,0,0,.3), 0 1px 3px rgba(0,0,0,.25);
    --shadow-m:  0 18px 40px rgba(0,0,0,.38), 0 4px 12px rgba(0,0,0,.28);
    --shadow-l:  0 30px 70px rgba(0,0,0,.5), 0 10px 24px rgba(0,0,0,.3);
  }
}
:root[data-theme="dark"] {
  --bg:        #141815;
  --bg-alt:    #1b201c;
  --card-bg:   #1d2320;
  --ink:       #eef1ea;
  --ink-mute:  #a9b0a3;
  --ink-soft:  #767d72;
  --line:      #2b322c;
  --accent:    #57b79b;
  --accent-ink:#0c1613;
  --accent-2:  #e79463;
  --accent-2-ink: #24140b;
  --shadow-s:  0 4px 14px rgba(0,0,0,.3), 0 1px 3px rgba(0,0,0,.25);
  --shadow-m:  0 18px 40px rgba(0,0,0,.38), 0 4px 12px rgba(0,0,0,.28);
  --shadow-l:  0 30px 70px rgba(0,0,0,.5), 0 10px 24px rgba(0,0,0,.3);
}

/* =============================================================
   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(--bg);
  color: var(--ink);
  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(--serif); font-weight: 600; }
ul { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.section { padding-block: clamp(3rem, 7vw, 6rem); }
.section-head { max-width: 640px; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .6rem;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--accent-2); border-radius: 2px; }
.lede { color: var(--ink-mute); font-size: 1.05rem; max-width: 60ch; }
.center { text-align: center; margin-inline: auto; }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
.pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .7rem; border-radius: 100px; font-size: .78rem; font-weight: 600;
  background: var(--bg-alt); color: var(--ink-mute); border: 1px solid var(--line);
}
.pill.is-accent { background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); border-color: transparent; }
.pill.is-offer { background: color-mix(in srgb, var(--accent-2) 16%, transparent); color: var(--accent-2); border-color: transparent; }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
.prose { color: var(--ink); max-width: 72ch; }
.prose p { margin-bottom: 1.1em; color: var(--ink-mute); }
.prose p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 3.2rem; float: left; line-height: .8;
  margin: .1rem .5rem -.1rem 0; color: var(--accent);
}
.prose h2, .prose h3 { color: var(--ink); margin: 1.6em 0 .6em; }
.prose ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1.1em; color: var(--ink-mute); }
.prose ul li { margin-bottom: .35em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

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

/* Buttons */
.btn svg, button svg, .pill svg, .nav-links a svg { width: 1.1em; height: 1.1em; flex: none; vertical-align: -0.15em; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 100px; font-weight: 600; font-size: .95rem;
  box-shadow: var(--shadow-s);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s, color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-primary { background: var(--accent-2); color: var(--accent-2-ink); }
.btn-secondary { background: var(--card-bg); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.btn-block { width: 100%; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* Star rating */
.stars { display: inline-flex; align-items: center; gap: .4rem; }
.stars-graphic { position: relative; display: inline-block; width: 5.4em; height: 1em; font-size: .95rem; color: var(--line); }
.stars-graphic::before { content: "★★★★★"; letter-spacing: .18em; }
.stars-fill { position: absolute; inset: 0; overflow: hidden; color: var(--gold); white-space: nowrap; }
.stars-fill::before { content: "★★★★★"; letter-spacing: .18em; }
.stars-count { color: var(--ink-soft); font-size: .85rem; }

/* Cards */
.card {
  background: var(--card-bg); border: 1px solid var(--line); border-radius: var(--radius-m);
  box-shadow: var(--shadow-s); overflow: hidden;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-color: transparent; }

.product-card { display: flex; flex-direction: column; position: relative; }
.product-card .pc-media { position: relative; aspect-ratio: 4/3; background: var(--bg-alt); overflow: hidden; }
.product-card .pc-media img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; transition: transform .7s var(--ease-soft); }
.product-card:hover .pc-media img { transform: scale(1.06); }
.product-card .pc-badges { position: absolute; top: .7rem; left: .7rem; right: .7rem; display: flex; justify-content: space-between; gap: .4rem; pointer-events: none; }
.product-card .pc-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.product-card .pc-cat { font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.product-card .pc-name { font-size: 1.08rem; line-height: 1.25; }
.product-card .pc-name a { color: inherit; }
.product-card .pc-desc { color: var(--ink-mute); font-size: .9rem; line-height: 1.5; flex: 1; }
.product-card .pc-price-row { display: flex; align-items: baseline; gap: .5rem; margin-top: .2rem; }
.pc-price-now { font-size: 1.3rem; font-weight: 700; font-family: var(--serif); }
.pc-price-was { font-size: .88rem; color: var(--ink-soft); text-decoration: line-through; }
.product-card .pc-actions { display: flex; gap: .5rem; margin-top: .6rem; }
.product-card .pc-compare-toggle {
  display: inline-flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--ink-mute);
  border: 1px solid var(--line); border-radius: 100px; padding: .4rem .7rem;
  transition: border-color .3s, color .3s, background .3s;
}
.product-card .pc-compare-toggle.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.product-card .pc-compare-toggle svg { width: 1em; height: 1em; flex: none; }

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

/* Chips / filters */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.6rem; }
.chip {
  padding: .5rem 1rem; border-radius: 100px; border: 1px solid var(--line); background: var(--card-bg);
  font-size: .85rem; font-weight: 600; color: var(--ink-mute); transition: all .25s var(--ease-out);
}
.chip.is-active, .chip:hover { border-color: var(--accent); color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, var(--card-bg)); }

.sort-select {
  padding: .55rem 1rem; border-radius: 100px; border: 1px solid var(--line); background: var(--card-bg);
  font-size: .85rem; font-weight: 600; color: var(--ink);
}

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 2px 20px rgba(0,0,0,.04); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .9rem; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--accent), color-mix(in srgb, var(--accent) 60%, black));
  color: var(--accent-ink); flex: none;
}
.brand-mark svg { width: 19px; height: 19px; }
.nav-links { display: none; align-items: center; gap: 1.7rem; }
.nav-links a { position: relative; font-weight: 600; font-size: .92rem; color: var(--ink-mute); padding-block: .3rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.nav-cta, .nav-links a.nav-cta:hover {
  color: var(--accent-ink); background: var(--accent); padding: .5rem 1.05rem; border-radius: 100px;
}
.nav-links a.nav-cta::after { display: none; }
.nav-cta-count {
  display: inline-grid; place-items: center; min-width: 1.15em; height: 1.15em; padding-inline: .25em;
  border-radius: 100px; background: var(--accent-ink); color: var(--accent); font-size: .72rem; font-weight: 800;
}
@media (min-width: 960px) { .nav-links { display: flex; } .nav-burger { display: none; } }
.nav-burger {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line);
}
.nav-burger svg { width: 20px; height: 20px; }
.nav-mobile {
  position: fixed; inset: 0; z-index: 300; background: var(--bg); color: var(--ink);
  display: grid; place-items: center; clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-list { display: flex; flex-direction: column; gap: 1.4rem; text-align: center; }
.nav-mobile-list a { font-family: var(--serif); font-size: 1.6rem; }
.nav-mobile-close { position: absolute; top: 1.3rem; right: 1.3rem; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 100px; }

/* Footer */
.footer { background: var(--ink); color: color-mix(in srgb, var(--bg) 85%, transparent); padding-block: 3.5rem 1.6rem; margin-top: 5rem; }
.footer a { color: inherit; opacity: .82; }
.footer a:hover { opacity: 1; text-decoration: underline; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; margin-bottom: 2.4rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h4 { font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem; opacity: .6; }
.footer ul { display: flex; flex-direction: column; gap: .55rem; font-size: .92rem; }
.footer-brand p { opacity: .7; font-size: .9rem; margin-top: .8rem; max-width: 34ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8rem; opacity: .65; }
.aviso-afiliados {
  font-size: .82rem; color: var(--ink-soft); background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius-s); padding: .9rem 1.1rem; line-height: 1.55;
}
.footer .aviso-afiliados { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.65); margin-bottom: 1.6rem; }

/* =============================================================
   6. Sections
   ============================================================= */

/* Hero */
.hero { position: relative; padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 6vw, 4rem); overflow: hidden; }
.hero-halo { position: absolute; inset: -30% -10% -40% -10%; z-index: -1; pointer-events: none;
  background: radial-gradient(45% 40% at 25% 15%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%),
              radial-gradient(40% 35% at 85% 30%, color-mix(in srgb, var(--accent-2) 18%, transparent), transparent 70%);
  filter: blur(60px);
}
.hero-grid { display: grid; gap: 2.4rem; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; } }
.hero-title { max-width: 15ch; }
.hero-title em { color: var(--accent); font-style: normal; }
.hero-lede { margin-top: 1.1rem; font-size: 1.1rem; color: var(--ink-mute); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.2rem; }
.hero-stat b { font-family: var(--serif); font-size: 1.5rem; display: block; }
.hero-stat span { font-size: .8rem; color: var(--ink-soft); }
.hero-visual { position: relative; }
.hero-visual-card {
  background: var(--card-bg); border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow-l);
  padding: 1.6rem; display: grid; gap: 1rem;
}
.hero-visual-card img { border-radius: var(--radius-m); aspect-ratio: 1/1; object-fit: contain; background: var(--bg-alt); padding: 1.2rem; }
.hero-mini-compare { display: flex; align-items: center; gap: .7rem; font-size: .85rem; color: var(--ink-mute); }
.hero-mini-compare .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }

/* Cómo elegimos / trust */
.trust-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 1.5rem; }
.trust-item { padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--card-bg); }
.trust-item .ic { width: 2.2rem; height: 2.2rem; margin-bottom: .8rem; color: var(--accent); display: block; }
.trust-item .ic svg { width: 100%; height: 100%; }
.trust-item h3 { font-size: 1.02rem; margin-bottom: .4rem; }
.trust-item p { color: var(--ink-mute); font-size: .9rem; }

/* Category entry cards */
.cat-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cat-card { position: relative; padding: 1.6rem; border-radius: var(--radius-l); background: var(--bg-alt); border: 1px solid var(--line); }
.cat-card h3 { margin-bottom: .3rem; }
.cat-card p { color: var(--ink-mute); font-size: .88rem; margin-bottom: 1rem; }
.cat-card .cat-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .85rem; color: var(--accent); }

/* Guides strip */
.guide-strip { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.guide-card { display: flex; flex-direction: column; gap: .6rem; padding: 1.5rem; }
.guide-card .eyebrow { margin-bottom: 0; }

/* ============ FICHA (product page) ============ */
.ficha-top { display: grid; gap: 2.4rem; padding-block: 2rem 1rem; }
@media (min-width: 960px) { .ficha-top { grid-template-columns: 1fr 1.1fr; gap: 3.2rem; } }
.ficha-galeria { display: flex; flex-direction: column; gap: .8rem; position: sticky; top: 5.5rem; align-self: start; }
.ficha-img-main { width: 100%; aspect-ratio: 1/1; object-fit: contain; background: var(--bg-alt); border-radius: var(--radius-l); padding: 1.5rem; border: 1px solid var(--line); }
.ficha-thumbs { display: flex; gap: .6rem; overflow-x: auto; overflow-y: visible; padding: .3rem .1rem; }
.ficha-thumbs button { flex: none; width: 64px; height: 64px; border-radius: var(--radius-s); border: 2px solid var(--line); background: var(--bg-alt); overflow: hidden; }
.ficha-thumbs button.is-active { border-color: var(--accent); }
.ficha-thumbs img { width: 100%; height: 100%; object-fit: contain; padding: .3rem; }

.ficha-head { display: flex; flex-direction: column; gap: .5rem; }
.ficha-marca { font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--accent); }
.ficha-nombre { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.ficha-rating { margin-top: .2rem; }
.ficha-precio { display: flex; flex-wrap: wrap; align-items: baseline; gap: .7rem; margin-top: .6rem; }
.precio-actual { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; }
.precio-antes { font-size: 1.05rem; color: var(--ink-soft); text-decoration: line-through; }
.precio-nota { flex-basis: 100%; font-size: .82rem; color: var(--ink-soft); }
.ficha-head .btn-comprar { margin-top: 1.1rem; font-size: 1.02rem; padding: 1rem 1.8rem; }
.ficha-usp { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }

.ficha-radar { padding-block: 2.5rem; }
.ficha-radar-inner { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 860px) { .ficha-radar-inner { grid-template-columns: auto 1fr; } }
.ficha-radar figure { width: min(340px, 90vw); margin-inline: auto; }
.score-list { display: flex; flex-direction: column; gap: .7rem; }
.score-row { display: grid; grid-template-columns: 9rem 1fr 2.2rem; align-items: center; gap: .8rem; font-size: .88rem; }
.score-bar { height: 8px; border-radius: 100px; background: var(--bg-alt); overflow: hidden; }
.score-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 100px; }

.ficha-specs table { font-size: .92rem; }
.ficha-specs caption { text-align: left; font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); padding-block: .8rem .5rem; }
.ficha-specs tr { border-bottom: 1px solid var(--line); }
.ficha-specs th, .ficha-specs td { text-align: left; padding: .65rem .4rem; }
.ficha-specs th { color: var(--ink-mute); font-weight: 500; width: 45%; }
.ficha-specs td { font-weight: 600; }
.specs-extra { margin-top: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-s); padding: .2rem 1rem; }
.specs-extra summary { cursor: pointer; padding: .8rem 0; font-weight: 600; font-size: .9rem; }

.pros-contras { display: grid; gap: 1.2rem; margin-top: 1.4rem; }
@media (min-width: 640px) { .pros-contras { grid-template-columns: 1fr 1fr; } }
.pc-col { padding: 1.2rem; border-radius: var(--radius-m); }
.pc-col.pros { background: color-mix(in srgb, var(--ok) 8%, var(--card-bg)); border: 1px solid color-mix(in srgb, var(--ok) 25%, transparent); }
.pc-col.contras { background: color-mix(in srgb, var(--danger) 7%, var(--card-bg)); border: 1px solid color-mix(in srgb, var(--danger) 22%, transparent); }
.pc-col h3 { display: flex; align-items: center; gap: .5rem; font-size: 1rem; margin-bottom: .7rem; font-family: var(--sans); }
.pc-col h3 svg { width: 1.15em; height: 1.15em; flex: none; }
.pc-col.pros h3 { color: var(--ok); }
.pc-col.contras h3 { color: var(--danger); }
.pc-col li { display: flex; gap: .5rem; font-size: .9rem; margin-bottom: .5rem; color: var(--ink-mute); }
.pc-col li::before { content: "—"; color: var(--ink-soft); flex: none; }
.ideal-para { margin-top: 1.4rem; padding: 1rem 1.2rem; border-left: 3px solid var(--accent-2); background: var(--bg-alt); border-radius: 0 var(--radius-s) var(--radius-s) 0; font-size: .95rem; }

.ficha-resenas ul { display: grid; gap: 1rem; margin-top: 1.2rem; }
.review-card { padding: 1.1rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius-m); }
.review-top { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-bottom: .5rem; flex-wrap: wrap; }
.review-author { font-weight: 700; font-size: .9rem; }
.review-verified { display: inline-flex; align-items: center; gap: .3rem; font-size: .76rem; color: var(--ok); font-weight: 600; }
.review-verified svg { width: 1.15em; height: 1.15em; flex: none; }
.review-text { color: var(--ink-mute); font-size: .92rem; }

.ficha-comparar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; padding: 1.6rem; background: var(--bg-alt); border-radius: var(--radius-l); margin-block: 2rem; }
.similares { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); margin-top: 1.4rem; }
.similar-mini { display: flex; flex-direction: column; gap: .4rem; padding: .9rem; border: 1px solid var(--line); border-radius: var(--radius-s); font-size: .82rem; }
.similar-mini img { aspect-ratio: 1; object-fit: contain; background: var(--bg-alt); border-radius: var(--radius-s); padding: .4rem; }

/* ============ COMPARADOR ============ */
.comparador-picker { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-bottom: 1.6rem; }
.comparador-search { position: relative; flex: 1 1 260px; }
.comparador-search input {
  width: 100%; padding: .85rem 1.1rem; border-radius: 100px; border: 1px solid var(--line); background: var(--card-bg); font: inherit; color: var(--ink);
}
.comparador-results { position: absolute; top: calc(100% + .5rem); left: 0; right: 0; background: var(--card-bg); border: 1px solid var(--line); border-radius: var(--radius-m); box-shadow: var(--shadow-m); z-index: 20; max-height: 300px; overflow-y: auto; }
.comparador-results button { display: flex; align-items: center; gap: .7rem; width: 100%; padding: .6rem .9rem; text-align: left; }
.comparador-results button:hover { background: var(--bg-alt); }
.comparador-results img { width: 36px; height: 36px; object-fit: contain; background: var(--bg-alt); border-radius: 6px; flex: none; }
.comparador-slots { display: flex; flex-wrap: wrap; gap: .8rem; }
.slot-wrap { position: relative; }
.slot { width: 84px; height: 84px; border-radius: var(--radius-s); border: 1px dashed var(--line); display: grid; place-items: center; overflow: hidden; background: var(--bg-alt); }
.slot img { width: 100%; height: 100%; object-fit: contain; padding: .4rem; }
.slot.is-empty { color: var(--ink-soft); font-size: .72rem; text-align: center; padding: .3rem; }
.remove-badge { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%; background: var(--danger); color: #fff; font-size: .8rem; display: grid; place-items: center; box-shadow: var(--shadow-s); }

.comparador-empty { padding: 3rem 1.5rem; text-align: center; color: var(--ink-mute); border: 1px dashed var(--line); border-radius: var(--radius-l); }

.comparador-radar { margin-block: 2rem; padding: 1.8rem; background: var(--bg-alt); border-radius: var(--radius-l); }
.comparador-radar figure { width: min(420px, 100%); margin-inline: auto; }
.comparador-legend { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1rem; }
.comparador-legend span { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600; }
.comparador-legend i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

.tabla-comparador-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-m); }
.tabla-comparador { min-width: 640px; }
.tabla-comparador th, .tabla-comparador td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); text-align: left; font-size: .9rem; vertical-align: top; }
.tabla-comparador thead th { background: var(--bg-alt); position: sticky; top: 0; }
.tabla-comparador tbody th { color: var(--ink-mute); font-weight: 500; white-space: nowrap; }
.tabla-comparador td.is-best { color: var(--ok); font-weight: 700; background: color-mix(in srgb, var(--ok) 9%, transparent); }
.tabla-comparador .col-head { display: flex; flex-direction: column; gap: .5rem; min-width: 160px; }
.tabla-comparador .col-head img { width: 64px; height: 64px; object-fit: contain; background: var(--bg-alt); border-radius: var(--radius-s); padding: .4rem; }
.tabla-comparador .col-head .btn { margin-top: .3rem; }

/* ============ Ofertas ============ */
.oferta-badge { background: var(--accent-2); color: var(--accent-2-ink); font-weight: 700; }
.discount-pct { font-size: .78rem; font-weight: 800; }

/* ============ Legal / static pages ============ */
.page-head { padding-block: 3rem 1rem; }
.page-head .lede { margin-top: .6rem; }

/* ============ Breadcrumbs ============ */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; color: var(--ink-soft); padding-top: 1.2rem; }
.breadcrumbs a { color: var(--ink-mute); }
.breadcrumbs a:hover { color: var(--accent); }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: .8rem; margin-top: 1.5rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-m); padding: 0 1.2rem; background: var(--card-bg); }
.faq-item summary { padding: 1.1rem 0; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--accent); flex: none; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding-bottom: 1.1rem; color: var(--ink-mute); }

/* Icons generic sizing safety net */
svg.icon { width: 1.2em; height: 1.2em; flex: none; }

/* =============================================================
   7. Effects
   ============================================================= */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .5s; animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }

/* =============================================================
   8. Responsive helpers
   ============================================================= */
@media (max-width: 719px) {
  .ficha-galeria { position: static; }
}

/* =============================================================
   9. Reduced motion (only intrusive)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition-duration: .01s; }
}
