/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --ink: #1C1917;
  --ink-2: #44403C;
  --gold: #A16207;
  --gold-light: #EAB308;
  --cream: #FAFAF9;
  --cream-alt: #F5F3F0;
  --border: #E7E5E4;
  --white: #FFFFFF;
  --good: #15803D;
  --bad: #B91C1C;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 4px;
  --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; }
/* Lenis lleva su propio scroll suave (rueda de ratón) — el "smooth" nativo
   de arriba se desactiva cuando Lenis está activo para que no compitan los
   dos a la vez (se queda solo para las flechas del teclado, que Lenis no
   toca, y como red de seguridad si el script de Lenis no llega a cargar). */
html.lenis { scroll-behavior: auto; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--white);
  -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 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
ul, ol { padding-left: 1.2rem; }
::selection { background: var(--gold-light); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }
.section--alt { background: var(--cream); }
.eyebrow-label {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* =============================================================
   4. Header / nav
   ============================================================= */
.site-header { border-bottom: 1px solid var(--border); background: var(--white); position: sticky; top: 0; z-index: 100; }
.site-header__inner { position: relative; display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; gap: 12px; }
.brand { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.site-nav ul { list-style: none; display: flex; gap: 24px; padding: 0; margin: 0; flex-wrap: wrap; }
.site-nav a { font-size: 14px; font-weight: 500; color: var(--ink-2); transition: color 180ms var(--ease-out); }
.site-nav a:hover, .site-nav a.is-active { color: var(--ink); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; padding: 0; flex: none; }
.nav-toggle__bar { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-dropdown { position: relative; }
.nav-dropdown details { position: relative; }
.nav-dropdown summary {
  list-style: none; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--ink-2);
  display: flex; align-items: center; gap: 5px; transition: color 180ms var(--ease-out);
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 180ms var(--ease-out);
}
.nav-dropdown details[open] summary::after { transform: rotate(-135deg) translateY(2px); }
.nav-dropdown summary:hover, .nav-dropdown summary.is-active { color: var(--ink); }
.nav-dropdown__menu {
  list-style: none; margin: 0; padding: 8px; position: absolute; top: calc(100% + 14px); left: 0;
  min-width: 190px; background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 16px 32px -16px rgb(0 0 0 / 0.2); z-index: 50;
}
.nav-dropdown__menu li { margin: 0; }
.nav-dropdown__menu a { display: block; padding: 9px 10px; font-size: 14px; border-radius: 4px; color: var(--ink-2); }
.nav-dropdown__menu a:hover, .nav-dropdown__menu a.is-active { background: var(--cream); color: var(--ink); }

/* =============================================================
   5. Hero
   ============================================================= */
.hero { position: relative; background: var(--ink); color: var(--white); }
.hero h1 { color: var(--white); }
.hero-sub, .hero p { color: #E7E5E4; line-height: 1.6; }

/* Variante sencilla (sin foto) — la que está en producción */
.hero--home { padding: 72px 0 64px; text-align: center; }
.hero--home .container > .hero-sub { max-width: 560px; margin: 12px auto 0; font-size: 18px; }
.categoria-hero { padding: 56px 0; text-align: center; }
.categoria-hero .container > p { max-width: 560px; margin: 12px auto 0; font-size: 17px; }

/* Variante con foto (rediseño, solo se activa si hay .hero-bg dentro) */
.hero:has(.hero-bg) { overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; }
.hero-content { position: relative; z-index: 2; }

.hero--home:has(.hero-bg) { min-height: 82vh; display: flex; align-items: flex-end; padding: 80px 0 76px; text-align: left; }
.hero--home:has(.hero-bg) .hero-scrim { background: linear-gradient(90deg, rgba(28,25,23,.92) 0%, rgba(28,25,23,.72) 38%, rgba(28,25,23,.32) 68%, rgba(28,25,23,.15) 100%), linear-gradient(0deg, rgba(28,25,23,.55) 0%, rgba(28,25,23,0) 45%); }
.hero--home:has(.hero-bg) .hero-content { text-align: left; max-width: 640px; }
.hero--home:has(.hero-bg) h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 0 0 18px; }
.hero--home:has(.hero-bg) .hero-sub { font-size: 18px; max-width: 520px; margin: 0 0 30px; }
.hero--home:has(.hero-bg) .hero-content > * { animation: heroUp 700ms var(--ease-out) both; }
.hero--home:has(.hero-bg) .eyebrow-label { animation-delay: 0ms; }
.hero--home:has(.hero-bg) h1 { animation-delay: 90ms; }
.hero--home:has(.hero-bg) .hero-sub { animation-delay: 180ms; }
.hero--home:has(.hero-bg) .hero-cta-row { animation-delay: 280ms; }
@keyframes heroUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.hero-cta-standalone { text-align: center; padding-top: 32px; }

.btn-hero {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--ink) !important;
  font-weight: 700; font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 2px; transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.btn-hero:hover { background: var(--gold-light); transform: translateY(-2px); }

.categoria-hero:has(.hero-bg) { min-height: 42vh; display: flex; align-items: center; padding: 64px 0; }
.categoria-hero:has(.hero-bg) .hero-scrim { background: linear-gradient(180deg, rgba(28,25,23,.72) 0%, rgba(28,25,23,.82) 100%); }
.categoria-hero:has(.hero-bg) .hero-content { margin: 0 auto; }
.categoria-hero:has(.hero-bg) h1 { margin-bottom: 12px; }
.categoria-hero:has(.hero-bg) .hero-sub { max-width: 560px; margin: 0 auto; font-size: 17px; }

/* =============================================================
   4b. Trust strip
   ============================================================= */
.trust-strip { border-bottom: 1px solid var(--border); background: var(--cream); }
.trust-strip__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 64px; padding: 28px 0; text-align: center; }
.trust-item { display: flex; align-items: baseline; gap: 10px; }
.trust-item__num { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--gold); }
.trust-item__label { font-size: 13px; color: var(--ink-2); font-weight: 500; }

