/* =========================================================================
   FORBRUGSTESTEN.DK — styles.css
   Egen identitet: koksgrå struktur + cremet papir + koralrød accent.
   Gennemgående test-segl (medalje m. flueben). Redaktionelt, mobil-først.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@500;600;700;800;900&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ----------------------------------------------------------------- TOKENS */
:root {
  /* Struktur — koksgrå */
  --ink:       #23262B;   /* header, footer, hero-bånd, overskrifter */
  --ink-2:     #16181C;
  --ink-tint:  #ECEAE6;

  /* Accent — koralrød */
  --accent:      #D6452C;
  --accent-deep: #B23A22;
  --accent-tint: #FBE9E4;

  /* Flader */
  --paper:    #F6F2EA;
  --sand:     #ECE4D6;
  --surface:  #FFFFFF;
  --line:     #DFD7C8;
  --line-soft:#EDE7DB;

  /* Tekst */
  --body-ink: #25262A;
  --ink-soft: #5A5C5E;
  --on-ink:   #F3F1EA;
  --on-ink-dim:#AFB1AE;

  /* Status / rating */
  --ok:   #2E7D46;   /* fordele (semantisk grøn) */
  --con:  #6B7079;   /* ulemper (neutral) */
  --star: #E3A52A;   /* stjerner (guld) */

  --radius:    5px;
  --radius-lg: 9px;

  --font-head: 'Libre Franklin', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --h1: clamp(2rem, 4.6vw, 3rem);
  --h2: clamp(1.5rem, 3vw, 2.05rem);
  --h3: clamp(1.18rem, 2.2vw, 1.38rem);
  --body: 1.0625rem;
  --lh: 1.6;
  --w-text: 720px;
  --w-wide: 1180px;
}

/* ------------------------------------------------------------------ RESET */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); font-size: var(--body); line-height: var(--lh);
  color: var(--body-ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.13;
  color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); font-weight: 700; }
h3 { font-size: var(--h3); font-weight: 700; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }

/* --------------------------------------------------------------- LAYOUT */
.wrap { width: 100%; max-width: var(--w-wide); margin-inline: auto; padding-inline: 20px; }
.text { max-width: var(--w-text); margin-inline: auto; }
.section { padding-block: clamp(36px, 5.5vw, 64px); }
.section--surface { background: var(--surface); }

/* test-segl som genbrugeligt mærke */
.marks { display: inline-block; width: 20px; height: 20px; vertical-align: middle;
  background: url(../img/seal.svg) no-repeat center/contain; }

.eyebrow { font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: var(--accent-deep);
  margin: 0 0 10px; display: flex; align-items: center; gap: 9px; }
.lead { font-size: 1.18rem; line-height: 1.5; color: var(--ink-soft); }

/* ------------------------------------------------------------------- NAV */
.topbar { position: sticky; top: 0; z-index: 50; background: var(--ink); }
.topbar__inner { display: flex; align-items: center; gap: 24px; min-height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head);
  font-weight: 900; font-size: 1.45rem; color: #fff; letter-spacing: -.035em; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.brand::before { content: ""; width: 30px; height: 30px; flex: none;
  background: url(../img/logo.svg) no-repeat center/contain; }
.brand .dot { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav a { color: var(--on-ink); font-family: var(--font-head); font-size: .95rem; font-weight: 600; }
.nav a:hover { color: #fff; text-decoration: none; }
.nav a:hover { color: var(--accent); }
.nav__toggle { display: none; margin-left: auto; background: none;
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius); width: 42px; height: 38px; cursor: pointer; color: #fff; }
@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: var(--ink-2); padding: 4px 20px 14px; margin: 0; display: none; }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.12); }
}

