/* =============================================================
   1. Tokens — Editorial Light Cream
   ============================================================= */
:root {
  --bg:          #f6f1e6;   /* warm cream */
  --bg-alt:      #ece1cd;   /* sand */
  --surface:     #fffdfa;   /* paper */
  --text:        #211c16;   /* warm near-black */
  --text-soft:   #332c22;
  --text-muted:  #71675a;
  --line:        rgba(33, 28, 22, 0.13);
  --line-strong: rgba(33, 28, 22, 0.28);
  --accent:      #b5502c;   /* terracotta — primary warm accent */
  --accent-ink:  #fff6ef;
  --accent-soft: #f2e0d3;
  --moss:        #4a5d3a;   /* moss — secondary cool accent */
  --moss-soft:   #e4e9dc;
  --gold:        #a97a1e;
  --danger:      #a3352a;
  --radius:      16px;
  --radius-sm:   9px;
  --shadow:      0 1px 2px rgba(33, 20, 10, 0.06), 0 10px 30px -14px rgba(33, 20, 10, 0.22);
  --shadow-lift: 0 22px 50px rgba(33, 20, 10, 0.16), 0 10px 24px -6px rgba(181, 80, 44, 0.18);
  --serif:       "Fraunces", Georgia, serif;
  --sans:        "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);
  --container:   1180px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
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.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 600; }
em { font-style: italic; color: var(--accent); }
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; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--accent); color: var(--accent-ink);
  border-radius: 8px; font-weight: 600; transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.has-grain { position: relative; }
.has-grain::after {
  content: ""; position: absolute; inset: 0;
  pointer-events: none; opacity: 0.15; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  border-radius: inherit;
}

/* Custom cursor (pointer devices only) */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  display: none; mix-blend-mode: difference; opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 6px; height: 6px; margin: -3px; background: #fff; border-radius: 50%; }
.cursor-ring {
  width: 34px; height: 34px; margin: -17px; border: 1px solid #fff; border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: .5rem; }
h3 { font-size: 1.1rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 700; color: var(--accent); }
.nota { color: var(--text-muted); font-size: .85rem; }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .8rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 14px rgba(33,20,10,0.08), 0 1px 3px rgba(33,20,10,0.06);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-primary, .btn-buy { background: var(--accent); color: var(--accent-ink); }
.btn-secondary { background: var(--surface); color: var(--text); border: 1px solid var(--line-strong); box-shadow: none; }
.btn-secondary:hover { border-color: var(--accent); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-strong); box-shadow: none; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: .55rem .95rem; font-size: .82rem; }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.02rem; width: 100%; }
.btn-repeat { margin-block: 1.5rem; max-width: 340px; }

.badge {
  display: inline-flex; align-items: center; padding: .25rem .6rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; position: absolute; top: .6rem; z-index: 2;
}
.badge-offer { left: .6rem; background: var(--danger); color: #fff; }
.badge-sample { right: .6rem; background: var(--gold); color: #2a1c05; }
.badge-featured { right: .6rem; background: var(--accent); color: var(--accent-ink); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: visible; box-shadow: var(--shadow);
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s var(--ease-soft);
}
.product-card { display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--accent-soft); }
.card-media { position: relative; display: block; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: var(--bg-alt); }
.card-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .8s var(--ease-soft), filter .5s var(--ease-soft); }
.card-media:hover img { transform: scale(1.08); filter: saturate(1.1) brightness(1.02); }
.card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.card-eyebrow { font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); }
.card-title a:hover { color: var(--accent); }
.card-rating { font-size: .85rem; color: var(--gold); }
.card-rating span { color: var(--text-muted); margin-left: .3rem; }
.card-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: .1rem .5rem; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; }
.price-before { white-space: nowrap; font-family: var(--sans); font-size: .9rem; font-weight: 500; color: var(--text-muted); text-decoration: line-through; }
.card-actions { display: flex; gap: .5rem; margin-top: auto; padding-top: .5rem; flex-wrap: wrap; }

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