/* =============================================================
   6. Section heading
   ============================================================= */
.section-heading { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.section-heading p { font-size: 15px; }

/* =============================================================
   7. Category grid (home)
   ============================================================= */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* Variante sencilla (sin foto) — la que está en producción */
.category-entry {
  display: block; padding: 32px; border: 1px solid var(--border); border-radius: 10px;
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.category-entry:hover { border-color: var(--ink); transform: translateY(-3px); }
.category-entry h3 { margin-bottom: 8px; }
.category-entry p { font-size: 14px; margin-bottom: 16px; color: var(--ink-2); }
.category-entry__cta { font-size: 13px; font-weight: 600; color: var(--gold); }

/* Variante con foto (rediseño, solo se activa si hay .category-entry__img dentro) */
.category-entry:has(.category-entry__img) {
  position: relative; padding: 0; aspect-ratio: 4/5; border: none; overflow: hidden;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.category-entry:has(.category-entry__img):hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgb(28 25 23 / 0.28); border-color: transparent; }
.category-entry__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--cream); transition: transform 500ms var(--ease-out); }
.category-entry:hover .category-entry__img { transform: scale(1.06); }
.category-entry__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,25,23,0) 35%, rgba(28,25,23,.92) 100%); }
.category-entry__content { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 28px 32px; }
.category-entry__content h3 { color: var(--white); margin-bottom: 8px; }
.category-entry__content p { color: #E7E5E4; font-size: 14px; margin-bottom: 16px; }
.category-entry:has(.category-entry__img) .category-entry__cta { color: var(--gold-light); }

/* =============================================================
   8. Product card + grid
   ============================================================= */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.product-card {
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden; background: var(--white);
  display: flex; flex-direction: column;
  transition: border-color 220ms var(--ease-out), transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.product-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgb(28 25 23 / 0.22); }
.product-card__link { display: block; padding: 20px 18px 12px; flex: 1; }
.product-card img { width: 100%; aspect-ratio: 1/1; object-fit: contain; margin-bottom: 14px; background: var(--cream); border-radius: 4px; }
.product-card__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.product-card__badge { display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.product-card__rating { font-size: 12.5px; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.product-card__rating-count { font-weight: 400; opacity: .75; }
.product-card__title { font-size: 17px; margin-bottom: 6px; }
.product-card__desc { font-size: 13.5px; line-height: 1.5; color: var(--ink-2); }
.product-card__actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 18px 18px; }

.btn-comprar {
  display: inline-flex; align-items: center; gap: 6px; background: var(--ink); color: var(--white) !important;
  font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 2px; transition: background 180ms var(--ease-out);
  white-space: nowrap;
}
.btn-comprar:hover { background: var(--gold); }
.btn-comprar--grande { font-size: 15px; padding: 14px 28px; margin: 20px 0; }
.btn-comparar-mini {
  font-size: 12px; font-weight: 600; color: var(--ink-2); border: 1px solid var(--border);
  border-radius: 2px; padding: 9px 12px; transition: border-color 180ms, color 180ms;
}
.btn-comparar-mini:hover, .btn-comparar-mini.is-active { border-color: var(--ink); color: var(--ink); }

/* =============================================================
   9. Ficha (product page)
   ============================================================= */
.ficha { padding-top: 32px; padding-bottom: 64px; }
.ficha-breadcrumb { font-size: 13px; color: var(--ink-2); margin-bottom: 24px; }
.ficha-breadcrumb a { color: var(--ink-2); text-decoration: underline; }
.ficha-top { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
.ficha-galeria { background: var(--cream); border-radius: 8px; padding: 24px; display: flex; align-items: center; justify-content: center; }
.ficha-img-main { max-height: 420px; width: auto; margin: 0 auto; display: block; }

/* Fase 3: color grading WebGL (LUT). El <canvas> se superpone a la <img> y
   solo se hace visible cuando el grado de color ya está listo — si WebGL no
   está disponible se queda en opacity:0 para siempre y la foto original
   (sin tocar) es todo lo que se ve. */
.lut-wrap { position: relative; display: block; }
.ficha-galeria .lut-wrap { display: inline-block; max-height: 420px; }
.lut-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; /* para que encaje igual que la <img> de debajo cuando su caja fuerza un ratio (p.ej. las tarjetas 1/1) */
  pointer-events: none; opacity: 0; transition: opacity 500ms var(--ease-out);
}
.lut-canvas.is-ready { opacity: 1; }
.ficha-marca { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.ficha-nombre { margin-bottom: 16px; }
.ficha-precio { margin-bottom: 20px; }
.precio-actual { font-size: 28px; font-weight: 700; color: var(--ink); margin-right: 10px; }
.precio-antes { font-size: 16px; color: var(--ink-2); text-decoration: line-through; margin-right: 10px; }
.precio-nota { display: block; font-size: 13px; color: var(--ink-2); margin-top: 6px; }
.precio-nota--sin-precio { font-style: italic; }

.highlight-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.highlight-badge { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 10px 16px; min-width: 108px; }
.highlight-badge__label { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 4px; }
.highlight-badge__val { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); }

.ficha-radar, .ficha-specs, .ficha-editorial, .ficha-resenas, .ficha-comparar, .ficha-similares { margin-bottom: 48px; }
.score-bars { display: flex; flex-direction: column; gap: 14px; max-width: 520px; margin-top: 20px; }
.score-row { display: grid; grid-template-columns: 140px 1fr 44px; align-items: center; gap: 12px; }
.score-label { font-size: 13.5px; font-weight: 500; }
.score-track { height: 8px; background: var(--cream-alt); border-radius: 99px; overflow: hidden; }
.score-fill { height: 100%; background: var(--gold); border-radius: 99px; }
.score-val { font-size: 12px; color: var(--ink-2); text-align: right; }
.nota { font-size: 13px; color: var(--ink-2); margin-top: 12px; }

.editorial-table { width: 100%; border-collapse: collapse; }
.editorial-table th, .editorial-table td { text-align: left; padding: 12px 16px 12px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.editorial-table th { width: 40%; color: var(--ink-2); font-weight: 500; }
.editorial-table td { color: var(--ink); }
.specs-extra { margin-top: 16px; font-size: 14px; }
.specs-extra summary { cursor: pointer; font-weight: 600; margin-bottom: 8px; }
.specs-table-details summary { cursor: pointer; font-weight: 600; font-size: 14.5px; color: var(--ink); padding: 4px 0; }
.specs-table-details .specs-table { margin-top: 16px; }

.editorial-cuerpo { font-size: 16px; line-height: 1.7; }
.editorial-cuerpo p { margin-bottom: 1em; }
.editorial-cuerpo p:first-of-type::first-letter {
  font-family: var(--serif); font-weight: 700; color: var(--gold);
  float: left; font-size: 3.6em; line-height: 0.82; padding: 0.04em 0.08em 0 0;
}

.pull-quote {
  margin: 28px 0; padding: 4px 0 4px 28px; border-left: 3px solid var(--gold);
}
.pull-quote p {
  font-family: var(--serif); font-size: 22px; font-weight: 500; font-style: italic;
  color: var(--ink); line-height: 1.4; margin: 0 0 8px;
}
.pull-quote cite {
  display: block; font-style: normal; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
}

.compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 28px; }
.compare-col__title { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.compare-col--good .compare-col__title { color: var(--good); }
.compare-col--bad .compare-col__title { color: var(--bad); }
.compare-col ul { list-style: none; padding: 0; }
.compare-col li { position: relative; padding-left: 24px; margin-bottom: 12px; font-size: 14px; }
.compare-col--good li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 700; }
.compare-col--bad li::before { content: "✕"; position: absolute; left: 0; color: var(--bad); font-weight: 700; }

.resenas-resumen { font-size: 15px; }

.btn-comparar {
  display: inline-block; border: 1px solid var(--ink); color: var(--ink); font-weight: 600;
  font-size: 14px; padding: 12px 20px; border-radius: 2px; transition: background 180ms, color 180ms;
}
.btn-comparar:hover { background: var(--ink); color: var(--white); }

.aviso-afiliados { font-size: 12.5px; color: var(--ink-2); }

/* =============================================================
   10. Feature grid (guías)
   ============================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 36px; margin: 28px 0 40px; }
.feature-item { display: flex; gap: 14px; }
.feature-item__num { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--gold); line-height: 1; flex: none; }
.feature-item__title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.feature-item__desc { font-size: 13.5px; line-height: 1.5; }
.guia { max-width: 760px; }
.guia-intro { font-size: 17px; line-height: 1.6; margin: 16px 0 32px; }
.guia h2 { margin-top: 32px; }
.guia-lista { list-style: none; padding: 0; }
.guia-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.guia-item p { font-size: 14px; margin-top: 6px; }

/* =============================================================
   11. Comparador
   ============================================================= */
.comparador-vacio { text-align: center; padding: 48px 24px; background: var(--cream); border-radius: 8px; font-size: 15px; }
.comparador-vacio a { text-decoration: underline; }
.comparador-tabla-wrap { overflow-x: auto; }
table.comparador-tabla { width: 100%; border-collapse: collapse; min-width: 560px; }
table.comparador-tabla th, table.comparador-tabla td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; text-align: left; vertical-align: top; }
table.comparador-tabla th { width: 180px; color: var(--ink-2); font-weight: 500; }
table.comparador-tabla td.is-best { font-weight: 700; color: var(--good); }
.comparador-col-head img { width: 100%; max-width: 120px; aspect-ratio: 1/1; object-fit: contain; margin: 0 auto 10px; }
.comparador-col-head { text-align: center; }
.comparador-remove { font-size: 11px; color: var(--bad); margin-top: 6px; }

/* =============================================================
   12. Legal / cómo elegimos
   ============================================================= */
.legal, .como-elegimos { max-width: 720px; }
.legal p, .como-elegimos { margin-bottom: 1em; font-size: 15px; line-height: 1.7; }
.legal h1 { margin-bottom: 20px; }

/* =============================================================
   13. Footer
   ============================================================= */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 40px; }
