/* ==========================================================================
   brugttech.dk – stylesheet
   Al farve/font/spacing via CSS-variabler (jf. scaffold.md).
   Mobile-first: basis-styles gælder mobil, media queries lægger desktop-grids på.
   ========================================================================== */

:root {
  /* Palette */
  --lime:  #C9F24D;
  --blue:  #3355FF;
  --coral: #FF5B34;
  --ink:   #0D0F11;
  --paper: #F5F3EE;
  --panel: #171A1D;      /* mørkt kort */
  --panel-2: #2A2F33;
  --white: #FFFFFF;
  --card-border: #E4E0D8;
  --card-border-2: #EFEBE3;
  --muted: #6B7370;
  --muted-2: #8A918D;

  /* Stand-farver */
  --grade-a-plus: #C9F24D;
  --grade-a:      #9FE8FF;
  --grade-b:      #FFC94D;
  --grade-c:      #E2DED4;

  /* Fonte */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, monospace;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.75rem;
  --space-xl: 3rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Layout */
  --wrap: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--coral); }

input, button, select, textarea { font: inherit; color: inherit; }
input[type="range"] { accent-color: var(--lime); }
::selection { background: var(--lime); color: var(--ink); }

img, svg { max-width: 100%; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.035em; margin: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: 28px; padding-right: 28px; }

.mono { font-family: var(--font-mono); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Fokus-synlighed (accessibility) */
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.rise { animation: rise .5s ease both; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ BUTTONS / CHIPS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 16px; padding: 15px 25px;
  border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; transition: background .15s, color .15s, border-color .15s, transform .15s;
  min-height: 44px; text-align: center;
}
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--paper); color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--blue); color: var(--paper); }
.btn-ghost { border-color: rgba(13,15,17,.28); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(13,15,17,.06); }
.btn-ghost-light { border-color: rgba(245,243,238,.28); color: var(--paper); background: transparent; }
.btn-ghost-light:hover { border-color: var(--lime); color: var(--lime); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--ink); color: var(--paper);
  border-bottom: 1px solid rgba(245,243,238,.14);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 18px; padding-top: 12px; padding-bottom: 12px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; flex: none; background: none; border: 0; padding: 0; }
.brand svg { width: 34px; height: 34px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -.03em; color: var(--paper); }
.brand-name .tld { color: var(--lime); }

.search-box {
  flex: 1 1 260px; display: flex; align-items: center; gap: 10px;
  background: var(--panel); border: 1px solid rgba(245,243,238,.16);
  border-radius: var(--radius-pill); padding: 9px 16px; max-width: 520px;
}
.search-box svg { flex: none; }
.search-box input {
  flex: 1; background: none; border: none; outline: none; font-size: 15px;
  color: var(--paper); min-width: 0;
}
.search-box input::placeholder { color: #8C948F; }

.nav-links { display: flex; align-items: center; gap: 18px; font-size: 14.5px; font-weight: 500; flex: none; }
.nav-link { cursor: pointer; opacity: .82; background: none; border: 0; color: var(--paper); padding: 6px 2px; }
.nav-link:hover { opacity: 1; color: var(--lime); }
.nav-admin {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(245,243,238,.09); border: 1px solid rgba(245,243,238,.16);
  padding: 8px 14px; border-radius: var(--radius-pill); color: var(--paper); cursor: pointer;
}
.nav-admin:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* ============ HERO (variant B – søg først) ============ */
.hero {
  background: var(--ink); color: var(--paper);
  padding: clamp(48px, 9vw, 96px) 0 clamp(44px, 8vw, 84px);
  text-align: center;
}
.hero .wrap { max-width: 900px; }
.hero-kicker {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(245,243,238,.45);
}
.hero h1 {
  font-weight: 700; font-size: clamp(44px, 11vw, 96px); line-height: .9;
  letter-spacing: -.05em; margin: 18px 0 0; text-wrap: balance;
}
.hero h1 .mark { background: var(--lime); color: var(--ink); padding: 0 14px; border-radius: 12px; }
.hero-search {
  display: flex; align-items: center; gap: 10px; background: var(--paper);
  border-radius: var(--radius-pill); padding: 8px 8px 8px 20px;
  margin: 40px auto 0; max-width: 660px;
}
.hero-search input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 17px; color: var(--ink); padding: 12px 0; min-width: 0;
}
.hero-search .btn { flex: none; }
.hero-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.tag {
  cursor: pointer; font-family: var(--font-mono); font-size: 12.5px;
  border: 1px solid rgba(245,243,238,.22); border-radius: var(--radius-pill);
  padding: 8px 13px; color: rgba(245,243,238,.7); background: none;
}
.tag:hover { border-color: var(--lime); color: var(--lime); }

