/* =============================================================================
   Stand Mixer Lab — site.css
   Single stylesheet, sectioned. Light editorial theme, premium and calm.
   1. Tokens        5. Components        9. Comparator
   2. Reset/base    6. Layout/sections  10. Responsive
   3. Utilities     7. Ficha (product)  11. Reduced motion / print
   4. Typography    8. Charts (radar)
   ============================================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --paper:      #f7f3ec;
  --paper-2:    #fffdf9;
  --paper-3:    #efe7d9;
  --ink:        #1d1813;
  --ink-2:      #5c5348;
  --ink-3:      #8a7f70;
  --line:       #ddd2c0;
  --line-2:     #e9e0d1;

  --accent:     #c2410c;
  --accent-600: #9a3412;
  --accent-ink: #fff8f3;
  --accent-soft:#f6ddcf;

  --good:       #3f6212;
  --good-soft:  #e7efd8;
  --bad:        #9f1239;
  --bad-soft:   #f5dce2;
  --star:       #b45309;

  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-1: 0 1px 2px rgba(29,24,19,.05), 0 6px 20px -12px rgba(29,24,19,.18);
  --shadow-2: 0 2px 6px rgba(29,24,19,.06), 0 22px 48px -24px rgba(29,24,19,.28);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* data-viz categorical palette (comparator radar overlays) */
  --c1: #c2410c; --c2: #0f766e; --c3: #a16207; --c4: #6d28d9; --c5: #1d4ed8; --c6: #4d7c0f;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

/* Inline icons: every text-context SVG is sized explicitly (gotcha E.1).
   Charts/gallery opt out below by living outside these contexts. */
.btn svg, .chip svg, p svg, li svg, h1 svg, h2 svg, h3 svg, h4 svg,
summary svg, .rating-line svg, .buybox__hub svg, .highlight-line svg,
.review__verified svg, .cat-tile svg, .method__item svg, .footer-grid svg {
  width: 1.1em; height: 1.1em; flex: none; display: inline-block; vertical-align: -0.14em;
}
.stars svg { width: 15px; height: 15px; vertical-align: -0.14em; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -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.015em; font-family: var(--serif); font-weight: 560; }
ul, ol { list-style: none; }
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;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 999;
  padding: .6rem 1rem; background: var(--ink); color: var(--paper-2);
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.eyebrow {
  font-family: var(--sans); font-weight: 650; font-size: .72rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent-600);
}
.muted { color: var(--ink-2); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.02rem; font-family: var(--sans); font-weight: 680; letter-spacing: 0; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-2); line-height: 1.55; }
.prose { max-width: 66ch; }
.prose p + p { margin-top: 1rem; }
.prose h2 { margin: 2.4rem 0 .8rem; }
.prose h3 { margin: 1.8rem 0 .6rem; }
.prose a { color: var(--accent-600); text-decoration: underline; text-underline-offset: 2px; }
.prose ul { list-style: disc; padding-left: 1.2rem; }
.prose li { margin: .3rem 0; }

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

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.25rem; border-radius: 999px; font-weight: 620; font-size: .95rem;
  border: 1px solid transparent; transition: transform .25s var(--ease-out), background .25s, box-shadow .25s, border-color .25s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-1); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-ghost { background: var(--paper-2); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-3); transform: translateY(-2px); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: .95rem 1.6rem; font-size: 1rem; }
.btn-sm { padding: .5rem .85rem; font-size: .82rem; }

/* Chips / filters */
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem .8rem; border-radius: 999px; font-size: .82rem; font-weight: 560;
  background: var(--paper-2); border: 1px solid var(--line); color: var(--ink-2);
  transition: all .2s var(--ease-out);
}
.chip:hover { border-color: var(--ink-3); color: var(--ink); }
.chip[aria-pressed="true"], .chip.is-active { background: var(--ink); color: var(--paper-2); border-color: var(--ink); }