.site-footer .aviso-afiliados { margin-bottom: 16px; }
.site-footer .aviso-afiliados a { text-decoration: underline; color: var(--ink); }
.site-footer__links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; margin-bottom: 16px; }
.site-footer__links a { color: var(--ink-2); text-decoration: underline; }
.site-footer__copy { font-size: 12px; color: var(--ink-2); }

/* =============================================================
   14. Responsive
   ============================================================= */
@media (min-width: 720px) {
  .ficha-top { grid-template-columns: 1fr 1fr; align-items: start; }
}
@media (max-width: 719px) {
  .feature-grid { grid-template-columns: 1fr; }
  .compare-cols { grid-template-columns: 1fr; }
  .score-row { grid-template-columns: 100px 1fr 36px; }

  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 4px 24px 20px; box-shadow: 0 12px 24px -12px rgb(0 0 0 / 0.15);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 2px; }
  .site-nav a { display: block; padding: 12px 0; font-size: 15px; }

  .nav-dropdown summary { padding: 12px 0; font-size: 15px; }
  .nav-dropdown__menu {
    position: static; box-shadow: none; border: none; border-left: 2px solid var(--border);
    border-radius: 0; margin: 0 0 4px 4px; padding: 0 0 4px 12px;
  }
  .nav-dropdown__menu a { padding: 10px 8px; }
}

/* =============================================================
   15. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .product-card, .category-entry, .btn-comprar, .btn-hero, .category-entry__img, .lut-canvas { transition: none; }
  .hero--home .hero-content > * { animation: none; }
}

@media (max-width: 719px) {
  .hero--home { min-height: 68vh; padding: 56px 0 48px; }
  .hero--home .hero-content { max-width: 100%; }
  .trust-strip__inner { gap: 20px 32px; }
}