/* ============ PRICE TICKER ============ */
.ticker {
  background: var(--ink); color: var(--paper);
  border-top: 1px solid rgba(245,243,238,.12);
  border-bottom: 1px solid rgba(245,243,238,.12);
  overflow: hidden; padding: 13px 0;
}
.ticker-track { display: flex; width: max-content; animation: tick 42s linear infinite; }
.ticker-item {
  display: flex; align-items: center; gap: 9px; padding: 0 26px;
  white-space: nowrap; font-family: var(--font-mono); font-size: 13px;
}
.ticker-item .name { color: rgba(245,243,238,.82); }
.ticker-item .price { color: rgba(245,243,238,.38); }

/* ============ SECTIONS ============ */
.section { padding-top: clamp(48px, 7vw, 72px); }
.section-last { padding-bottom: clamp(56px, 8vw, 96px); }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(28px, 5vw, 40px); }
.link-arrow { cursor: pointer; font-weight: 600; font-size: 15px; color: var(--blue); background: none; border: 0; }
.link-arrow:hover { color: var(--coral); }

/* Kategori-grid */
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.cat-card {
  cursor: pointer; background: var(--white); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 20px; min-height: 168px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color .15s, box-shadow .15s, transform .15s; text-align: left;
}
.cat-card:hover { border-color: var(--ink); box-shadow: 6px 6px 0 var(--ink); transform: translate(-3px,-3px); }
.cat-glyph {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 17px;
}
.cat-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.cat-meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); margin-top: 6px; }

/* Stand-forklaring */
.grade-panel {
  background: var(--ink); color: var(--paper); border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 900px) { .grade-panel { grid-template-columns: .82fr 1.18fr; gap: 48px; } }
.grade-panel h2 { font-size: clamp(28px, 4vw, 38px); line-height: 1.02; }
.grade-panel p { font-size: 16.5px; line-height: 1.6; color: rgba(245,243,238,.66); margin: 18px 0 0; text-wrap: pretty; }
.grade-formula { font-family: var(--font-mono); font-size: 12.5px; color: var(--lime); margin-top: 22px; letter-spacing: .04em; }
.grade-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 520px) { .grade-cards { grid-template-columns: repeat(2, 1fr); } }
.grade-card { background: var(--panel); border: 1px solid rgba(245,243,238,.1); border-radius: var(--radius-md); padding: 18px; }
.grade-badge { font-family: var(--font-mono); font-weight: 600; font-size: 12px; color: var(--ink); padding: 3px 9px; border-radius: 6px; }
.grade-card .title { font-weight: 700; font-size: 15px; }
.grade-card .desc { font-size: 14px; line-height: 1.5; color: rgba(245,243,238,.6); margin-top: 10px; }