/* Bento-style category grid */
.category-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .category-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 132px; }
  .category-grid .category-card:nth-child(3n+1) { grid-column: span 3; grid-row: span 2; }
  .category-grid .category-card:nth-child(3n+2) { grid-column: span 3; grid-row: span 1; }
  .category-grid .category-card:nth-child(3n+3) { grid-column: span 3; grid-row: span 1; }
}
.category-card {
  display: flex; flex-direction: column; justify-content: space-between; padding: 1.4rem 1.6rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem;
  transition: border-color .4s var(--ease-soft), transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
.category-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.category-count { font-family: var(--sans); font-weight: 600; color: var(--accent); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }

/* Marquee ticker */
.marquee { overflow: hidden; position: relative; border-block: 1px solid var(--line); background: var(--bg-alt); }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg-alt), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg-alt), transparent); }
.marquee-track { display: inline-flex; gap: 3rem; white-space: nowrap; will-change: transform; padding-block: .9rem; }
.marquee-track span { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); }
.marquee-track span.dot { color: var(--accent); }

/* =============================================================
   6. Sections — header / nav / footer
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50; background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), border-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-color: var(--line); box-shadow: 0 1px 0 rgba(33,20,10,0.04);
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1.05rem; }
.brand { display: flex; align-items: center; gap: .5rem; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; }
.brand-mark { width: 30px; height: 30px; flex: none; fill: var(--accent); stroke: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 1rem; }
.site-nav-list { display: flex; gap: 1.7rem; align-items: center; }
.site-nav-list a { font-weight: 600; font-size: .93rem; padding-block: .3rem; border-bottom: 2px solid transparent; transition: color .2s var(--ease-out), border-color .2s var(--ease-out); }
.site-nav-list a:hover, .site-nav-list a.is-active { color: var(--accent); border-color: var(--accent); }

.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 30px; border-radius: 999px; border: 1px solid var(--line-strong);
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
  transition: border-color .2s var(--ease-out), color .2s var(--ease-out);
}
.lang-switch:hover { border-color: var(--accent); color: var(--accent); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 40px; height: 36px; border-radius: 8px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin-inline: auto; transition: transform .25s var(--ease-out), opacity .25s var(--ease-out); }

.site-footer { border-top: 1px solid var(--line); margin-top: 4rem; padding-block: 2.8rem 1.6rem; background: var(--bg-alt); }
.footer-grid { display: grid; gap: 1.8rem; grid-template-columns: 1.3fr 1fr 1fr; align-items: start; margin-bottom: 1.6rem; }
.footer-tagline { color: var(--text-muted); font-size: .88rem; margin-top: .4rem; }
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { font-size: .9rem; color: var(--text-muted); }
.footer-nav a:hover { color: var(--accent); }
.footer-contact a { color: var(--text-muted); font-size: .9rem; }
.aviso-afiliados { font-size: .78rem; color: var(--text-muted); border-top: 1px solid var(--line); padding-top: 1rem; margin-top: .5rem; }
.aviso-afiliados--inline { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.2rem; background: var(--bg-alt); margin-block: 1.5rem; }
.footer-copy { font-size: .78rem; color: var(--text-muted); margin-top: .8rem; }

/* Hero */
.hero { padding-block: clamp(3rem, 7vw, 6rem) clamp(2.5rem, 5vw, 4.5rem); }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.hero-lede { color: var(--text-muted); font-size: 1.12rem; margin-top: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; gap: .9rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }
.hero-media img { border-radius: var(--radius); animation: ambientZoom 26s ease-in-out infinite; }
@keyframes ambientZoom {
  0%, 100% { transform: scale(1.03); }
  50%      { transform: scale(1.1) translate3d(-1%, -1%, 0); }
}