/* Star rating */
.stars { display: inline-flex; align-items: center; gap: .12rem; color: var(--star); }
.stars svg { width: 15px; height: 15px; }
.rating-line { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--ink-2); }
.rating-line b { color: var(--ink); font-weight: 680; }

/* Price block */
.price { display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap; }
.price-now { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.price-was { font-size: .95rem; color: var(--ink-3); text-decoration: line-through; }
.price-note { display: block; font-size: .76rem; color: var(--ink-3); margin-top: .3rem; }
.badge-deal {
  display: inline-block; padding: .18rem .5rem; border-radius: 6px;
  background: var(--good-soft); color: var(--good); font-size: .74rem; font-weight: 700;
  letter-spacing: .02em;
}

/* Cards */
.card {
  background: var(--paper-2); border: 1px solid var(--line-2); border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

/* Mixer card (grids) */
.grid-cards { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); }
.mixer-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--line-2); border-radius: var(--radius);
  box-shadow: var(--shadow-1); transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.mixer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.mixer-card__media {
  position: relative; aspect-ratio: 4 / 3; background: var(--paper-3);
  display: grid; place-items: center; padding: 1.1rem;
}
.mixer-card__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.mixer-card__cat {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  padding: .22rem .55rem; border-radius: 6px; background: rgba(29,24,19,.82); color: var(--paper-2);
  font-size: .68rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase;
}
.mixer-card__body { padding: 1.05rem 1.15rem 1.2rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.mixer-card__brand { font-size: .74rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.mixer-card__name { font-family: var(--serif); font-size: 1.06rem; font-weight: 560; line-height: 1.25; }
.mixer-card__name a:hover { color: var(--accent-600); }
.mixer-card__spectags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .1rem; }
.spectag { font-size: .74rem; color: var(--ink-2); background: var(--paper); border: 1px solid var(--line-2); border-radius: 6px; padding: .2rem .45rem; }
.mixer-card__foot { margin-top: auto; display: flex; flex-direction: column; gap: .6rem; padding-top: .5rem; }
.card-price-muted { font-size: .84rem; font-weight: 600; color: var(--ink-3); }
.mixer-card__actions { display: flex; gap: .5rem; }
.mixer-card__actions .btn { flex: 1; }

/* Section heading */
.section { padding-block: clamp(2.6rem, 6vw, 4.6rem); }
.section--tint { background: var(--paper-3); }
.section-head { max-width: 62ch; margin-bottom: 1.8rem; }
.section-head h2 { margin-top: .4rem; }
.section-head p { margin-top: .6rem; }
.section-head--between { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; max-width: none; }

/* Breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; color: var(--ink-3); padding-block: 1.1rem; }
.crumbs a:hover { color: var(--accent-600); }
.crumbs span { color: var(--line); }

/* Callout / disclosure */
.disclosure {
  font-size: .8rem; color: var(--ink-2); background: var(--paper-3);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: .8rem 1rem;
}
.disclosure--inline { background: none; border: 0; padding: .4rem 0; color: var(--ink-3); }

/* =============================================================
   6. Layout — header / nav / footer / hero
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
}
@supports not (backdrop-filter: blur(10px)) { .site-header { background: var(--paper); } }
.nav { display: flex; align-items: center; gap: 1.2rem; height: 66px; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--serif); font-weight: 600; font-size: 1.12rem; letter-spacing: -.01em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; flex: none;
}
.brand__mark svg { width: 18px; height: 18px; }
.nav__links { display: flex; align-items: center; gap: .3rem; margin-left: auto; }
.nav__links a {
  padding: .5rem .7rem; border-radius: 8px; font-size: .9rem; font-weight: 520; color: var(--ink-2);
  transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); background: var(--paper-3); }
.nav__links a.nav-cta, .nav__links a.nav-cta:hover {
  color: var(--accent-ink); background: var(--accent); font-weight: 640;
}
.nav__links a.nav-cta:hover { background: var(--accent-600); }
.nav__toggle { display: none; width: 42px; height: 42px; border-radius: 9px; border: 1px solid var(--line); }
.nav__toggle svg { width: 20px; height: 20px; margin-inline: auto; }

/* Hero */
.hero { padding-block: clamp(2.8rem, 7vw, 5.4rem) clamp(2rem, 5vw, 3.4rem); }
.hero__grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.hero h1 { margin-top: .5rem; }
.hero .lede { margin-top: 1rem; max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.hero__stats { display: flex; gap: 1.8rem; margin-top: 2rem; flex-wrap: wrap; }
.hero__stat b { display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 600; }
.hero__stat span { font-size: .82rem; color: var(--ink-2); }
.hero__media {
  border-radius: var(--radius); overflow: hidden; background: var(--paper-3);
  border: 1px solid var(--line-2); aspect-ratio: 5 / 4; display: grid; place-items: center; padding: 2rem;
}
.hero__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

/* How we test strip */
.method { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.method__item { padding: 1.2rem; background: var(--paper-2); border: 1px solid var(--line-2); border-radius: var(--radius-sm); }
.method__item h4 { margin-bottom: .35rem; }
.method__item p { font-size: .88rem; color: var(--ink-2); }
.method__num { font-family: var(--serif); color: var(--accent); font-size: 1.1rem; }

/* Category entries */
.cat-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cat-tile {
  display: block; padding: 1.3rem; border-radius: var(--radius); border: 1px solid var(--line-2);
  background: var(--paper-2); transition: transform .28s var(--ease-out), box-shadow .28s;
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.cat-tile h3 { font-size: 1.14rem; }
.cat-tile p { font-size: .86rem; color: var(--ink-2); margin-top: .35rem; }
.cat-tile__count { font-size: .78rem; color: var(--accent-600); font-weight: 640; margin-top: .7rem; display: inline-block; }

/* Footer */
.site-footer { background: var(--ink); color: #d9cfbf; padding-block: 2.8rem 2rem; margin-top: 3rem; }
.site-footer a { color: #d9cfbf; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 1.6rem 2rem; grid-template-columns: 1.4fr repeat(3, 1fr); }
.footer-grid h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .7rem; }
.footer-grid ul { display: grid; gap: .4rem; font-size: .88rem; }
.footer-brand { font-family: var(--serif); font-size: 1.1rem; color: #fff; }
.footer-note { font-size: .78rem; color: #a99e8c; margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); }

/* =============================================================
   7. Ficha (product page)
   ============================================================= */
.ficha { padding-block: 1rem 2rem; }
.ficha__top { display: grid; gap: clamp(1.4rem, 4vw, 2.6rem); align-items: start; }

/* gallery */
.gallery__main {
  aspect-ratio: 1 / 1; background: var(--paper-2); border: 1px solid var(--line-2); border-radius: var(--radius);
  display: grid; place-items: center; padding: 1.6rem; overflow: hidden;
}
.gallery__main img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.gallery__thumbs { display: flex; gap: .55rem; margin-top: .7rem; flex-wrap: wrap; }
.gallery__thumbs button {
  width: 62px; height: 62px; border-radius: 9px; border: 1px solid var(--line); background: var(--paper-2);
  padding: 5px; overflow: hidden; transition: border-color .2s, transform .2s;
}
.gallery__thumbs button:hover { transform: translateY(-2px); }
.gallery__thumbs button[aria-current="true"] { border-color: var(--accent); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

/* head / buy */
.ficha__brand { font-size: .78rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.ficha__name { margin: .35rem 0 .6rem; font-size: clamp(1.5rem, 3.4vw, 2.15rem); }
.ficha__meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.buybox {
  margin-top: 1.1rem; padding: 1.1rem; border: 1px solid var(--line-2); border-radius: var(--radius);
  background: var(--paper-2); box-shadow: var(--shadow-1);
}
.buybox .price { margin-bottom: .2rem; }
.buybox .btn { margin-top: .8rem; }
.buybox__hub { font-size: .8rem; color: var(--ink-2); margin-top: .7rem; }
.highlight-line {
  margin-top: 1rem; padding: .8rem 1rem; border-left: 3px solid var(--accent);
  background: var(--accent-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .92rem; color: var(--accent-600); font-weight: 560;
}

/* section blocks within ficha */
.ficha-block { padding-block: clamp(1.8rem, 4vw, 2.8rem); border-top: 1px solid var(--line-2); }
.ficha-block > h2 { margin-bottom: 1rem; }
.ficha-block__note { font-size: .78rem; color: var(--ink-3); margin-top: .6rem; }

/* spec table */
.spec-table { font-size: .92rem; }
.spec-table .spec-group th {
  text-align: left; font-family: var(--sans); font-weight: 700; color: var(--ink-2);
  padding: 1.4rem .4rem .4rem; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  width: auto; border-bottom: 2px solid var(--line);
}
.spec-table tbody:first-child .spec-group th { padding-top: .2rem; }
.spec-table th, .spec-table td { text-align: left; padding: .62rem .4rem; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.spec-table td, .spec-table tbody th { width: 50%; }
.spec-table > tbody > tr > th { font-weight: 520; color: var(--ink-2); }
.spec-table td { font-weight: 520; }
.spec-table td.is-empty { color: var(--ink-3); }
.specs-extra { margin-top: 1rem; }
.specs-extra summary { cursor: pointer; font-weight: 640; font-size: .9rem; color: var(--ink-2); padding: .5rem 0; }
.specs-extra summary:hover { color: var(--ink); }

/* pros / cons */
.proscons { display: grid; gap: 1.2rem; grid-template-columns: 1fr 1fr; margin-top: 1.2rem; }
.proscons__col { padding: 1.1rem 1.2rem; border-radius: var(--radius-sm); border: 1px solid var(--line-2); }
.proscons__col--pro { background: var(--good-soft); border-color: #d3e0b8; }
.proscons__col--con { background: var(--bad-soft); border-color: #ecc7d1; }
.proscons__col h3 { font-family: var(--sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .7rem; }
.proscons__col--pro h3 { color: var(--good); }
.proscons__col--con h3 { color: var(--bad); }
.proscons li { display: flex; gap: .55rem; font-size: .9rem; margin: .5rem 0; line-height: 1.45; }
.proscons li svg { width: 1.05em; height: 1.05em; flex: none; margin-top: .18em; }
.proscons__col--pro li svg { color: var(--good); }
.proscons__col--con li svg { color: var(--bad); }
.ideal-for { margin-top: 1.2rem; font-size: .98rem; }
.ideal-for strong { font-family: var(--serif); font-weight: 600; }

/* reviews */
.review { padding: 1rem 0; border-bottom: 1px solid var(--line-2); }
.review__head { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; font-size: .85rem; }
.review__author { font-weight: 640; }
.review__verified { color: var(--good); font-size: .76rem; display: inline-flex; align-items: center; gap: .25rem; }
.review__verified svg { width: 1em; height: 1em; flex: none; }
.review__title { font-family: var(--serif); font-weight: 600; margin: .4rem 0 .2rem; }
.review__text { font-size: .9rem; color: var(--ink-2); }

/* similar strip */
.similar { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); margin-top: 1rem; }

/* =============================================================
   8. Charts — radar (hand-drawn SVG)
   ============================================================= */
.radar { width: 100%; max-width: 460px; margin-inline: auto; }
.radar-wrap { display: grid; gap: 1.2rem; }
@media (min-width: 720px) { .radar-wrap { grid-template-columns: minmax(0, 460px) 1fr; align-items: center; } }
.radar svg { width: 100%; height: auto; overflow: visible; }
.radar .axis-line { stroke: var(--line); stroke-width: 1; }
.radar .grid-ring { fill: none; stroke: var(--line-2); stroke-width: 1; }
.radar .axis-label { font-family: var(--sans); font-size: 10.5px; font-weight: 600; fill: var(--ink-2); }
.radar .poly { fill: var(--accent); fill-opacity: .16; stroke: var(--accent); stroke-width: 2; stroke-linejoin: round; }
.radar .dot { fill: var(--accent); }
.score-legend { display: flex; flex-wrap: wrap; gap: .5rem 1rem; }
.score-legend li { display: flex; align-items: center; gap: .45rem; font-size: .86rem; color: var(--ink-2); }
.score-legend .sw { width: 12px; height: 12px; border-radius: 3px; flex: none; }
.score-legend b { color: var(--ink); font-variant-numeric: tabular-nums; }

/* =============================================================
   9. Comparator
   ============================================================= */
.cmp-intro { margin-bottom: 1.4rem; }

/* picker */
.cmp-picker { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); margin-bottom: 1.6rem; }
.cmp-pick {
  display: flex; gap: .7rem; align-items: center; text-align: left; padding: .7rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper-2);
  transition: border-color .2s, transform .2s;
}
.cmp-pick:hover { border-color: var(--ink-3); transform: translateY(-2px); }
.cmp-pick[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-soft); }
.cmp-pick img { width: 46px; height: 46px; object-fit: contain; mix-blend-mode: multiply; flex: none; }
.cmp-pick span { font-size: .84rem; font-weight: 560; line-height: 1.25; }
.cmp-pick small { display: block; color: var(--ink-3); font-weight: 500; }

/* selected tray */
.cmp-tray { display: flex; gap: .8rem; flex-wrap: wrap; align-items: stretch; margin-bottom: 1.4rem; }
.cmp-slot {
  position: relative; width: 150px; padding: .8rem; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--paper-2); display: flex; flex-direction: column; gap: .4rem;
}
.cmp-slot img { width: 100%; aspect-ratio: 1; object-fit: contain; mix-blend-mode: multiply; }
.cmp-slot span { font-size: .78rem; font-weight: 560; line-height: 1.2; }
.cmp-slot__remove {
  position: absolute; top: -9px; right: -9px; width: 24px; height: 24px; border-radius: 999px;
  background: var(--ink); color: var(--paper-2); display: grid; place-items: center; font-size: 14px; line-height: 1;
  box-shadow: var(--shadow-1);
}
.cmp-slot__remove:hover { background: var(--accent); }
.cmp-slot--empty { border-style: dashed; align-items: center; justify-content: center; color: var(--ink-3); font-size: .8rem; text-align: center; min-height: 150px; }
.cmp-empty { padding: 2.4rem 1rem; text-align: center; color: var(--ink-2); border: 1px dashed var(--line); border-radius: var(--radius); }

/* overlay radar */
.cmp-radar { margin: 1.6rem 0 2rem; }
.cmp-radar .radar { max-width: 520px; }
.cmp-radar-legend { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; justify-content: center; margin-top: 1rem; }
.cmp-radar-legend li { display: flex; align-items: center; gap: .45rem; font-size: .86rem; }
.cmp-radar-legend .sw { width: 14px; height: 14px; border-radius: 4px; flex: none; }

/* compare table */
.cmp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line-2); border-radius: var(--radius); }
.cmp-table { min-width: 620px; font-size: .9rem; }
.cmp-table th, .cmp-table td { padding: .8rem .9rem; border-bottom: 1px solid var(--line-2); text-align: left; vertical-align: top; }
.cmp-table thead th { position: sticky; top: 0; background: var(--paper-2); z-index: 2; }
.cmp-table thead .th-prod { min-width: 170px; }
.cmp-table thead img { width: 74px; height: 74px; object-fit: contain; mix-blend-mode: multiply; margin-bottom: .4rem; }
.cmp-table thead .th-name { font-family: var(--serif); font-size: .92rem; font-weight: 560; display: block; line-height: 1.2; }
.cmp-table tbody th, .cmp-table tbody th { font-weight: 520; color: var(--ink-2); background: var(--paper); width: 190px; position: sticky; left: 0; }
.cmp-table tr:hover td { background: color-mix(in srgb, var(--accent-soft) 30%, transparent); }
.cmp-table td.is-best { background: var(--good-soft); font-weight: 680; }
.cmp-table td.is-best::after { content: " ▲"; color: var(--good); font-size: .7em; }
.cmp-table td.is-empty { color: var(--ink-3); }
.cmp-table .row-buy td { padding-top: 1rem; }
.cmp-share { display: flex; gap: .6rem; align-items: center; margin-top: 1rem; font-size: .84rem; color: var(--ink-2); flex-wrap: wrap; }

/* floating compare bar (site-wide) */
.compare-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: var(--ink); color: var(--paper-2);
  transform: translateY(110%); transition: transform .35s var(--ease-out);
  box-shadow: 0 -10px 40px -18px rgba(0,0,0,.5);
}
.compare-bar.is-open { transform: translateY(0); }
.compare-bar__inner { display: flex; align-items: center; gap: 1rem; padding: .8rem 0; flex-wrap: wrap; }
.compare-bar__count { font-size: .88rem; }
.compare-bar__count b { font-family: var(--serif); font-size: 1.1rem; }
.compare-bar__thumbs { display: flex; gap: .4rem; margin-right: auto; }
.compare-bar__thumbs img { width: 38px; height: 38px; object-fit: contain; background: var(--paper-2); border-radius: 6px; padding: 3px; }
.compare-bar .btn-primary { background: var(--accent); }
.compare-bar__clear { font-size: .82rem; color: #d9cfbf; text-decoration: underline; }

/* =============================================================
   10. Responsive
   ============================================================= */
@media (min-width: 860px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .ficha__top { grid-template-columns: minmax(0, 440px) 1fr; }
}
@media (max-width: 859px) {
  .nav__links {
    position: fixed; inset: 66px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--paper-2); border-bottom: 1px solid var(--line); padding: .8rem var(--gutter) 1.2rem;
    gap: .2rem; margin-left: 0; transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s; box-shadow: var(--shadow-2);
  }
  .nav__links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__links a { padding: .8rem .6rem; font-size: .98rem; }
  .nav__toggle { display: grid; place-items: center; margin-left: auto; }
}
@media (max-width: 719px) {
  .proscons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 1.2rem; }
}
@media (max-width: 479px) {
  .footer-grid { grid-template-columns: 1fr; }
  .price-now { font-size: 1.3rem; }
}

/* =============================================================
   11. Reduced motion / print
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .compare-bar { transition: none; }
}
@media print {
  .site-header, .site-footer, .compare-bar, .buybox .btn, .nav__toggle { display: none; }
  body { background: #fff; }
}

/* small entrance for cards — functional micro, not gated by reduced-motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   12. SEO / GEO / conversion blocks
   ============================================================= */

/* freshness line */
.updated-line {
  font-size: .8rem; color: var(--ink-3); margin: .6rem 0 0;
  display: inline-flex; align-items: center; gap: .4rem;
}
.updated-line::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--good);
  display: inline-block; flex: none;
}

/* editor score badge */
.score-badge {
  display: inline-flex; align-items: baseline; gap: .1rem;
  font-family: var(--serif); font-weight: 600; line-height: 1;
  background: var(--ink); color: var(--paper-2); padding: .3rem .5rem; border-radius: 8px;
  font-size: .95rem;
}
.score-badge small { font-size: .62em; opacity: .7; font-family: var(--sans); }
.score-badge--inline { background: var(--accent); }
.mixer-card__score {
  position: absolute; top: .7rem; right: .7rem; z-index: 2;
  font-family: var(--serif); font-weight: 600; line-height: 1;
  background: rgba(29,24,19,.9); color: var(--paper-2);
  padding: .3rem .5rem; border-radius: 8px; font-size: .9rem;
}
.mixer-card__score small { font-size: .6em; opacity: .7; }

/* TL;DR / short-answer box (home) */
.tldr {
  border: 1px solid var(--line-2); border-left: 4px solid var(--accent);
  background: var(--paper-2); border-radius: var(--radius); padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-1);
}
.tldr__h { font-size: 1.15rem; margin-bottom: .5rem; }
.tldr__p { font-size: .95rem; color: var(--ink-2); max-width: 68ch; }
.tldr__list { margin: 1rem 0 .2rem; display: grid; gap: .5rem; }
.tldr__list li { font-size: .95rem; }
.tldr__k {
  display: inline-block; min-width: 12.5rem; font-weight: 650; color: var(--ink);
  font-size: .82rem; letter-spacing: .02em; text-transform: uppercase;
}
.tldr__list a { color: var(--accent-600); font-weight: 560; text-underline-offset: 2px; }
.tldr__list a:hover { text-decoration: underline; }
.tldr__cta { margin-top: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
@media (max-width: 620px) { .tldr__k { display: block; min-width: 0; margin-bottom: .1rem; } }

/* verdict band (ficha) */
.verdict-band { background: var(--paper-3); border-block: 1px solid var(--line-2); }
.verdict-band .container { padding-block: 1.3rem; }
.verdict { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.verdict__score {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--accent); color: var(--accent-ink); border-radius: var(--radius);
  padding: .7rem 1.1rem; flex: none; min-width: 92px;
}
.verdict__score b { font-family: var(--serif); font-size: 2rem; font-weight: 600; line-height: 1; }
.verdict__score span { font-size: .9rem; opacity: .85; margin-top: -2px; }
.verdict__score small { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; margin-top: .3rem; }
.verdict__body { flex: 1; min-width: 260px; }
.verdict__line { font-family: var(--serif); font-size: 1.1rem; font-weight: 560; }
.verdict__for { font-size: .92rem; color: var(--ink-2); margin-top: .3rem; }
.verdict__cta { margin-top: .8rem; display: flex; gap: .5rem; flex-wrap: wrap; }

/* key takeaways (guide) */
.takeaways {
  background: var(--paper-2); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; margin: 1.6rem 0;
}
.takeaways__h { font-size: 1.1rem; margin-bottom: .6rem; }
.takeaways ul { list-style: disc; padding-left: 1.2rem; display: grid; gap: .45rem; }
.takeaways li { font-size: .95rem; color: var(--ink-2); }
.takeaways strong { color: var(--ink); }

/* FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-item > summary {
  cursor: pointer; list-style: none; padding: 1rem .2rem; font-weight: 640;
  font-size: 1rem; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; color: var(--accent-600); font-weight: 400; font-size: 1.3rem; line-height: 1; }
.faq-item[open] > summary::after { content: "\2013"; }
.faq-item > summary:hover { color: var(--accent-600); }
.faq-a { padding: 0 .2rem 1.1rem; }
.faq-a p { font-size: .95rem; color: var(--ink-2); max-width: 68ch; }

/* at-a-glance table (guide) */
.at-glance { min-width: 720px; }
.at-glance th[scope="row"] { position: static; background: transparent; width: auto; min-width: 180px; }
.at-glance th[scope="row"] a { color: var(--accent-600); font-weight: 560; }
.at-glance th[scope="row"] a:hover { text-decoration: underline; }
.at-glance tbody b { font-variant-numeric: tabular-nums; }

/* simple link list */
.link-list { display: grid; gap: .45rem; margin: .4rem 0 1.4rem; }
.link-list a { color: var(--accent-600); font-weight: 540; text-underline-offset: 2px; }
.link-list a:hover { text-decoration: underline; }

/* sticky mobile buy bar (ficha) */
.buybar-mobile {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--paper-2); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px -16px rgba(29,24,19,.4);
  transform: translateY(110%); transition: transform .3s var(--ease-out);
}
.buybar-mobile.is-visible { transform: translateY(0); }
.buybar-mobile__in { display: flex; align-items: center; gap: .8rem; padding: .6rem 0; }
.buybar-mobile__name { font-size: .82rem; font-weight: 600; flex: 1; line-height: 1.25; }
.buybar-mobile .btn { flex: none; }
@media (min-width: 860px) { .buybar-mobile { display: none; } }
@media (prefers-reduced-motion: reduce) { .buybar-mobile { transition: none; } }