/* -------------------------------------------------------------- BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; padding: 13px 24px;
  border-radius: var(--radius); border: 2px solid transparent; cursor: pointer;
  transition: background .14s, border-color .14s, color .14s; text-align: center; }
.btn:hover { text-decoration: none; }
.btn .arrow { transition: transform .14s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn--verdict, .btn--green { background: var(--accent); color: #fff; }
.btn--verdict:hover, .btn--green:hover { background: var(--accent-deep); }
.btn--brand { background: var(--ink); color: #fff; }
.btn--brand:hover { background: var(--ink-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--sand); }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 9px 16px; font-size: .88rem; border-width: 1px; }

/* ------------------------------------------------- TESTVINDER-badge (segl) */
.bedst { display: inline-flex; align-items: center; gap: 8px; background: #fff;
  border: 2px solid var(--accent); border-radius: 100px; padding: 6px 14px 6px 9px;
  line-height: 1; box-shadow: 0 3px 10px rgba(35,38,43,.16); }
.bedst .marks { width: 22px; height: 22px; }
.bedst b { font-family: var(--font-head); font-weight: 800; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .04em; color: var(--accent-deep); }
.bedst--abs { position: absolute; top: 12px; right: 12px; z-index: 2; }

/* --------------------------------------------------------------- BADGES */
.badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head);
  font-weight: 700; font-size: .72rem; padding: 4px 10px; border-radius: 3px; }
.badge--winner { background: var(--accent); color: #fff; }
.badge--value  { background: var(--ink-tint); color: var(--ink); }
.badge--rank   { background: var(--ink); color: #fff; font-weight: 800; }
.tag { display: inline-block; font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--accent-deep); }

/* ---------------------------------------------------------------- STARS */
.stars { display: inline-flex; align-items: center; gap: 7px; }
.stars__icons { display: inline-flex; color: var(--star); }
.stars__icons svg { width: 17px; height: 17px; }
.stars__val { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--body-ink); font-variant-numeric: tabular-nums; }

/* ----------------------------------------------------------- BREADCRUMB */
.crumbs { font-size: .85rem; color: var(--ink-soft); padding-block: 16px; }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--accent-deep); }
.crumbs span { color: var(--line); margin-inline: 7px; }

/* =====================================================  HERO (FORSIDE) */
.hero { padding-block: clamp(24px, 4vw, 40px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1.4fr 1fr; gap: 22px; }
.hero__promo { background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; }
.hero__promo .marks { width: 40px; height: 40px; margin-bottom: 18px; }
.hero__promo h1 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.hero__promo p { color: var(--on-ink); margin-bottom: 24px; }
.hero__promo .btn { margin-top: auto; align-self: flex-start; }
.feature { display: flex; flex-direction: column; }
.feature__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); aspect-ratio: 4/3; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.feature:hover .feature__media img { transform: scale(1.03); }
.feature__cap { padding: 14px 0 0; }
.feature__cap .tag { margin-bottom: 6px; display: block; }
.feature__cap h2, .feature__cap h3 { color: var(--ink); margin: 0 0 6px; }
.feature:hover h2, .feature:hover h3 { color: var(--accent-deep); }
.feature--lg .feature__media { aspect-ratio: 16/11; }
.feature--sm .feature__media { aspect-ratio: 4/3; }
.feature--sm h3 { font-size: 1.18rem; }