.section-block { padding-block: clamp(2.2rem, 4vw, 3.6rem); }
.section-head { margin-bottom: 1.6rem; }
.section-head p { color: var(--text-muted); }
.section-trust .trust-card { background: var(--moss-soft); border: 1px solid var(--moss); border-radius: var(--radius); padding: 1.8rem 2rem; }
.section-trust h2 { margin-bottom: .5rem; }
.section-trust a { color: var(--moss); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.niche-section { border-top: 1px solid var(--line); padding-block-start: clamp(2.2rem, 4vw, 3.6rem); }
.niche-links { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.4rem; }

.breadcrumbs { font-size: .82rem; color: var(--text-muted); padding-block: 1.1rem; }
.breadcrumbs a:hover { color: var(--accent); }

/* Filter bar */
.filter-bar { display: flex; justify-content: flex-end; margin-bottom: 1.1rem; }
.filter-bar label { font-size: .88rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.filter-bar select { padding: .55rem .75rem; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); background: var(--surface); color: var(--text); }
.empty-state { color: var(--text-muted); padding-block: 2rem; }

/* Ficha */
.ficha-top { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; padding-block: 1.6rem 2.2rem; }
.ficha-galeria { display: flex; flex-direction: column; gap: .9rem; }
.ficha-img-main { border-radius: var(--radius); box-shadow: var(--shadow-lift); aspect-ratio: 1/1; object-fit: cover; }
.ficha-thumbs { display: flex; gap: .6rem; overflow-x: auto; overflow-y: visible; padding-block: .3rem .6rem; }
.thumb-btn { flex: none; width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--line); transition: border-color .25s var(--ease-out); }
.thumb-btn:hover, .thumb-btn.is-active { border-color: var(--accent); }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }

