/* =============================================================
   1. Tokens  (un solo acento; claro y oscuro)
   Reglas de forma: botones y chips en píldora, contenedores 14px, campos 10px.
   ============================================================= */
:root {
  color-scheme: light dark;
  --bg: #f4f5f2;
  --surface: #ffffff;
  --surface-2: #ecefea;
  --ink: #16181a;
  --muted: #565d64;
  --line: #dde1dc;
  --accent: #c2410c;
  --accent-strong: #9a3412;
  --accent-text: #b23a0b;
  --on-accent: #ffffff;
  --best-bg: #dff0e6;
  --best-ink: #1b5a3c;
  --warn-bg: #fff3d1;
  --shadow: 0 1px 2px rgb(22 24 26 / .06), 0 8px 24px -12px rgb(22 24 26 / .18);
  --radius: 14px;
  --radius-sm: 10px;
  --sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1180px;
  --gutter: 20px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101214;
    --surface: #181b1e;
    --surface-2: #20242a;
    --ink: #eceeed;
    --muted: #a3aab1;
    --line: #2b3137;
    --accent-text: #ff9a66;
    --best-bg: #17352a;
    --best-ink: #86d9ab;
    --warn-bg: #3a3116;
    --shadow: 0 1px 2px rgb(0 0 0 / .4), 0 8px 24px -12px rgb(0 0 0 / .6);
  }
}

/* =============================================================
   2. Reset y base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scrollbar-color: var(--line) transparent; }
body {
  font-family: var(--sans); font-size: 16px; line-height: 1.6; color: var(--ink);
  background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: clip; caret-color: var(--accent);
  font-variant-numeric: tabular-nums;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, select, input { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.03em; text-wrap: balance; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.1rem; letter-spacing: -0.02em; }
::selection { background: var(--accent); color: var(--on-accent); }
:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 3px; border-radius: 6px; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; border: 3px solid var(--bg); }

/* =============================================================
   3. Utilidades
   ============================================================= */
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: var(--ink); color: var(--bg); z-index: 90; border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.muted { color: var(--muted); }
.fine { font-size: .82rem; color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 52ch; }
.lead-sm { color: var(--muted); max-width: 68ch; }
.more { font-weight: 600; color: var(--accent-text); }
.more:hover { text-decoration: underline; text-underline-offset: 3px; }
.links { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; }
.block { margin-block: clamp(2.5rem, 6vw, 4rem); }
.block-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.ico { width: 1em; height: 1em; flex: none; }
.ico-star { width: 16px; height: 16px; }