/* ===========================================  KATEGORI-SEKTION (sand + tiles) */
.catband { background: var(--sand); }
.catband__title { display: flex; align-items: center; gap: 12px; color: var(--ink);
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; margin-bottom: 22px; }
.catrow { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(120px, 1fr);
  gap: 14px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.catpill { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  padding: 18px 10px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: border-color .15s, transform .1s; }
.catpill:hover { text-decoration: none; border-color: var(--accent); transform: translateY(-2px); }
.catpill__circle { width: 56px; height: 56px; border-radius: 14px; background: var(--accent);
  display: flex; align-items: center; justify-content: center; }
.catpill__circle svg { width: 28px; height: 28px; color: #fff; }
.catpill span { color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: .92rem; }

/* ----------------------------------------------------------- TEST CARDS GRID */
.grid { display: grid; gap: 30px 26px; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
.tcard { display: flex; flex-direction: column; }
.tcard:hover { text-decoration: none; }
.tcard__img { position: relative; aspect-ratio: 16/10; background: var(--sand); overflow: hidden; border-radius: var(--radius-lg); }
.tcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.tcard:hover .tcard__img img { transform: scale(1.035); }
.tcard__body { padding: 14px 0 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tcard__title { font-size: 1.2rem; margin: 0; line-height: 1.2; color: var(--ink); }
.tcard:hover .tcard__title { color: var(--accent-deep); }
.tcard__foot { margin-top: auto; padding-top: 6px; display: flex; align-items: center; justify-content: space-between; }
.tcard__more { font-family: var(--font-head); font-size: .85rem; font-weight: 700; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 5px; }

/* =======================================================  ARTIKEL-HERO (koks) */
.ahero { background: var(--ink); color: var(--on-ink); }
.ahero .crumbs { color: var(--on-ink-dim); padding-top: 22px; }
.ahero .crumbs a { color: var(--on-ink-dim); }
.ahero .crumbs a:hover { color: #fff; }
.ahero .crumbs span { color: rgba(255,255,255,.3); }
.ahero__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; padding-bottom: 44px; }
.ahero h1 { color: #fff; margin-bottom: 16px; }
.ahero__lead { font-size: 1.15rem; color: var(--on-ink); margin-bottom: 20px; }
.ahero__byline { font-size: .88rem; color: var(--on-ink-dim); display: flex; flex-wrap: wrap; gap: 6px 16px; }
.ahero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--sand); }
.ahero__media img { width: 100%; height: 100%; object-fit: cover; }

.article-body { background: var(--surface); }
.article-body .text { padding-block: clamp(32px, 5vw, 56px); }

/* ------------------------------------------------------------- KONKLUSION */
.summary { background: var(--paper); border-radius: var(--radius-lg); padding: 26px 28px;
  margin-bottom: 34px; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.summary h2 { font-size: 1.25rem; margin: 0 0 10px; }
.summary p { margin: 0 0 16px; }
.summary p:last-of-type { margin-bottom: 0; }
.summary__icon { width: 84px; height: 84px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; }
.summary__icon svg { width: 42px; height: 42px; color: #fff; }
.summary strong { color: var(--ink); }

/* --------------------------------------------------------- BUYING GUIDE */
.guide { background: var(--paper); border-radius: var(--radius-lg); padding: 24px 28px; margin: 34px 0; }
.guide h2 { font-size: 1.35rem; margin-top: 0; }
.guide ol { margin: 0; padding-left: 0; list-style: none; counter-reset: g; }
.guide li { counter-increment: g; position: relative; padding: 13px 0 13px 44px; border-top: 1px solid var(--line); }
.guide li:first-of-type { border-top: none; }
.guide li::before { content: counter(g); position: absolute; left: 0; top: 12px; width: 28px; height: 28px;
  background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.guide li strong { display: block; color: var(--ink); margin-bottom: 2px; }

/* --------------------------------------------------------- COMPARE TABLE */
.compare-scroll { overflow-x: auto; margin: 26px 0 40px; border-radius: var(--radius-lg); border: 1px solid var(--line); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.compare th, .compare td { padding: 14px; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.compare thead th { background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare tr.is-winner td { background: var(--accent-tint); }
.compare .c-prod { font-weight: 700; color: var(--ink); }
.compare .c-rank { font-family: var(--font-head); font-weight: 800; color: var(--ink-soft); width: 40px; }
.compare .c-price { font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.compare .c-price s { color: var(--ink-soft); font-weight: 400; margin-right: 6px; }

/* ----------------------------------------------- PRODUKTKORT (rangering) */
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); margin-bottom: 26px; overflow: hidden; }
.pcard.is-winner { border: 2px solid var(--accent); }
.pcard__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 16px 24px; border-bottom: 1px solid var(--line-soft); }
.pcard.is-winner .pcard__head { background: var(--accent-tint); border-bottom-color: #F1CFC6; }
.pcard__rankname { display: flex; align-items: baseline; gap: 10px; }
.pcard__rankname .num { font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; color: var(--accent); }
.pcard__rankname h3 { margin: 0; font-size: 1.4rem; }
.pcard__head .stars { margin-left: auto; }
.pcard__body { padding: 24px; }
.pcard__top { display: grid; grid-template-columns: 1fr 230px; gap: 28px; align-items: start; }
.pcard__media { position: relative; }
.pcard__img { background: var(--sand); border-radius: var(--radius); aspect-ratio: 1; overflow: hidden; }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; }
.pcard__dom { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 14px; font-weight: 600; }
.pcard__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 22px 0; }
.specs h4, .proscons h4 { font-family: var(--font-head); font-size: .74rem; text-transform: uppercase;
  letter-spacing: .05em; color: var(--ink-soft); margin: 0 0 10px; }
.specs dl { display: grid; grid-template-columns: 1fr auto; margin: 0; font-size: .92rem; }
.specs dt { color: var(--ink-soft); padding: 8px 0; border-top: 1px solid var(--line-soft); }
.specs dd { margin: 0; padding: 8px 0; text-align: right; font-weight: 700; border-top: 1px solid var(--line-soft); font-variant-numeric: tabular-nums; }
.proscons ul { list-style: none; padding: 0; margin: 0; }
.proscons li { display: flex; gap: 9px; align-items: flex-start; padding: 5px 0; font-size: .96rem; }
.proscons li svg { width: 17px; height: 17px; flex: none; margin-top: 3px; }
.proscons .pro svg { color: var(--ok); }
.proscons .con svg { color: var(--con); }
.pcard__buy { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.price__now { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.price__now s { color: var(--ink-soft); font-size: .9rem; font-weight: 400; margin-right: 8px; }
.price__shop { display: block; font-size: .82rem; color: var(--ink-soft); margin-top: 2px; }

/* -------------------------------------------------------------------- FAQ */
.faq { border-top: 2px solid var(--ink); margin-top: 16px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink);
  padding: 18px 40px 18px 0; position: relative; }
.faq__q::after { content: ''; position: absolute; right: 4px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-65%) rotate(45deg); transition: transform .2s; }
.faq__item.is-open .faq__q::after { transform: translateY(-35%) rotate(-135deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .25s; }
.faq__a p { padding: 0 0 18px; margin: 0; color: var(--ink-soft); }

/* -------------------------------------------------------- CTA-BÅND (sand) */
.ctaband { background: var(--sand); }
.ctaband__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center; }
.ctaband__icon { justify-self: center; width: 150px; height: 150px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center; }
.ctaband__icon svg { width: 74px; height: 74px; color: #fff; }
.ctaband h2 { margin-bottom: 12px; }

/* ------------------------------------------------------------ FIGUR / NOTE */
.figure { margin: 30px 0; }
.figure img { border-radius: var(--radius-lg); width: 100%; }
.figure figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: 8px; font-style: italic; }

/* ---------------------------------------------------------------- FOOTER */
.footer { background: var(--ink); color: var(--on-ink-dim); padding-block: 48px 26px; font-size: .92rem; }
.footer a { color: var(--on-ink-dim); }
.footer a:hover { color: #fff; }
.footer__cols { display: grid; gap: 32px; grid-template-columns: 2fr 1fr 1fr 1fr; margin-bottom: 36px; }
.footer__brand .brand { color: #fff; }
.footer__brand p { color: var(--on-ink-dim); max-width: 34ch; margin-top: 14px; font-size: .88rem; }
.footer h4 { color: #fff; font-family: var(--font-head); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; }

/* ---------------------------------------------------------------- UTILS */
.related { margin-top: 50px; }
.mt-0 { margin-top: 0; }
.muted { color: var(--ink-soft); }
.note { font-size: .82rem; color: var(--ink-soft); font-style: italic; }

/* ---------------------------------------------------------- RESPONSIVE */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
  .hero__promo { grid-column: 1 / -1; }
  .ahero__grid { grid-template-columns: 1fr; gap: 26px; }
  .ahero__media { max-width: 360px; }
}
@media (max-width: 720px) {
  .hero__grid { grid-template-columns: 1fr; }
  .pcard__top { grid-template-columns: 1fr; }
  .pcard__media { order: -1; max-width: 240px; }
  .pcard__grid { grid-template-columns: 1fr; gap: 20px; }
  .pcard__buy { flex-direction: column; align-items: stretch; }
  .pcard__buy .btn { width: 100%; }
  .summary { grid-template-columns: 1fr; }
  .summary__icon { order: -1; }
  .ctaband__inner { grid-template-columns: 1fr; text-align: center; }
  .ctaband__icon { order: -1; width: 110px; height: 110px; }
  .ctaband__icon svg { width: 56px; height: 56px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; }
  .brand { font-size: 1.3rem; }
  .compare-scroll { margin-inline: -20px; border-radius: 0; border-inline: none; }
}

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

/* ---- Konvertering: vinder-verdict, tillidssignaler, køb-bar ---- */
.verdict__eyebrow { display: flex; align-items: center; gap: 8px; margin: 0 0 8px;
  font-family: var(--font-head); font-weight: 800; font-size: .74rem; letter-spacing: .09em;
  text-transform: uppercase; color: var(--accent); }
.verdict__eyebrow .marks { width: 20px; height: 20px; }
.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 16px; padding: 0; margin: 0 0 18px; }
.trust-row li { display: inline-flex; align-items: center; gap: 6px; font-size: .87rem; font-weight: 600; color: var(--ink); }
.trust-row svg { color: var(--accent); flex: none; }
.verdict__buy { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.verdict__price { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px; }
.verdict__save { font-family: var(--font-body); font-size: .76rem; font-weight: 700; color: var(--accent-deep);
  background: var(--accent-tint); padding: 4px 9px; border-radius: 999px; white-space: nowrap; }

.buybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none;
  align-items: center; justify-content: space-between; gap: 14px; padding: 10px 16px;
  background: var(--ink); color: #fff; box-shadow: 0 -6px 24px rgba(0,0,0,.22); }
.buybar__info { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.buybar__info strong { font-family: var(--font-head); font-size: .98rem; }
.buybar__info span { font-size: .78rem; color: var(--on-ink-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buybar .btn { flex: none; }
@media (max-width: 720px) {
  .buybar { display: flex; }
  body { padding-bottom: 68px; }
}

/* ---- Sammenligningstabel: fuld bredde på desktop, kompakt uden swipe på mobil ---- */
@media (min-width: 721px) {
  /* bryd ud af den smalle læsekolonne, så hele tabellen er synlig uden at swipe */
  .article-body .compare-scroll {
    width: var(--w-wide);
    max-width: calc(100vw - 40px);
    margin-left: 50%;
    transform: translateX(-50%);
  }
  table.compare { min-width: 0; }
}
@media (max-width: 720px) {
  /* skjul de to spec-kolonner (Opvarmning/Tilbehør) — de står i produktkortene nedenunder */
  table.compare { min-width: 0; }
  .compare th:nth-child(4), .compare td:nth-child(4),
  .compare th:nth-child(5), .compare td:nth-child(5) { display: none; }
  .compare th, .compare td { padding: 12px 10px; }
}

/* ---- CRO pass 2: hero-pick, ghost-CTA, reassurance, rating ---- */
.ahero__pick { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.ahero__pick-label { font-family: var(--font-head); font-weight: 800; font-size: .82rem;
  letter-spacing: .05em; text-transform: uppercase; color: #fff; }
.ahero__pick .stars__val { color: #fff; }
.ahero__pick-sub { margin: 0; font-size: .86rem; color: var(--on-ink-dim); }

.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { background: var(--surface); border-color: var(--ink-soft); }

.reassure { display: flex; align-items: center; gap: 7px; margin: 12px 0 0;
  font-size: .84rem; color: var(--ink-soft); }
.reassure svg { color: var(--accent); flex: none; }

.verdict__rating { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; }
.verdict__rate-label { font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  color: var(--accent-deep); background: var(--accent-tint); padding: 3px 10px; border-radius: 999px; }

.pcard.is-winner { box-shadow: 0 12px 30px rgba(214,69,44,.12); }

.method-strip { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; padding: 12px 16px;
  background: var(--ink-tint); border-radius: var(--radius); font-size: .88rem; color: var(--ink-soft); }
.method-strip svg { color: var(--accent); flex: none; }
.method-strip span { line-height: 1.35; }

.verdict__social { display: flex; align-items: center; gap: 8px; margin: 0 0 14px;
  font-weight: 700; color: var(--ink); font-size: .95rem; }
.verdict__social svg { color: var(--star); flex: none; }