.ficha-marca { color: var(--text-muted); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.ficha-nombre { margin-block: .25rem .6rem; }
.ficha-rating { color: var(--gold); font-size: .95rem; margin-bottom: 1.1rem; }
.ficha-rating span { color: var(--text-muted); }
.ficha-precio { display: flex; flex-wrap: wrap; align-items: baseline; gap: .2rem .7rem; margin-bottom: 1.2rem; }
.precio-actual { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; }
.precio-antes { white-space: nowrap; font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.precio-nota { flex-basis: 100%; }
.precio-nota { color: var(--text-muted); font-size: .82rem; margin-top: .3rem; }
.ficha-destacado { margin-top: 1.1rem; font-weight: 600; color: var(--accent); font-family: var(--serif); font-size: 1.05rem; }
.sample-note { margin-top: 1.1rem; padding: .9rem 1.1rem; background: color-mix(in srgb, var(--gold) 14%, var(--surface)); border: 1px solid var(--gold); border-radius: var(--radius-sm); font-size: .85rem; }

.ficha-radar, .ficha-specs, .ficha-editorial, .ficha-resenas, .ficha-comparar { padding-block: 2rem; border-top: 1px solid var(--line); }
.radar-wrap { display: flex; justify-content: center; padding: 1rem 2.4rem; }
.radar-svg { max-width: 320px; overflow: visible; }
.radar-label { font-size: 10px; fill: var(--text-muted); font-family: var(--sans); }

.specs-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem 2.6rem; margin-top: 1.1rem; }
.specs-group-title { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); font-family: var(--sans); margin-bottom: .5rem; font-weight: 700; }
.specs-table th, .specs-table td { text-align: left; padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.specs-table th { font-weight: 500; color: var(--text-muted); width: 58%; }
.specs-table td { font-weight: 700; text-align: right; }
.specs-extra { margin-top: 1.5rem; }
.specs-extra summary { cursor: pointer; font-weight: 700; }
.specs-extra-body { margin-top: .6rem; }
.specs-extra-row { padding-block: .3rem; font-size: .9rem; color: var(--text-muted); }

.editorial-cuerpo p { margin-bottom: 1.05rem; max-width: 68ch; }
.pros-contras { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-block: 1.3rem; }
.pros li, .contras li { padding-left: 1.4rem; position: relative; margin-bottom: .55rem; font-size: .92rem; }
.pros li::before { content: "✓"; position: absolute; left: 0; color: var(--moss); font-weight: 700; }
.contras li::before { content: "✕"; position: absolute; left: 0; color: var(--danger); font-weight: 700; }
.ideal-para { background: var(--moss-soft); border-radius: var(--radius-sm); padding: 1.1rem; font-size: .92rem; }

.resenas-resumen { max-width: 68ch; margin-bottom: .5rem; }

.similares-section { padding-block: 2.2rem 3.2rem; }

/* Comparador */
.comparador-picker { display: flex; flex-direction: column; gap: .4rem; max-width: 420px; margin-bottom: 1.8rem; }
.comparador-picker label { font-weight: 700; font-size: .9rem; }
.comparador-picker select { padding: .75rem .95rem; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); background: var(--surface); color: var(--text); }
.comparador-empty { color: var(--text-muted); padding-block: 2.2rem; }
.comparador-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.comparador-table { min-width: 640px; }
.comparador-table th, .comparador-table td { padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparador-table thead th { background: var(--bg-alt); position: sticky; top: 0; }
.comparador-table .col-head img { width: 90px; height: 90px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: .5rem; }
.comparador-table .best-value { background: var(--accent-soft); font-weight: 700; }
.comparador-remove { color: var(--danger); font-size: .78rem; font-weight: 700; margin-top: .4rem; }
.comparador-radar-wrap { display: flex; justify-content: center; padding: 2.2rem 2.4rem; }
.comparador-radar-wrap .radar-svg { overflow: visible; }
.comparador-legend { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: .5rem; font-size: .82rem; }
.comparador-legend span { display: inline-flex; align-items: center; gap: .35rem; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

/* Guide */
.guide { padding-block: 1.6rem 3.2rem; max-width: 820px; }
.guide-updated { color: var(--text-muted); font-size: .85rem; margin-top: .3rem; }
.guide-intro { margin-block: 1.6rem; }
.guide-intro p { max-width: 68ch; }
.guide-shortlist { margin-block: 2.2rem; }
.guide-pick { display: flex; gap: 1.3rem; padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1.1rem; background: var(--surface); transition: box-shadow .4s var(--ease-soft), transform .4s var(--ease-soft); }
.guide-pick:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.guide-pick img { width: 100px; height: 100px; object-fit: cover; border-radius: var(--radius-sm); flex: none; }
.guide-pick h3 a:hover { color: var(--accent); }
.guide-faq { margin-block: 2.2rem; }
.guide-hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; margin-top: 1.8rem; }
.guide-hub-card { padding: 1.4rem; }
.guide-hub-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.guide-hub-card h3 a:hover { color: var(--accent); }
.guide-hub-card p { color: var(--text-muted); margin-bottom: 1rem; }
.faq-item { border-bottom: 1px solid var(--line); padding-block: 1rem; }
.faq-item summary { cursor: pointer; font-weight: 700; }
.faq-item p { margin-top: .6rem; color: var(--text-muted); }

/* Static pages */
.static-page { max-width: 760px; padding-block: 1.6rem 3.2rem; }
.static-page h2 { margin-top: 1.7rem; }
.static-page ul { list-style: disc; padding-left: 1.4rem; margin-block: .8rem; }
.static-page li { margin-bottom: .4rem; }
.static-page p { margin-bottom: .95rem; max-width: 68ch; }
.credits-list { list-style: none; padding: 0; margin-top: 1.4rem; }
.credits-list li { padding-block: .8rem; border-bottom: 1px solid var(--line); font-size: .9rem; color: var(--text-muted); }
.credits-list a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* =============================================================
   7. Effects
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (max-width: 959px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .ficha-top { grid-template-columns: 1fr; }
  .specs-groups { grid-template-columns: 1fr; }
  .pros-contras { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 719px) {
  .site-nav-list {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--surface); border-bottom: 1px solid var(--line); padding: 1rem var(--gutter) 1.4rem;
    gap: .2rem; transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
  }
  .site-nav-list[data-open] { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav-list a { display: block; padding-block: .7rem; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; }
}

@media (max-width: 539px) {
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .guide-pick { flex-direction: column; }
}

/* =============================================================
   9. Reduced motion — only intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .card-media img { transition: none; }
  .hero-media img { animation: none; }
}