/* =============================================================
   4. Componentes
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem; white-space: nowrap;
  padding: .7rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: .95rem; line-height: 1.2;
  border: 1.5px solid transparent;
  transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), border-color 160ms var(--ease-out), color 160ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-buy { background: var(--accent); color: var(--on-accent); }
.btn-buy:hover { background: var(--accent-strong); }
.btn-buy.is-pending { background: var(--surface-2); color: var(--muted); cursor: not-allowed; white-space: normal; text-align: center; }
.btn-buy.is-pending:active { transform: none; }
.btn-ghost { border-color: var(--line); background: var(--surface); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-toggle { border-color: var(--line); background: var(--surface); }
.btn-toggle:hover { border-color: var(--ink); }
.btn-toggle[aria-pressed="true"] { background: var(--best-bg); border-color: var(--best-ink); color: var(--best-ink); }
.btn-toggle[aria-pressed="true"]::before, .cmp td.is-best::after {
  content: ""; width: .95em; height: .95em; background: currentColor; flex: none; display: inline-block;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M229.7 77.7l-128 128a8 8 0 01-11.4 0l-56-56a8 8 0 0111.4-11.4L96 188.7 218.3 66.3a8 8 0 0111.4 11.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M229.7 77.7l-128 128a8 8 0 01-11.4 0l-56-56a8 8 0 0111.4-11.4L96 188.7 218.3 66.3a8 8 0 0111.4 11.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sample-banner { background: var(--warn-bg); text-align: center; font-size: .85rem; padding: .5rem var(--gutter); }

.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.head-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; flex-wrap: wrap; }
.brand { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.04em; }
.nav { display: flex; gap: .2rem 1.3rem; flex-wrap: wrap; font-size: .92rem; font-weight: 500; }
.nav a { padding: .25rem 0; border-bottom: 2px solid transparent; color: var(--muted); transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); border-color: var(--accent); }

.site-footer { margin-top: 5rem; padding-block: 2.5rem; border-top: 1px solid var(--line); background: var(--surface-2); }
.footer-links { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; margin-block: 1rem; font-weight: 500; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.aviso { font-size: .88rem; color: var(--muted); background: var(--surface); border-radius: var(--radius-sm); padding: .85rem 1rem; box-shadow: var(--shadow); }
.aviso a { text-decoration: underline; text-underline-offset: 3px; }
.crumbs { font-size: .85rem; color: var(--muted); padding-block: 1rem .5rem; }
.crumbs a:hover { text-decoration: underline; }
.page-head { padding-block: 1rem 2rem; display: grid; gap: .8rem; }

/* Hero: texto a la izquierda, fotos reales a la derecha */
.hero { padding-block: clamp(1.5rem, 4vw, 3rem) 0; }
.hero-in { display: grid; gap: 2rem; align-items: center; }
.hero-copy { display: grid; gap: 1.2rem; }
.cta-row { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.hero-media { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: .8rem; aspect-ratio: 4 / 3; }
.hero-tile { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: block; }
.hero-tile img { width: 100%; height: 100%; object-fit: contain; padding: .6rem; }
.hero-tile.t0 { grid-row: 1 / 3; }
@media (prefers-reduced-motion: no-preference) {
  .hero-tile { animation: reveal 620ms var(--ease-out) both; }
  .hero-tile.t1 { animation-delay: 90ms; }
  .hero-tile.t2 { animation-delay: 180ms; }
  @keyframes reveal { from { clip-path: inset(0 0 100% 0 round 14px); opacity: 0; } to { clip-path: inset(0 0 0 0 round 14px); opacity: 1; } }
}

/* Calculadora */
.calc { margin-top: clamp(2rem, 5vw, 3.5rem); display: grid; gap: 1.5rem; background: var(--surface); border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.calc-sub { color: var(--muted); margin-bottom: 1rem; }
.seg-group { display: flex; flex-wrap: wrap; gap: .6rem; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span {
  display: inline-block; padding: .7rem 1.2rem; border: 1.5px solid var(--line); border-radius: 999px; font-weight: 600; background: var(--bg); cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), border-color 160ms var(--ease-out), color 160ms var(--ease-out);
}
.seg span:hover { border-color: var(--ink); }
.seg span:active { transform: scale(0.97); }
.seg input:checked + span { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.seg input:focus-visible + span { outline: 2px solid var(--accent-text); outline-offset: 3px; }
.calc-result { display: grid; align-content: center; }
.calc-out { display: grid; gap: .6rem; }
.calc-out strong { font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -0.03em; line-height: 1.15; }
.calc-out p { color: var(--muted); max-width: 52ch; }
.calc-out .cta-row { margin-top: .4rem; }

/* Categorías por tamaño */
.cat-panels { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.cat-panel { display: grid; grid-template-columns: 1fr 42%; align-items: center; gap: 1rem; background: var(--surface); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); transition: transform 200ms var(--ease-out); }
.cat-panel:hover { transform: translateY(-2px); }
.cat-panel:active { transform: scale(0.985); }
.cat-text { display: grid; gap: .4rem; }
.cat-text p { color: var(--muted); }
.cat-go { font-weight: 600; color: var(--accent-text); margin-top: .6rem; }
.cat-img { background: #fff; border-radius: var(--radius-sm); aspect-ratio: 4 / 3; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: contain; padding: .4rem; }

/* Lista de criterios (sin tarjetas repetidas) */
.look-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.look-list li { border-bottom: 1px solid var(--line); }
.look-list a { display: grid; gap: .1rem; padding: 1rem .2rem; transition: padding-left 200ms var(--ease-out); }
.look-list a:hover { padding-left: .6rem; }
.look-list strong { font-weight: 600; }
.look-list span { color: var(--muted); font-size: .92rem; }

/* Tarjetas de producto */
.grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.card { display: flex; flex-direction: column; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card-media { position: relative; display: block; background: #fff; aspect-ratio: 4 / 3; }
.card-media img { width: 100%; height: 100%; object-fit: contain; padding: .6rem; }
.ph-wrap { display: grid; place-items: center; height: 100%; min-height: 160px; color: #c8cdc7; }
.ph { width: 96px; height: 96px; }
.ph-big { aspect-ratio: 4 / 3; background: var(--surface-2); border-radius: var(--radius); }
.ph-big .ph { width: 140px; height: 140px; }
.tag-ej { position: absolute; left: .7rem; top: .7rem; background: var(--warn-bg); border-radius: 999px; padding: .1rem .6rem; font-size: .72rem; font-weight: 600; color: #3b3000; }
.card-off { position: absolute; right: .7rem; top: .7rem; }
.card-body { display: flex; flex-direction: column; gap: .35rem; padding: 1.1rem 1.1rem 1.2rem; flex: 1; }
.card-body h3 a:hover { color: var(--accent-text); }
.card-meta { color: var(--muted); font-size: .85rem; }
.card-line { color: var(--muted); font-size: .9rem; display: flex; flex-wrap: wrap; gap: .1rem .9rem; }
.card-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: .5rem; margin-top: auto; padding-top: .6rem; }
.card-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .3rem; }
.card-actions .btn { padding: .55rem .95rem; font-size: .88rem; flex: 1; }
.card[hidden] { display: none; }
.nota-pill { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.03em; background: var(--best-bg); color: var(--best-ink); border-radius: var(--radius-sm); padding: .1rem .6rem; }
.nota-pill small { font-size: .7rem; font-weight: 600; margin-left: 1px; }

/* Precio */
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .1rem .6rem; }
.price-now { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.price-old { color: var(--muted); font-size: .9rem; }
.price-note { flex-basis: 100%; font-size: .8rem; color: var(--muted); }
.badge-off { background: var(--accent); color: var(--on-accent); font-size: .75rem; font-weight: 700; padding: .1rem .5rem; border-radius: 999px; }
.ficha-head .price-now { font-size: 2.1rem; }

.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.toolbar select { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .4rem .6rem; background: var(--surface); margin-left: .4rem; }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem; }
.cross { margin-top: 2.5rem; color: var(--muted); }
.cross a { color: var(--accent-text); font-weight: 600; }
.cost-input { margin-block: 1rem; }
.cost-input input { width: 6rem; padding: .4rem .6rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); margin-left: .4rem; }
.pending { padding: 1rem 1.2rem; border: 1.5px dashed var(--line); border-radius: var(--radius); }
[id] { scroll-margin-top: 5rem; }

/* Ficha */
.ej-note { background: var(--warn-bg); border-radius: var(--radius-sm); padding: .7rem 1rem; margin-bottom: 1rem; font-size: .9rem; color: #3b3000; }
.ficha-top { display: grid; gap: 1.8rem; grid-template-columns: 1fr; margin-bottom: 2rem; }
.g-main { width: 100%; border-radius: var(--radius); background: #fff; aspect-ratio: 4 / 3; object-fit: contain; box-shadow: var(--shadow); }
.g-thumbs { list-style: none; padding: 0; display: flex; gap: .5rem; margin-top: .8rem; }
.g-thumbs img { width: 64px; height: 64px; object-fit: contain; background: #fff; border-radius: 8px; box-shadow: var(--shadow); }
.ficha-head { display: grid; gap: .7rem; align-content: start; }
.rating { font-weight: 600; display: flex; align-items: center; gap: .35rem; }
.rating .ico-star, .stars .ico-star { color: #d98b0d; }
.stars { display: inline-flex; gap: 1px; vertical-align: -2px; }
.cta-row .btn-buy { padding: .9rem 1.6rem; font-size: 1.02rem; }
.ficha-sec { margin-block: 2.8rem; }
.radar-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: center; }
.radar-fig { display: grid; justify-items: center; gap: .5rem; }
.radar { width: 100%; max-width: 380px; height: auto; }
.radar-ring { fill: none; stroke: var(--line); stroke-width: 1; }
.radar-axis { stroke: var(--line); stroke-width: 1; }
.radar-label { font-size: 11px; font-weight: 500; fill: var(--muted); font-family: var(--sans); }
.score-bars { list-style: none; padding: 0; display: grid; gap: .7rem; }
.score-bars li { display: grid; grid-template-columns: 9.5rem 1fr 2rem; gap: .7rem; align-items: center; font-size: .92rem; }
.score-bars b { text-align: right; }
.bar { display: block; height: 6px; }
.bar i { display: block; height: 100%; background: var(--accent); border-radius: 99px; }
.nota-big { margin-top: 1.2rem; }
.nota-big b { font-size: 2rem; letter-spacing: -0.04em; color: var(--best-ink); }

.spec-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; font-size: .95rem; box-shadow: var(--shadow); }
.spec-table th, .spec-table td { text-align: left; padding: .7rem 1rem; }
.spec-table tbody tr + tr th, .spec-table tbody tr + tr td { border-top: 1px solid var(--line); }
.spec-table .grp th { background: var(--surface-2); font-size: .8rem; font-weight: 600; color: var(--muted); }
.spec-table th[scope="row"] { font-weight: 500; width: 45%; }
.spec-table thead th { background: var(--surface-2); font-weight: 600; }
.specs-extra { margin-top: .8rem; }
.specs-extra summary { cursor: pointer; font-weight: 600; }
.specs-extra dl { display: grid; grid-template-columns: max-content 1fr; gap: .3rem 1rem; margin-top: .6rem; }
.specs-extra dt { font-weight: 600; }

.prose p { margin-bottom: 1rem; max-width: 68ch; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1rem; display: grid; gap: .4rem; max-width: 68ch; }
.prose-page { max-width: 820px; }
.pc { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-block: 1.5rem; }
.pc-col { border-radius: var(--radius); padding: 1.1rem 1.3rem; background: var(--surface); box-shadow: var(--shadow); }
.pc-col ul { list-style: none; padding: 0; display: grid; gap: .4rem; margin-top: .5rem; }
.pc-col li { padding-left: 1.4rem; position: relative; }
.pc-pro li::before { content: "+"; position: absolute; left: 0; color: var(--best-ink); font-weight: 800; }
.pc-con li::before { content: "-"; position: absolute; left: .2rem; color: var(--accent-text); font-weight: 800; }
.pc-pro h3 { color: var(--best-ink); }
.pc-con h3 { color: var(--accent-text); }
.ideal { margin-bottom: 1.2rem; background: var(--best-bg); color: var(--best-ink); padding: .8rem 1rem; border-radius: var(--radius-sm); }
.reviews { list-style: none; padding: 0; display: grid; gap: 1rem; max-width: 68ch; }
.check { padding-left: 1.2rem; display: grid; gap: .5rem; max-width: 68ch; }
.picks { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.pick-title { margin-bottom: .6rem; color: var(--muted); font-size: .95rem; font-weight: 600; }
.faq details { background: var(--surface); border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin-bottom: .6rem; box-shadow: var(--shadow); max-width: 68ch; }
.faq summary { font-weight: 600; cursor: pointer; }
.faq p { margin-top: .6rem; color: var(--muted); }
.offer-cta { margin-top: .6rem; }

/* Comparador */
.picker { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.pick-group { display: grid; gap: .5rem; margin-bottom: 1rem; }
.pick-group h3 { font-size: .85rem; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.chip { padding: .5rem .95rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); font-weight: 500; font-size: .88rem; display: inline-block;
  transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), border-color 160ms var(--ease-out); }
.chip:hover { border-color: var(--ink); }
.chip:active { transform: scale(0.97); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.chip:disabled { opacity: .45; cursor: not-allowed; }
.cmp-radar { display: grid; justify-items: center; gap: .8rem; margin-block: 1.5rem; }
.legend { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; justify-content: center; font-size: .88rem; font-weight: 500; }
.legend i { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: .4rem; vertical-align: -1px; }
.cmp-scroll { overflow-x: auto; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.cmp { border-collapse: collapse; width: 100%; min-width: 560px; }
.cmp th, .cmp td { padding: .7rem 1rem; text-align: left; vertical-align: top; }
.cmp tbody tr + tr th, .cmp tbody tr + tr td { border-top: 1px solid var(--line); }
.cmp thead th { border-bottom: 2px solid var(--ink); }
.cmp tbody th[scope="row"] { font-weight: 500; background: var(--surface-2); position: sticky; left: 0; min-width: 9rem; }
.cmp .grp th { background: var(--surface-2); font-size: .8rem; font-weight: 600; color: var(--muted); position: static; }
.cmp td.is-best { background: var(--best-bg); font-weight: 700; color: var(--best-ink); }
.cmp td.is-best::after { margin-left: .35rem; vertical-align: -1px; }
.cmp-head { display: grid; gap: .5rem; min-width: 150px; }
.cmp-head a.name { font-weight: 700; letter-spacing: -0.02em; }
.cmp-head .btn { padding: .55rem .9rem; font-size: .85rem; }
.cmp-remove { justify-self: start; font-size: .8rem; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

.cmp-tray { position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 60; display: flex; align-items: center; gap: .7rem;
  background: var(--ink); color: var(--bg); padding: .6rem .7rem .6rem 1.1rem; border-radius: 999px; box-shadow: 0 10px 30px rgb(0 0 0 / .3); font-size: .9rem; font-weight: 500; max-width: calc(100% - 24px); }
.cmp-tray[hidden] { display: none; }
.cmp-tray .btn { padding: .45rem .9rem; font-size: .85rem; }
.cmp-tray .btn-ghost { background: transparent; color: var(--bg); border-color: color-mix(in srgb, var(--bg) 40%, transparent); }

/* =============================================================
   8. Responsive (mobile-first)
   ============================================================= */
@media (min-width: 540px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .pc { grid-template-columns: 1fr 1fr; }
  .cat-panels { grid-template-columns: repeat(2, 1fr); }
  .look-list { grid-template-columns: repeat(2, 1fr); column-gap: 2.5rem; }
}
@media (min-width: 720px) {
  :root { --gutter: 28px; }
  .picks { grid-template-columns: repeat(2, 1fr); }
  .radar-grid { grid-template-columns: 1fr 1fr; }
  .calc { grid-template-columns: 1fr 1.1fr; gap: 3rem; }
}
@media (min-width: 960px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .hero-in { grid-template-columns: 1fr 1.05fr; gap: 3rem; }
  .ficha-top { grid-template-columns: 1.05fr 1fr; gap: 3rem; }
}
@media (max-width: 539px) {
  .cat-panel { grid-template-columns: 1fr; }
  .cat-img { order: -1; }
}

/* =============================================================
   9. Movimiento reducido (solo lo intrusivo)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cat-panel:hover { transform: none; }
  .look-list a:hover { padding-left: .2rem; }
}

/* Páginas legales */
.legal h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: .6rem; }
.legal ul { margin-bottom: 1rem; }
.legal a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }
.legal .cmp-scroll { margin-block: 1rem; }

/* Ilustraciones propias por tipo de airfryer */
.art { width: 100%; max-width: 200px; height: auto; color: var(--muted); }
.art .art-accent { stroke: var(--accent-text); }
.art-wrap { display: grid; place-items: center; height: 100%; min-height: 150px; background: var(--surface-2); padding: 1rem; }
.art-big { aspect-ratio: 4 / 3; border-radius: var(--radius); }
.art-big .art { max-width: 320px; }
.card-media { background: var(--surface-2); }
.card-foot { justify-content: flex-end; }
.hero-tile { background: var(--surface); display: grid; place-items: center; align-content: center; gap: .6rem; padding: 1rem; font-weight: 600; text-align: center; transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out); }
.hero-tile:hover { transform: translateY(-2px); }
.hero-tile:active { transform: scale(0.98); }
.hero-tile .art { max-width: 190px; }
.hero-tile.t0 .art { max-width: 240px; }
.cat-img { background: var(--surface-2); display: grid; place-items: center; }
.cat-img .art { max-width: 160px; }