/* Populære produkter */
.prod-card {
  cursor: pointer; background: var(--white); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); overflow: hidden; text-align: left;
  transition: border-color .15s, box-shadow .15s;
}
.prod-card:hover { border-color: var(--ink); box-shadow: 6px 6px 0 var(--lime); }
.prod-thumb {
  height: 158px; background: linear-gradient(150deg, #EDEAE2, #DFDBD1);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.prod-thumb .initials { font-family: var(--font-display); font-weight: 700; font-size: 34px; color: rgba(13,15,17,.16); }
.prod-badge {
  position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; background: var(--ink); color: var(--lime); padding: 4px 8px; border-radius: 6px;
}
.prod-body { padding: 16px 16px 18px; }
.prod-cat { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.prod-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.02em; margin-top: 6px; min-height: 44px; }
.prod-price { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }
.prod-price .amount { font-family: var(--font-mono); font-weight: 600; font-size: 21px; }
.prod-price .offers { font-size: 12.5px; color: var(--muted); }

/* ============ RESULTATER ============ */
.results { padding-top: 34px; padding-bottom: clamp(56px, 8vw, 90px); }
.results-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.crumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.results-head h1 { font-size: clamp(30px, 6vw, 44px); letter-spacing: -.04em; margin: 8px 0 0; }
.sort-wrap { display: flex; align-items: center; gap: 10px; }
.sort-wrap span { font-size: 14px; color: var(--muted); }
.select {
  background: var(--white); border: 1px solid var(--card-border); border-radius: var(--radius-pill);
  padding: 11px 16px; font-size: 14.5px; font-weight: 500; outline: none; cursor: pointer; min-height: 44px;
}

.results-layout { display: grid; grid-template-columns: 1fr; gap: 26px; margin-top: 28px; align-items: start; }
@media (min-width: 900px) { .results-layout { grid-template-columns: 268px minmax(0, 1fr); } }

.filters {
  background: var(--white); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 22px;
}
@media (min-width: 900px) { .filters { position: sticky; top: 88px; } }
.filters-head { display: flex; align-items: center; justify-content: space-between; }
.filters-head span { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.filter-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 24px 0 10px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; }
.grade-chip {
  cursor: pointer; font-family: var(--font-mono); font-weight: 600; font-size: 12.5px;
  padding: 8px 12px; border-radius: 9px; border: 1px solid var(--card-border); background: var(--white);
  color: var(--ink); min-height: 36px;
}
.range { width: 100%; }
.range-scale { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.range-scale .cur { color: var(--ink); font-weight: 600; }
.cat-filter {
  cursor: pointer; display: flex; align-items: center; gap: 10px; padding: 8px;
  border-radius: 9px; background: transparent; width: 100%; text-align: left; border: 0;
}
.cat-filter:hover { background: var(--paper); }
.cat-filter .box {
  width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid #C6C1B6; background: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--ink); font-weight: 700; flex: none;
}
.cat-filter.on .box { border-color: var(--ink); background: var(--lime); }
.cat-filter .name { font-size: 14.5px; flex: 1; }
.cat-filter .count { font-family: var(--font-mono); font-size: 12px; color: #9AA19D; }
.warranty-toggle {
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 12px; border-radius: 12px; border: 1px solid var(--card-border); background: transparent; width: 100%;
}
.warranty-toggle.on { background: var(--white); }
.warranty-toggle .track { width: 36px; height: 20px; border-radius: var(--radius-pill); background: #D8D3C8; position: relative; flex: none; }
.warranty-toggle.on .track { background: var(--ink); }
.warranty-toggle .knob { position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 99px; background: var(--white); transition: left .15s; }
.warranty-toggle.on .knob { left: 18px; }

.result-count { font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin-bottom: 14px; display: block; }
.result-list { display: flex; flex-direction: column; gap: 12px; }
.result-card {
  cursor: pointer; background: var(--white); border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  padding: 16px; display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center; text-align: left;
  transition: border-color .15s, box-shadow .15s;
}
@media (min-width: 560px) { .result-card { grid-template-columns: 118px minmax(0, 1fr); } }
@media (min-width: 860px) { .result-card { grid-template-columns: 118px minmax(0, 1fr) 210px; gap: 20px; } }
.result-card:hover { border-color: var(--ink); box-shadow: 5px 5px 0 var(--lime); }
.result-thumb {
  height: 104px; border-radius: var(--radius-md); background: linear-gradient(150deg, #EDEAE2, #DFDBD1);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-weight: 700; font-size: 24px; color: rgba(13,15,17,.18); overflow: hidden;
}
.thumb-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.result-body .cat { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.result-body .name { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -.025em; margin-top: 5px; }
.badges { display: flex; gap: 7px; margin-top: 11px; flex-wrap: wrap; }
.badge { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; padding: 5px 9px; border-radius: 7px; }
.best-line { font-size: 13.5px; color: var(--muted); margin-top: 11px; }
.result-price { text-align: left; }
@media (min-width: 860px) { .result-price { text-align: right; } }
.result-price .from { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.result-price .amount { font-family: var(--font-mono); font-weight: 600; font-size: 30px; letter-spacing: -.03em; }
.result-price .delta { font-family: var(--font-mono); font-size: 12.5px; margin-top: 3px; }
.result-price .btn { margin-top: 12px; font-size: 14px; padding: 11px 20px; }

/* Adaptiv tom-tilstand (virker på både lys og mørk baggrund) */
.empty {
  border: 1px dashed rgba(128, 128, 128, .4); border-radius: var(--radius-lg);
  padding: 44px 24px; text-align: center;
}
.empty .title { font-family: var(--font-display); font-weight: 700; font-size: 21px; }
.empty .sub { font-size: 14.5px; opacity: .72; margin-top: 8px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* ============ PRODUKTSIDE ============ */
.product { padding-top: 26px; padding-bottom: clamp(56px, 8vw, 90px); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); flex-wrap: wrap; }
.breadcrumb button { background: none; border: 0; cursor: pointer; color: var(--muted); padding: 0; }
.breadcrumb button:hover { color: var(--ink); }
.breadcrumb .current { color: var(--ink); }

.product-layout { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 22px; align-items: start; }
@media (min-width: 1000px) { .product-layout { grid-template-columns: minmax(0, 1fr) 400px; gap: 30px; } }

.card-white { background: var(--white); border: 1px solid var(--card-border); border-radius: var(--radius-xl); }
.product-hero { padding: 26px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 620px) { .product-hero { grid-template-columns: 260px 1fr; gap: 26px; } }
.product-img {
  aspect-ratio: 1; border-radius: var(--radius-lg); background: linear-gradient(150deg, #EDEAE2, #DFDBD1);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-weight: 700; font-size: 44px; color: rgba(13,15,17,.16); overflow: hidden;
}
.product-eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.product-hero h1 { font-size: clamp(28px, 5vw, 38px); line-height: 1.04; letter-spacing: -.04em; margin: 8px 0 0; }
.key-facts { display: flex; gap: 26px; margin-top: 22px; padding: 18px 0; border-top: 1px solid var(--card-border-2); border-bottom: 1px solid var(--card-border-2); flex-wrap: wrap; }
.key-fact .label { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.key-fact .value { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-top: 5px; }
.product-blurb { font-size: 15.5px; line-height: 1.6; color: #4A5150; margin: 16px 0 0; text-wrap: pretty; }

/* Graf */
.chart-panel { background: var(--ink); color: var(--paper); border-radius: var(--radius-xl); padding: 26px 26px 20px; margin-top: 16px; }
.chart-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.chart-head h3 { font-size: 24px; letter-spacing: -.03em; }
.chart-head .sub { font-size: 14px; color: rgba(245,243,238,.6); margin-top: 5px; }
.range-tabs { display: flex; gap: 6px; }
.range-tab {
  cursor: pointer; font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  padding: 8px 13px; border-radius: var(--radius-pill); border: 1px solid rgba(245,243,238,.22);
  background: transparent; color: rgba(245,243,238,.6); min-height: 36px;
}
.range-tab.on { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.chart-wrap { position: relative; margin-top: 20px; }
.chart-wrap svg { width: 100%; height: 250px; display: block; overflow: visible; }
.chart-tip {
  position: absolute; top: 0; transform: translateX(-50%); background: var(--lime); color: var(--ink);
  border-radius: 10px; padding: 8px 12px; pointer-events: none; transition: opacity .1s, left .1s;
}
.chart-tip .p { font-family: var(--font-mono); font-weight: 600; font-size: 14px; }
.chart-tip .m { font-family: var(--font-mono); font-size: 11px; opacity: .7; }
.chart-legend { display: flex; gap: 20px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(245,243,238,.1); font-family: var(--font-mono); font-size: 12px; color: rgba(245,243,238,.55); flex-wrap: wrap; }
.chart-legend .swatch { width: 14px; height: 3px; border-radius: 2px; display: inline-block; }
.chart-legend .lg { display: flex; align-items: center; gap: 7px; }
.chart-verdict { margin-left: auto; color: var(--lime); }

/* Tilbud */
.offers { margin-top: 16px; background: var(--white); border: 1px solid var(--card-border); border-radius: var(--radius-xl); overflow: hidden; }
.offers-head { padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--card-border-2); flex-wrap: wrap; }
.offers-head h3 { font-size: 24px; letter-spacing: -.03em; }
.offer-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.offer-chip {
  cursor: pointer; font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  padding: 8px 12px; border-radius: var(--radius-pill); border: 1px solid var(--card-border);
  background: var(--white); color: var(--ink); min-height: 36px;
}
.offer-chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.offer-row {
  padding: 18px 24px; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center;
  border-bottom: 1px solid #F2EFE8;
}
@media (min-width: 720px) { .offer-row { grid-template-columns: minmax(0, 1fr) 92px 130px 132px; gap: 18px; } }
.offer-retailer { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.offer-retailer .r { font-weight: 700; font-size: 16.5px; }
.offer-best-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 600; background: var(--lime); padding: 3px 8px; border-radius: 6px; }
.offer-meta { font-size: 13.5px; color: var(--muted); margin-top: 5px; }
.offer-grade { font-family: var(--font-mono); font-weight: 600; font-size: 13px; text-align: center; }
.offer-grade span { padding: 4px 10px; border-radius: 7px; }
.offer-price { text-align: right; }
.offer-price .amount { font-family: var(--font-mono); font-weight: 600; font-size: 22px; letter-spacing: -.02em; }
.offer-price .ship { font-size: 12.5px; color: var(--muted); }
.offer-cta { text-align: right; }
.offer-cta .go { display: inline-block; font-weight: 600; font-size: 14px; padding: 11px 18px; border-radius: var(--radius-pill); cursor: pointer; min-height: 44px; }
.offer-cta .go:hover { background: var(--blue) !important; color: var(--paper) !important; }
.offers-disclaimer { padding: 14px 24px; font-size: 12.5px; color: var(--muted-2); }

/* Produkt-sidebar */
.product-side { display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 1000px) { .product-side { position: sticky; top: 88px; } }
.rec-card { background: var(--lime); border-radius: var(--radius-xl); padding: 24px; }
.rec-card .eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; }
.rec-card .title { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -.03em; margin-top: 10px; }
.rec-price { display: flex; align-items: baseline; gap: 10px; margin-top: 12px; }
.rec-price .amount { font-family: var(--font-mono); font-weight: 600; font-size: 34px; letter-spacing: -.03em; }
.rec-price .grade { font-family: var(--font-mono); font-size: 13px; }
.rec-why { font-size: 14.5px; line-height: 1.55; margin-top: 10px; }
.rec-cta { display: block; background: var(--ink); color: var(--paper); text-align: center; font-weight: 700; font-size: 15.5px; padding: 15px; border-radius: var(--radius-pill); margin-top: 18px; cursor: pointer; border: 0; width: 100%; box-sizing: border-box; }
.rec-cta:hover { background: var(--coral); }

.side-card { background: var(--white); border: 1px solid var(--card-border); border-radius: var(--radius-xl); padding: 22px; }
.side-card .title { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.side-card .desc { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin-top: 7px; }
.alert-form { display: flex; gap: 8px; margin-top: 14px; }
.alert-form input { flex: 1; background: var(--paper); border: 1px solid var(--card-border); border-radius: 12px; padding: 12px 14px; font-size: 14.5px; outline: none; min-width: 0; }
.alert-form button { background: var(--ink); color: var(--paper); font-weight: 600; font-size: 14px; padding: 12px 16px; border-radius: 12px; cursor: pointer; border: 0; }
.alert-form button:hover { background: var(--blue); }
.alert-msg { font-family: var(--font-mono); font-size: 12.5px; margin-top: 10px; }
.spec-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid #F2EFE8; font-size: 14.5px; }
.spec-row .label { color: var(--muted); }
.spec-row .value { font-weight: 500; text-align: right; }

/* ============ ADMIN ============ */
.admin { background: var(--ink); color: var(--paper); min-height: calc(100vh - 63px); }
.admin .wrap { padding-top: 30px; padding-bottom: 80px; }
.admin-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.admin-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); }
.admin-head h1 { font-size: clamp(28px, 5vw, 40px); letter-spacing: -.04em; margin: 8px 0 0; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-kpis { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 26px; }
@media (min-width: 600px) { .admin-kpis { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .admin-kpis { grid-template-columns: repeat(4, 1fr); } }
.kpi { background: var(--panel); border: 1px solid rgba(245,243,238,.11); border-radius: var(--radius-lg); padding: 18px; }
.kpi .label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(245,243,238,.5); }
.kpi .value { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -.03em; margin-top: 8px; }
.kpi .delta { font-family: var(--font-mono); font-size: 12px; margin-top: 4px; }

.admin-tabs { display: flex; gap: 4px; margin-top: 30px; border-bottom: 1px solid rgba(245,243,238,.13); overflow-x: auto; }
.admin-tab { cursor: pointer; font-weight: 600; font-size: 15px; padding: 13px 18px; border: 0; border-bottom: 2px solid transparent; color: rgba(245,243,238,.5); background: none; white-space: nowrap; }
.admin-tab.on { border-bottom-color: var(--lime); color: var(--paper); }
.admin-tab:hover { color: var(--paper); }

.dark-panel { background: var(--panel); border: 1px solid rgba(245,243,238,.11); border-radius: var(--radius-lg); }
.feeds-table { margin-top: 22px; overflow: hidden; }
.feeds-scroll { overflow-x: auto; }
.feeds-grid { display: grid; grid-template-columns: 1.5fr .8fr .7fr .8fr .9fr 90px; gap: 16px; min-width: 720px; }
.feeds-header { padding: 14px 22px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(245,243,238,.45); border-bottom: 1px solid rgba(245,243,238,.1); }
.feeds-row { padding: 16px 22px; align-items: center; border-bottom: 1px solid rgba(245,243,238,.07); }
.feeds-row:hover { background: rgba(245,243,238,.04); }
.feed-name { font-weight: 700; font-size: 15.5px; }
.feed-url { font-family: var(--font-mono); font-size: 11.5px; color: rgba(245,243,238,.42); margin-top: 4px; word-break: break-all; }
.net-badge { font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; padding: 4px 9px; border-radius: 6px; }
.feed-sub { font-family: var(--font-mono); font-size: 11.5px; color: rgba(245,243,238,.42); margin-top: 5px; }
.feed-mono { font-family: var(--font-mono); font-size: 13.5px; }
.status-badge { font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; padding: 5px 10px; border-radius: var(--radius-pill); text-align: center; }

.add-grid { margin-top: 22px; display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
@media (min-width: 900px) { .add-grid { grid-template-columns: 1.15fr .85fr; } }
.form-panel { padding: 26px; }
.form-panel h3 { font-size: 22px; letter-spacing: -.03em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.form-grid .full { grid-column: 1 / -1; }
.field-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(245,243,238,.5); margin-bottom: 7px; }
.dark-input { width: 100%; background: var(--ink); border: 1px solid rgba(245,243,238,.18); border-radius: 12px; padding: 13px 15px; font-size: 15px; outline: none; color: var(--paper); }
.dark-input.mono { font-family: var(--font-mono); font-size: 13.5px; }
.seg { display: flex; gap: 8px; }
.seg-opt { cursor: pointer; flex: 1; text-align: center; font-weight: 600; font-size: 13.5px; padding: 12px 8px; border-radius: 12px; border: 1px solid rgba(245,243,238,.2); background: transparent; color: rgba(245,243,238,.62); min-height: 44px; }
.seg-opt.on { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.save-row { display: flex; align-items: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.feed-preview { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(245,243,238,.1); }
.feed-preview-head { font-family: var(--font-mono); font-size: 13px; color: var(--lime); margin-bottom: 10px; }
.feed-preview-scroll { overflow-x: auto; }
.feed-preview-table { display: flex; flex-direction: column; gap: 0; min-width: 480px; }
.feed-preview-row { display: grid; grid-template-columns: repeat(5, minmax(90px, 1fr)); gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(245,243,238,.07); font-size: 12.5px; }
.feed-preview-row span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: rgba(245,243,238,.75); }
.feed-preview-row.head { font-family: var(--font-mono); font-weight: 600; color: rgba(245,243,238,.5); text-transform: uppercase; letter-spacing: .04em; font-size: 11px; }
.feed-preview-row.head span { color: rgba(245,243,238,.5); }
.save-msg { font-family: var(--font-mono); font-size: 13px; }
.steps { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.step { display: grid; grid-template-columns: 26px 1fr; gap: 12px; }
.step .n { width: 26px; height: 26px; border-radius: 99px; background: rgba(201,242,77,.16); color: var(--lime); font-family: var(--font-mono); font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.step .t { font-weight: 700; font-size: 14.5px; }
.step .d { font-size: 13.5px; color: rgba(245,243,238,.58); line-height: 1.5; margin-top: 3px; }

.map-panel { margin-top: 22px; padding: 26px; }
.map-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.map-head h3 { font-size: 22px; letter-spacing: -.03em; }
.map-head .sub { font-size: 14px; color: rgba(245,243,238,.55); margin-top: 5px; }
.map-score { font-family: var(--font-mono); font-size: 12.5px; color: var(--lime); }
.map-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 22px; }
@media (min-width: 720px) { .map-grid { grid-template-columns: repeat(2, 1fr); } }
.map-row { background: var(--ink); border: 1px solid rgba(245,243,238,.12); border-radius: var(--radius-md); padding: 14px 16px; display: grid; grid-template-columns: 1fr 20px 1fr; gap: 10px; align-items: center; }
.map-src { font-family: var(--font-mono); font-size: 13px; color: var(--lime); }
.map-sample { font-family: var(--font-mono); font-size: 11.5px; color: rgba(245,243,238,.4); margin-top: 4px; word-break: break-all; }
.map-arrow { color: rgba(245,243,238,.35); text-align: center; }
.dark-select { width: 100%; background: var(--panel); border: 1px solid rgba(245,243,238,.18); border-radius: 10px; padding: 10px; font-size: 13.5px; outline: none; cursor: pointer; color: var(--paper); }
.map-conf { font-family: var(--font-mono); font-size: 11.5px; margin-top: 5px; }

.match-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 22px; }
.match-head h3 { font-size: 22px; letter-spacing: -.03em; }
.match-head .sub { font-size: 14px; color: rgba(245,243,238,.55); }
.match-list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.match-row { background: var(--panel); border: 1px solid rgba(245,243,238,.11); border-radius: var(--radius-lg); padding: 18px 20px; display: grid; grid-template-columns: 1fr; gap: 14px; align-items: center; }
@media (min-width: 860px) { .match-row { grid-template-columns: 1fr 1fr 120px 190px; gap: 18px; } }
.match-eyebrow { font-family: var(--font-mono); font-size: 11.5px; color: rgba(245,243,238,.42); text-transform: uppercase; letter-spacing: .07em; }
.match-eyebrow.lime { color: var(--lime); }
.match-raw { font-size: 15px; margin-top: 5px; }
.match-sugg { font-size: 15px; font-weight: 700; margin-top: 5px; }
.match-score { font-family: var(--font-mono); font-size: 20px; font-weight: 600; }
.match-actions { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }
.match-actions .no { cursor: pointer; border: 1px solid rgba(245,243,238,.22); font-size: 13.5px; font-weight: 500; padding: 10px 14px; border-radius: var(--radius-pill); background: none; color: var(--paper); min-height: 44px; }
.match-actions .no:hover { border-color: var(--coral); color: var(--coral); }
.match-actions .yes { cursor: pointer; font-size: 13.5px; font-weight: 700; padding: 10px 16px; border-radius: var(--radius-pill); border: 0; min-height: 44px; }
.match-actions .yes:hover { background: var(--paper); color: var(--ink); }

.earn-grid { margin-top: 22px; display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
@media (min-width: 900px) { .earn-grid { grid-template-columns: 1.25fr .75fr; } }
.earn-panel { padding: 26px; }
.earn-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.earn-head h3 { font-size: 22px; letter-spacing: -.03em; }
.earn-total { font-family: var(--font-mono); font-size: 12.5px; color: var(--lime); }
.earn-bars { display: flex; align-items: flex-end; gap: 10px; height: 220px; margin-top: 26px; }
.earn-bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.earn-bar .v { font-family: var(--font-mono); font-size: 11px; color: rgba(245,243,238,.55); }
.earn-bar .bar { width: 100%; border-radius: 8px 8px 2px 2px; }
.earn-bar .l { font-family: var(--font-mono); font-size: 11px; color: rgba(245,243,238,.4); }
.split-col { display: flex; flex-direction: column; gap: 12px; }
.split-card { background: var(--panel); border: 1px solid rgba(245,243,238,.11); border-radius: var(--radius-lg); padding: 20px; }
.split-card .row { display: flex; align-items: center; justify-content: space-between; }
.split-card .name { font-weight: 700; font-size: 16px; }
.split-card .share { font-family: var(--font-mono); font-size: 13px; color: rgba(245,243,238,.55); }
.split-card .amount { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -.03em; margin-top: 8px; }
.split-bar { height: 7px; border-radius: 99px; background: rgba(245,243,238,.1); margin-top: 12px; overflow: hidden; }
.split-bar > div { height: 100%; }
.split-detail { font-family: var(--font-mono); font-size: 12px; color: rgba(245,243,238,.45); margin-top: 10px; }
.top-earner { background: var(--lime); color: var(--ink); border-radius: var(--radius-lg); padding: 20px; }
.top-earner .eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; }
.top-earner .name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.03em; margin-top: 8px; }
.top-earner .detail { font-size: 14px; line-height: 1.5; margin-top: 6px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: var(--paper); padding: 56px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; } }
.footer-brand .name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.03em; }
.footer-brand .name .tld { color: var(--lime); }
.footer-brand p { font-size: 14.5px; line-height: 1.6; color: rgba(245,243,238,.55); margin-top: 10px; max-width: 300px; }
.footer-col .title { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--lime); }
.footer-links { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.footer-links a { font-size: 14.5px; color: rgba(245,243,238,.62); }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(245,243,238,.12); font-family: var(--font-mono); font-size: 12px; color: rgba(245,243,238,.4); }
.footer-heart { color: var(--coral); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: inherit; }
.footer-legal a:hover { color: rgba(245,243,238,.7); }

/* Header: nav + søgeboks skubbes til højre; søgeboksen er kompakt og yderst til højre */
.nav-links { margin-left: auto; }
.search-box.search-right { flex: 0 1 240px; max-width: 260px; }
@media (max-width: 720px) {
  .nav-links { margin-left: 0; }
  .search-box.search-right { flex: 1 1 200px; max-width: none; order: 3; }
}

.hero-fallback-lead {
  font-size: 18px; line-height: 1.55; color: rgba(245,243,238,.68);
  max-width: 560px; margin: 22px auto 0;
}
.hero-fallback-lead a { color: var(--lime); }

/* Loading */
.state-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 80px 20px; font-family: var(--font-mono); font-size: 14px; opacity: .75;
}
.spinner {
  width: 34px; height: 34px; border-radius: 50%;
  border: 3px solid rgba(128,128,128,.25); border-top-color: currentColor;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Admin: statistik-rækker */
.stat-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-top: 1px solid rgba(245,243,238,.08); font-size: 14.5px;
}
.stat-path { font-family: var(--font-mono); color: var(--paper); word-break: break-all; }
.stat-num { font-family: var(--font-mono); font-size: 12.5px; color: rgba(245,243,238,.55); white-space: nowrap; }

/* ============ INDHOLDSSIDER ============ */
.content { padding-top: clamp(34px, 5vw, 56px); padding-bottom: clamp(56px, 8vw, 96px); max-width: 820px; }
.content-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.content-head h1 { font-size: clamp(34px, 7vw, 60px); line-height: .98; letter-spacing: -.045em; margin: 14px 0 0; text-wrap: balance; }
.content-lead { font-size: clamp(17px, 2.4vw, 21px); line-height: 1.5; color: #3B423F; margin: 20px 0 0; max-width: 640px; text-wrap: pretty; }
.prose { margin-top: 34px; font-size: 16.5px; line-height: 1.7; color: #2C3230; }
.prose p { margin: 0 0 18px; text-wrap: pretty; }
.prose-h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3.5vw, 28px); letter-spacing: -.03em; margin: 34px 0 12px; }
.prose-list { margin: 0 0 18px; padding-left: 22px; display: flex; flex-direction: column; gap: 9px; }
.prose-list li { padding-left: 4px; }
.prose em { font-style: normal; background: linear-gradient(transparent 62%, rgba(201,242,77,.6) 62%); padding: 0 2px; }

.faq { margin-top: 40px; border-top: 1px solid var(--card-border); padding-top: 24px; }
.faq-item { padding: 18px 0; border-bottom: 1px solid var(--card-border); }
.faq-q { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.faq-a { font-size: 15.5px; line-height: 1.6; color: #4A5150; margin-top: 8px; }

.guide-banner {
  position: relative; height: 160px; border-radius: var(--radius-xl); margin-top: 28px;
  background: linear-gradient(135deg, var(--ink) 0%, #1c2024 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.guide-banner-ring {
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(201,242,77,.25); top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.guide-banner-ring::before {
  content: ''; position: absolute; inset: 24px; border-radius: 50%; border: 1px solid rgba(245,243,238,.1);
}
.guide-banner-icon {
  position: relative; width: 72px; height: 72px; border-radius: 50%; background: var(--lime);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(201,242,77,.35);
}
.content-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.updated { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); margin-top: 34px; }

/* Kontakt */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 26px; margin-top: 32px; align-items: start; }
@media (min-width: 820px) { .contact-layout { grid-template-columns: minmax(0, 1fr) 300px; } }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .field { display: flex; flex-direction: column; gap: 7px; }
.contact-form label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.contact-form input, .contact-form textarea {
  background: var(--white); border: 1px solid var(--card-border); border-radius: 12px;
  padding: 13px 15px; font-size: 15.5px; outline: none; color: var(--ink); width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { align-self: flex-start; }
.form-status { font-family: var(--font-mono); font-size: 13.5px; min-height: 20px; }
.contact-aside { display: flex; flex-direction: column; gap: 14px; }

/* ============ DEAL-KARRUSELLER (forside) ============ */
.carousel {
  display: flex; gap: 14px; overflow-x: auto; padding: 4px 4px 14px; margin-top: 24px;
  scroll-snap-type: x proximity;
}
.deal-card {
  flex: 0 0 208px; scroll-snap-align: start; text-align: left; cursor: pointer;
  background: var(--white); border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color .15s, box-shadow .15s;
}
.deal-card:hover { border-color: var(--ink); box-shadow: 5px 5px 0 var(--lime); }
.deal-thumb {
  height: 130px; background: linear-gradient(150deg, #EDEAE2, #DFDBD1); position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.deal-thumb .initials { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: rgba(13,15,17,.16); }
.deal-badge {
  position: absolute; top: 10px; left: 10px; background: var(--coral); color: var(--white);
  font-family: var(--font-mono); font-weight: 600; font-size: 11px; padding: 4px 8px; border-radius: 6px;
}
.fav-btn {
  position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 0; display: flex; align-items: center; justify-content: center;
  color: var(--muted); cursor: pointer;
}
.fav-btn:hover { color: var(--coral); }
.fav-btn.on { color: var(--coral); }
.deal-body { padding: 12px 14px 14px; }
.deal-cat { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.deal-name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; letter-spacing: -.01em; margin-top: 4px; min-height: 38px; }
.deal-price { display: flex; align-items: baseline; gap: 7px; margin-top: 8px; flex-wrap: wrap; }
.deal-price .now { font-family: var(--font-mono); font-weight: 600; font-size: 17px; }
.deal-price .was { font-family: var(--font-mono); font-size: 12px; color: var(--muted); text-decoration: line-through; }
.deal-shops { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ============ USP / TILLIDS-SEKTION (forside) ============ */
.usp-kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.usp-heading { font-size: clamp(26px, 4.5vw, 38px); line-height: 1.1; letter-spacing: -.03em; margin: 14px 0 0; max-width: 760px; text-wrap: balance; }
.usp-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
@media (min-width: 760px) { .usp-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.usp-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--paper);
  border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center;
}
.usp-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -.01em; margin-top: 16px; }
.usp-desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-top: 8px; max-width: 320px; }

/* ============ ANNONCER (Google AdSense) ============ */
.ad-slot { background: var(--white); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 14px; }
.ad-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 8px; }
.ad-rail { display: none; }
@media (min-width: 1180px) {
  .results-layout.with-ads { grid-template-columns: 268px minmax(0, 1fr) 300px; }
  .ad-rail { display: block; align-self: start; position: sticky; top: 88px; min-width: 260px; }
}

/* Skjul-hjælper til router-views */
[hidden] { display: none !important; }
