/* =============================================
   HotDrops – Skattjakt Design
   Ljust pastelltema · Feber-inspirerat · Discovery-känsla
   ============================================= */

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

:root {
  /* Färger */
  --bg:          #eeeef6;
  --bg-card:     #ffffff;
  --bg-card-hl:  #f5f2ff;
  --border:      rgba(0,0,0,.09);
  --border-hl:   rgba(136,102,204,.24);
  --text:        #111118;
  --text-muted:  #55556a;
  --text-dim:    #9999aa;

  /* Accent – brand-lila + urgency-orange */
  --brand:       #8866cc;
  --brand-deep:  #6a47b5;
  --brand-ink:   #4a2f8a;
  --purple:      #8866cc;
  --hot:         #e63900;
  --hot-glow:    rgba(230,57,0,.18);
  --hot-dim:     #cc3300;
  --warm:        #ff8c00;
  --cool:        #0088ee;
  --green:       #22aa55;

  /* Badges – behåller starka färger för skattjaktskänsla */
  --badge-viral: #e62200;
  --badge-deal:  #00aa44;
  --badge-new:   #0077ee;
  --badge-guide: #8833ee;
  --badge-secret:#dd00bb;
  --badge-sold:  #ee5500;
  --badge-editorial: #4455aa;

  /* Layout */
  --radius:      12px;
  --radius-sm:   7px;
  --gap:         14px;
  --shadow:      0 2px 10px rgba(0,0,0,.07);
  --shadow-lg:   0 8px 28px rgba(0,0,0,.13);
  --transition:  .18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 15px;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1rem;
}


/* ===== TREND STRIP ===== */
.trend-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: .55rem 0;
}
.trend-strip-inner {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.trend-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.trend-label {
  font-size: .72rem;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .08em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.trend-pills {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.trend-pill {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.07);
  padding: .2rem .65rem;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
}
.trend-pill:hover {
  color: var(--brand);
  background: rgba(68,85,204,.1);
  border-color: rgba(68,85,204,.2);
}
.trend-pill--active {
  color: var(--brand-deep);
  background: rgba(136,102,204,.10);
  border-color: rgba(136,102,204,.28);
}
.trend-pill--soon {
  opacity: .45;
  cursor: default;
  font-style: italic;
}
.trend-cats {
  display: flex;
  gap: .3rem .9rem;
  flex-wrap: wrap;
  align-items: center;
}
/* Länkvariant – på artikelsidor */
.trend-cats a {
  font-size: .7rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}
.trend-cats a:hover { color: var(--text-muted); }

/* Knappvariant – på startsidan (filter) */
.trend-cat-btn {
  background: none;
  border: none;
  padding: .15rem .5rem;
  border-radius: 3px;
  font-size: .7rem;
  font-family: inherit;
  color: var(--text-dim);
  cursor: pointer;
  transition: color .2s, background .2s;
  line-height: 1.4;
}
.trend-cat-btn:hover { color: var(--text-muted); }
.trend-cat-btn--active {
  color: var(--brand-deep);
  background: rgba(136,102,204,.10);
  font-weight: 600;
}
.trend-cat-btn--soon {
  opacity: .35;
  cursor: default;
  font-style: italic;
}
@media (max-width: 600px) {
  .trend-cats { display: none; }
}


/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238,238,246,.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.5rem;
}

/* Förenklad header utan nav */
.header-inner--simple {
  justify-content: center;
}

.logo, .logo:visited, .logo:hover {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -.045em;
  color: #1a1a22;
  display: flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-flame-img {
  width: 1.95rem;
  height: 1.95rem;
  margin-right: .42rem;
  flex-shrink: 0;
}
.logo-word { color: #1a1a22; }
.logo-se { color: var(--text-dim); font-weight: 600; font-size: .5em; margin-left: .05em; -webkit-text-stroke: 0; }

.main-nav {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.main-nav a {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: .3rem .6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--text); background: rgba(0,0,0,.06); }
.nav-hot {
  color: var(--hot) !important;
  border: 1px solid rgba(230,57,0,.25);
  background: rgba(230,57,0,.07) !important;
}
.nav-hot:hover { background: rgba(230,57,0,.14) !important; }

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.live-dot {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  color: var(--text-muted);
}
.live-dot span {
  width: 7px;
  height: 7px;
  background: #00ff44;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,68,.6); }
  50%       { opacity: .7; box-shadow: 0 0 0 5px rgba(0,255,68,0); }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: .75rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
  gap: .2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .5rem .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}


/* ===== INTRO BAR ===== */
.intro-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: .5rem 0;
}
.intro-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .75rem;
  color: var(--text-muted);
}
.intro-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--hot);
  font-size: .7rem;
}
.intro-count { margin-left: auto; }
.intro-count span { color: #00ff44; font-weight: 700; }


/* ===== MAIN GRID WRAPPER ===== */
.main-grid-wrap {
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}

/* ===== TOPPLISTAN HEADER ===== */
.toplist-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0 0.5rem;
  flex-wrap: wrap;
}
.toplist-badge {
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 5px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  line-height: 1.3;
  white-space: nowrap;
}
.toplist-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.toplist-count {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-left: auto;
}

/* ===== ENKEL PRODUKTGRID (EPC-sorterad) ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  padding: 0.75rem 0 3rem;
}

/* Hero card — spans 2 columns, taller visual */
.card--hero {
  grid-column: span 2;
}
.card--hero .card-visual,
.card--hero .card-visual--md {
  height: 240px;
}

/* Wide card — spans 2 columns, normal height */
.card--wide {
  grid-column: span 2;
}

/* Rank number watermark inside card visual */
.card-rank {
  position: absolute;
  bottom: 0.4rem;
  right: 0.6rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  font-variant-numeric: tabular-nums;
}
.card--hero .card-rank {
  font-size: 6rem;
  color: rgba(0,0,0,0.06);
}

/* Grid divider strip */
.grid-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(255,80,0,0.04);
  border: 1px solid rgba(255,80,0,0.1);
  border-radius: 6px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.grid-divider::before,
.grid-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,80,0,0.1);
}


/* ===== DISCOVERY GRIDS ===== */
.discovery-grid { margin-bottom: var(--gap); }

.grid-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap);
}

.grid-thirds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.grid-wide-narrow {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap);
}

.grid-narrow-wide {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--gap);
}

.grid-quatro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.card-stack--narrow {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}


/* ===== SECTION DIVIDERS ===== */
.section-divider {
  text-align: center;
  padding: .6rem 0;
  margin-bottom: var(--gap);
  position: relative;
}
.section-divider::before, .section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 180px);
  height: 1px;
  background: var(--border);
}
.section-divider::before { left: 0; }
.section-divider::after  { right: 0; }

.section-divider span {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--bg);
  padding: 0 .75rem;
  position: relative;
  z-index: 1;
}

.section-divider--alt span { color: var(--hot); }
.section-divider--alt::before,
.section-divider--alt::after { background: #3a1500; }


/* ===== CARDS – BASE ===== */
.card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  box-shadow: var(--shadow);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.card--highlight {
  border-color: rgba(68,85,204,.2);
  box-shadow: 0 0 0 1px rgba(68,85,204,.15), 0 4px 20px rgba(68,85,204,.07);
}
.card--highlight:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 8px 28px rgba(68,85,204,.15);
}
.card--secret { border-color: rgba(136,51,238,.25); }
.card--secret:hover { border-color: #8833ee; box-shadow: 0 0 20px rgba(136,51,238,.12); }

.card > a {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card > a:hover .card-title { color: var(--brand); }


/* ===== CARD VISUAL (thumbnail area) ===== */
.card-visual {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.card-visual--md   { height: 200px; }
.card-visual--sm   { height: 110px; }
.card-visual--wide { height: 220px; }
.card-visual--xs   { width: 80px; height: 100%; min-height: 80px; flex-shrink: 0; }

/* === PRODUKTBILDER I KORT === */
.card-product-img {
  max-height: 140px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* === GENERISK VIS (emoji + text, ingen produktbild) === */
.card-generic-vis {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.card-generic-vis .gv-emoji { font-size: 2.2rem; line-height: 1; }
.card-generic-vis .gv-name  { font-size: 13px; font-weight: 900; letter-spacing: -.01em; color: rgba(0,0,0,.45); text-transform: uppercase; line-height: 1.1; text-align: center; }
.card-generic-vis .gv-sub   { font-size: 8px; font-weight: 600; letter-spacing: .1em; color: rgba(0,0,0,.28); text-transform: uppercase; }

/* === EMOJI-STIL PRODUKTBILDER === */
.card-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.card-img-emoji {
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.92);
  box-shadow:
    0 0 0 2px rgba(255,255,255,.12),
    0 8px 28px rgba(0,0,0,.7),
    0 2px 6px rgba(0,0,0,.5);
  filter: saturate(1.4) contrast(1.08) brightness(1.04);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), filter .2s ease, box-shadow .2s ease;
  flex-shrink: 0;
}

/* Storleksvarianterna */
.card-img-emoji--lg { width: 155px; height: 155px; border-width: 5px; }
.card-img-emoji--md { width: 115px; height: 115px; }
.card-img-emoji--sm { width:  78px; height:  78px; border-width: 3px; }
.card-img-emoji--xs { width:  56px; height:  56px; border-width: 2px; }

/* Hover: studsa lite och bli mer levande */
.card:hover .card-img-emoji {
  transform: scale(1.12) rotate(-4deg);
  filter: saturate(1.65) contrast(1.12) brightness(1.07);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.95),
    0 14px 40px rgba(0,0,0,.75),
    0 4px 12px rgba(0,0,0,.55);
}

/* Liten rotation-variation per position så det ser handplacerat ut */
.card-stack .card:nth-child(2) .card-img-emoji { transform: rotate(2deg); }
.card-stack .card:nth-child(3) .card-img-emoji { transform: rotate(-1.5deg); }
.card-stack .card:nth-child(4) .card-img-emoji { transform: rotate(3deg); }
.card-stack .card:nth-child(2):hover .card-img-emoji { transform: scale(1.12) rotate(-2deg); }
.card-stack .card:nth-child(3):hover .card-img-emoji { transform: scale(1.12) rotate(-5deg); }
.card-stack .card:nth-child(4):hover .card-img-emoji { transform: scale(1.12) rotate(-1deg); }

/* XS-kort: bilden sitter till vänster, centrerad vertikalt */
.card--xs .card-img-wrap {
  padding: .6rem;
}

/* Fallback emoji om bilden inte laddar */
.card-img-emoji-fallback {
  font-size: 3.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}

.card-badges {
  position: absolute;
  top: .6rem;
  left: .6rem;
  display: flex;
  gap: .3rem;
  flex-wrap: wrap;
  z-index: 2;
  pointer-events: none;
}

/* Badge som enskild span (utanför card-badges) */
.card-visual > .badge {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 2;
}


/* ===== BADGES ===== */
.badge {
  font-size: .65rem;
  font-weight: 800;
  padding: .2rem .5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.badge--viral  { background: var(--badge-viral); color: #fff; }
.badge--deal   { background: var(--badge-deal); color: #fff; }
.badge--new    { background: var(--badge-new); color: #fff; }
.badge--guide  { background: var(--badge-guide); color: #fff; }
.badge--secret { background: var(--badge-secret); color: #fff; }
.badge--soldout  { background: var(--badge-sold); color: #fff; }
.badge--editorial{ background: var(--badge-editorial); color: #fff; }
.badge--tiktok { background: #000; color: #fff; border: 1px solid #333; }


/* ===== CARD BODY ===== */
.card-body {
  padding: .9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body--sm { padding: .6rem .75rem; }
.card-body--xs {
  padding: .5rem .6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .4rem;
  gap: .5rem;
}

.card-cat {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--hot);
}

.card-time {
  font-size: .65rem;
  color: var(--text-dim);
}

.card-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: .5rem;
  color: var(--text);
  transition: color var(--transition);
  letter-spacing: -.01em;
}
.card-title--sm { font-size: .82rem; margin-bottom: .3rem; font-weight: 700; }
.card-title--xs { font-size: .75rem; margin-bottom: .15rem; font-weight: 700; line-height: 1.25; }

.card-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: .6rem;
}
.card-desc--sm { font-size: .78rem; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
}
.card-footer--sm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .3rem;
}

.card-viewers {
  font-size: .68rem;
  color: var(--text-dim);
}


/* ===== TRENDBAROMETER / HEAT-BAR ===== */
.sokfart {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  flex: 1;
}
.sokfart-arrow { font-size: 1rem; font-weight: 900; color: var(--green); line-height: 1; }
.sokfart-num   { font-size: 1.1rem; font-weight: 900; color: var(--green); font-variant-numeric: tabular-nums; line-height: 1; }
.sokfart-label { font-size: .62rem; font-weight: 600; color: #666; text-transform: uppercase; letter-spacing: .05em; line-height: 1; align-self: center; }

.heat-bar-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .25rem;
}
.heat-bar-label {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}
.heat-bar {
  display: flex;
  gap: 3px;
}
.heat-seg {
  height: 6px;
  width: 20px;
  border-radius: 3px;
  background: rgba(0,0,0,.09);
}
.heat-seg--on { background: #8866cc; }


/* ===== INAKTIV KORTLÄNK (artikel ej klar ännu) ===== */
.card-link-inactive {
  cursor: default;
  pointer-events: none;
}
.card-link-inactive .card-visual::after {
  content: "Artikel kommer snart";
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}

/* ===== XS CARD LAYOUT (horizontal) ===== */
.card--xs > a {
  flex-direction: row;
  align-items: stretch;
}
.card--xs .card-visual--xs {
  border-radius: 0;
}


/* ===== BUY STRIP ===== */
.card-buy-strip {
  background: rgba(0,0,0,.025);
  border-top: 0.5px solid var(--border);
  padding: .5rem .9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-shrink: 0;
}
.card-buy-strip--sm { padding: .35rem .65rem; }
.card-buy-strip--xs { padding: .3rem .5rem; }

.strip-btn {
  font-size: .75rem;
  font-weight: 700;
  color: var(--brand);
  background: rgba(68,85,204,.08);
  border-radius: var(--radius-sm);
  padding: .3rem .7rem;
  transition: background var(--transition);
  white-space: nowrap;
}
.strip-btn:hover { background: rgba(68,85,204,.15); }

.strip-stat {
  font-size: .65rem;
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ===== LOAD MORE ===== */
.load-more-zone {
  text-align: center;
  padding: 2.5rem 0 1rem;
}

.load-more-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 700;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  letter-spacing: .02em;
}
.load-more-btn:hover {
  border-color: var(--hot);
  color: var(--hot);
  background: #1a0800;
}

.load-more-sub {
  font-size: .7rem;
  color: var(--text-dim);
  margin-top: .6rem;
}


/* ===== AFFILIATE BAR ===== */
.affiliate-bar {
  background: #111;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
  font-size: .72rem;
  color: var(--text-dim);
  line-height: 1.5;
}


/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.logo--footer { font-size: 1.1rem; font-weight: 900; margin-bottom: .6rem; }

.footer-brand p {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .3rem;
}
.footer-small { font-size: .72rem !important; color: var(--text-dim) !important; }

.footer-links h4 {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-links a {
  font-size: .82rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--hot); }

.footer-bottom {
  padding: 1rem 1rem;
  text-align: center;
  font-size: .7rem;
  color: var(--text-dim);
}

/* Footer – nuvarande enkel layout */
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem 0 1.5rem;
}
.footer-logo {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.01em;
}
.footer-logo:hover { color: var(--hot); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem 1.4rem;
}
.footer-nav a {
  font-size: .8rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--hot); }
.footer-copy {
  font-size: .7rem;
  color: var(--text-dim);
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  line-height: 1.6;
}


/* ===== LEGAL PAGES (om-oss, integritetspolicy, affiliatepolicy, kontakt) ===== */
.legal-page {
  max-width: 720px;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.legal-h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.15;
}
.legal-updated {
  font-size: .78rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.legal-body p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-body h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin: 2rem 0 .6rem;
  border-left: 3px solid var(--hot);
  padding-left: .7rem;
}
.legal-body a {
  color: var(--hot);
  text-decoration: none;
}
.legal-body a:hover { text-decoration: underline; }
.legal-body code {
  font-size: .82rem;
  background: rgba(0,0,0,.07);
  padding: .15rem .4rem;
  border-radius: 3px;
  color: var(--text-muted);
}

/* ===== BLOG POST PAGE ===== */
.blog-hero {
  background: var(--bg-card);
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
}
.blog-hero .breadcrumb { display: none; }
.blog-hero .post-category {
  display: block;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--hot);
  margin-bottom: .5rem;
}

/* ===== BLOG HERO V2 – split + pill-badge + produktvisual ===== */
.blog-hero--v2 {
  background: linear-gradient(135deg, #f0f0f8 0%, #ece8ff 55%, #e8f0ff 100%);
}

/* ===== FUNKAR-ARTIKLAR – isolerad flex-split utan grid-beroenden ===== */
.funkar-hero-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.funkar-hero-inner > .funkar-text {
  flex: 1;
  min-width: 0;
}
.funkar-hero-inner .badge-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}
@media (max-width: 640px) {
  .funkar-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .funkar-hero-inner .hero-visual {
    align-self: center;
  }
}
.blog-hero--v2 .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.5rem;
}
.blog-hero--v2 .post-category {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--brand);
  background: rgba(68,85,204,.1);
  border: 1px solid rgba(68,85,204,.2);
  padding: .22rem .7rem;
  border-radius: 20px;
  margin-bottom: .65rem;
}
.blog-hero--v2 .blog-meta {
  font-size: .72rem;
  gap: 1rem;
}
.blog-hero--v2 .blog-meta .hide-on-hero { display: none; }
.hero-visual {
  width: 180px;
  height: 180px;
  border-radius: 0;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
  box-shadow: none;
  overflow: visible;
}
.hero-visual--generic {
  background: var(--gv-bg) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  flex-direction: column;
  gap: 4px;
}
.hero-visual--generic .gv-emoji { font-size: 46px; line-height: 1; margin-bottom: 2px; }
.hero-visual--generic .gv-name  { font-size: 17px; font-weight: 900; letter-spacing: -.01em; color: rgba(0,0,0,.5); text-transform: uppercase; line-height: 1.1; text-align: center; }
.hero-visual--generic .gv-sub   { font-size: 9px; font-weight: 600; letter-spacing: .1em; color: rgba(0,0,0,.3); text-transform: uppercase; }

.rt-thumb--generic {
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.2));
}
@media (max-width: 600px) {
  .blog-hero--v2 .container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .hero-visual {
    order: -1;
    margin: 0 auto;
  }
  .blog-meta { justify-content: center; }
  .blog-hero .post-category,
  .blog-hero--v2 .post-category { display: none; }
}
.blog-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.18;
  max-width: 720px;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.blog-meta {
  display: flex;
  gap: 1.25rem;
  font-size: .78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.article-body {
  max-width: 680px;
  margin: 2.5rem auto;
  padding-inline: 1rem;
}
.article-body h2 { font-size: 1.3rem; font-weight: 800; margin: 2rem 0 .7rem; color: var(--text); }
.article-body h3 { font-size: 1.05rem; font-weight: 700; margin: 1.75rem 0 .5rem; color: var(--text); }

/* ===== ARTICLE V2 – Hook alt 4 + H2 + FAQ (testas i stanley, rullas ut om ok) ===== */
.article-body--v2 .article-hook {
  border-left: none;
  padding: .35rem 0;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.article-body--v2 .article-hook::before,
.article-body--v2 .article-hook::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(68,85,204,.3);
  min-width: 1rem;
}
.article-body--v2 .article-hook p {
  text-align: center !important;
  flex: 0 1 480px;
  padding: 0 !important;
}
.article-body--v2 h2 {
  padding-bottom: .45rem;
  border-bottom: 1.5px solid rgba(68,85,204,.2);
}
.article-body--v2 .faq-item {
  background: rgba(68,85,204,.04);
  border-left: 2px solid rgba(68,85,204,.3);
  padding: .75rem .9rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: .5rem;
}
.article-body--v2 .faq-item h3 {
  margin: 0 0 .3rem;
  font-size: 1rem;
}
.article-body--v2 .faq-item p {
  margin-bottom: 0;
  font-size: .97rem;
  line-height: 1.7;
}
.article-body p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.06rem; }
.article-body ul { padding-left: 1.4rem; margin-bottom: 1.1rem; }
.article-body ul li { color: var(--text-muted); margin-bottom: .4rem; line-height: 1.8; font-size: 1.06rem; }
.article-body strong { color: var(--text); }
.article-body p a,
.article-body li a {
  color: var(--brand);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(68,85,204,.35);
  transition: color .15s, text-decoration-color .15s;
}
.article-body p a:hover,
.article-body li a:hover {
  color: var(--hot);
  text-decoration-color: var(--hot);
}

.product-box {
  background: var(--bg-card-hl);
  border: 1.5px solid rgba(68,85,204,.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.75rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.product-box-emoji { font-size: 3.5rem; flex-shrink: 0; }
.product-box-info { flex: 1; min-width: 200px; }
.product-box-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.product-box-info p  { font-size: .9rem; color: var(--text-muted); margin-bottom: .75rem; line-height: 1.6; }
.product-box-info .price { font-size: 1.6rem; font-weight: 900; color: var(--hot); margin-bottom: .75rem; display: block; letter-spacing: -0.02em; }

.btn { display: inline-block; padding: .55rem 1.2rem; border-radius: var(--radius-sm); font-weight: 700; font-size: .85rem; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--hot); color: #fff; }
.btn-primary:hover { background: var(--hot-dim); transform: translateY(-1px); }

/* Stor köpknapp inuti produktbox */
.product-box .btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: .85rem 1.5rem;
  font-size: 1rem;
  letter-spacing: .02em;
}

/* ===== STAT BURST ===== */
.stat-burst {
  display: flex;
  gap: .6rem;
  margin: 1.5rem 0 1.75rem;
}
.stat-burst-item {
  flex: 1;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-top: 2px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.1rem .85rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  box-shadow: var(--shadow);
}
.stat-burst-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: .15rem;
  color: #8866cc;
}
.stat-burst-title {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.stat-burst-sub {
  display: block;
  font-size: .72rem;
  color: var(--text-dim);
  line-height: 1.3;
}
.stat-burst-item--primary {
  border-color: var(--brand);
  background: rgba(68,85,204,.06);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(68,85,204,.12);
  z-index: 1;
}
.stat-burst-item--primary .stat-burst-title { color: var(--brand); }
@media (max-width: 500px) {
  .stat-burst { flex-direction: column; gap: .4rem; }
  .stat-burst-item { flex-direction: row; text-align: left; padding: .75rem 1rem; gap: .75rem; }
  .stat-burst-icon { font-size: 1.4rem; margin-bottom: 0; flex-shrink: 0; }
  .stat-burst-title, .stat-burst-sub { display: inline; }
  .stat-burst-title::after { content: ' '; }
}

/* ===== ANNONS-MÄRKNING ===== */
.annons-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.12);
  padding: .2rem .6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

/* ===== ARTICLE HOOK ===== */
.article-hook {
  border-left: 3px solid var(--hot);
  padding: .75rem 0 .75rem 1.25rem;
  margin: 0 0 1.75rem;
}
.article-hook p {
  font-size: 1.2rem !important;
  line-height: 1.65 !important;
  color: var(--text) !important;
  margin-bottom: 0 !important;
  font-weight: 500;
}

/* ===== PRODUCT IMAGE ===== */
.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.5rem 0;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-image-placeholder {
  font-size: 6rem;
  line-height: 1;
  opacity: .7;
}

/* ===== BUTIKSJÄMFÖRELSE ===== */
.retailer-table {
  background: var(--bg-card);
  border: 1px solid rgba(68,85,204,.15);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.75rem 0;
  box-shadow: var(--shadow);
}
.retailer-table-header {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: .6rem 1rem;
  border-bottom: 0.5px solid var(--border);
  background: rgba(68,85,204,.04);
}
.retailer-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: .75rem 1rem;
  padding: .85rem 1rem;
  border-bottom: 0.5px solid var(--border);
  transition: background .15s;
}
.retailer-row:last-child { border-bottom: none; }
.retailer-row:hover { background: rgba(68,85,204,.03); }

/* ===== PRISLISTA V2 – kortlayout ===== */
.retailer-table--v2 {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.retailer-table--v2 .retailer-table-header {
  font-size: .8rem;
  font-weight: 800;
  color: var(--text);
  padding: .4rem 0 .2rem;
  background: transparent;
  border-bottom: none;
  letter-spacing: 0;
  text-transform: none;
}
.retailer-table--v2 .rt-col-labels { display: none; }
.retailer-table--v2 .retailer-row {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 0.5px solid var(--border);
  box-shadow: var(--shadow);
  padding: .85rem 1rem;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr) auto auto;
  transition: transform .18s, box-shadow .18s;
}
.retailer-table--v2 .retailer-row:last-child { border-bottom: 0.5px solid var(--border); }
.retailer-table--v2 .retailer-row:hover {
  background: var(--bg-card);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.retailer-name-wrap { display: flex; align-items: center; gap: .65rem; min-width: 0; }
.retailer-logo-box {
  width: 40px; height: 28px; flex-shrink: 0;
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  padding: 3px;
  overflow: hidden;
}
.retailer-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.retailer-name-info { display: flex; flex-direction: column; gap: .1rem; min-width: 0; overflow: hidden; }
.retailer-name-top { display: flex; align-items: center; gap: .4rem; min-width: 0; flex-wrap: nowrap; overflow: hidden; }
@media (max-width: 480px) {
  .retailer-name-top { flex-wrap: wrap; }
  .retailer-table--v2 .retailer-row { grid-template-columns: 1fr auto; grid-template-rows: auto auto; }
  .retailer-table--v2 .rt-variant { grid-column: 1; grid-row: 2; }
  .retailer-table--v2 .retailer-price { grid-column: 2; grid-row: 1; }
  .retailer-table--v2 .retailer-btn { grid-column: 2; grid-row: 2; }
}
.retailer-name { font-size: .9rem; font-weight: 700; color: var(--text); }
.retailer-reason,
.retailer-name-wrap .retailer-reason,
.article-body .retailer-reason,
.retailer-table .retailer-reason,
.retailer-table--v2 .retailer-reason {
  font-size: 11px !important;
  color: #6644aa !important;
  font-style: italic;
  margin: 0 !important;
  line-height: 1.2;
  white-space: nowrap;
  display: block;
}
.retailer-tag {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .12rem .38rem;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
  background: rgba(0,0,0,.06);
  color: var(--text-muted);
  flex-shrink: 0;
}
.retailer-tag--best { background: #f0ecfc; color: #6644aa; }
.retailer-tag--premium { background: rgba(136,51,238,.1); color: #6633cc; }
.retailer-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--hot);
  text-align: right;
  white-space: nowrap;
}
.retailer-btn {
  font-size: .82rem;
  font-weight: 700;
  padding: .45rem 1.1rem;
  white-space: nowrap;
  color: #fff !important;
  border: none !important;
  border-radius: 8px;
  background: #6644aa !important;
  box-shadow: none;
  transition: background .15s, transform .15s;
}
.retailer-btn:hover {
  background: #5533aa !important;
  transform: translateY(-1px);
}
/* Sekundär knapp (ej bäst pris) */
.retailer-btn.btn-secondary {
  background: #f0f0f6 !important;
  color: #555 !important;
  box-shadow: none;
}
.retailer-btn.btn-secondary:hover {
  background: #e4e4ee !important;
  transform: translateY(-1px);
}
@media (max-width: 500px) {
  .retailer-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .retailer-price { grid-column: 2; grid-row: 1; }
  .retailer-btn   { grid-column: 1 / -1; grid-row: 2; width: 100%; text-align: center; display: block; }
}

/* ===== LAGERINDIKATOR ===== */
.stock-indicator {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-muted);
  margin: -.5rem 0 1.25rem;
}
.stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.stock-dot--ok  { background: #4dff91; box-shadow: 0 0 6px #4dff91; }
.stock-dot--low { background: #ffb84d; box-shadow: 0 0 6px #ffb84d; animation: pulse-dot 1.5s infinite; }
.stock-dot--out { background: #ff4d4d; box-shadow: 0 0 6px #ff4d4d; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* ===== RETAILER TABLE V2 – produktkort + variantinfo ===== */
.rt-product-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rt-product-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 1.9rem;
  overflow: hidden;
}
.rt-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.rt-product-info { flex: 1; min-width: 0; }
.rt-product-name {
  font-size: .9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .18rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rt-product-meta {
  font-size: .71rem;
  color: var(--text-muted);
  margin-bottom: .28rem;
}
.rt-product-pricing { font-size: .76rem; color: var(--text-dim); }
.rt-product-pricing strong { color: var(--hot); }
.rt-col-labels {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto auto;
  gap: .75rem 1rem;
  padding: .28rem 1rem;
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.rt-variant {
  display: flex;
  align-items: center;
  gap: .45rem;
  min-width: 0;
}
.rt-color-chip {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: inline-block;
}
.rt-color-chip--multi {
  background: conic-gradient(#b09458 0deg 120deg, #3c3535 120deg 240deg, #3a6634 240deg 360deg);
}
.rt-variant-label {
  font-size: .77rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 620px) {
  .retailer-table--v2 .retailer-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: .35rem .75rem;
  }
  .retailer-table--v2 .retailer-name-wrap { grid-column: 1; grid-row: 1; }
  .retailer-table--v2 .rt-variant         { grid-column: 1; grid-row: 2; }
  .retailer-table--v2 .retailer-price      { grid-column: 2; grid-row: 1; }
  .retailer-table--v2 .retailer-btn        { grid-column: 1 / -1; grid-row: 3; width: 100%; text-align: center; display: block; }
  .rt-col-labels                           { display: none; }
  .rt-product-card                         { gap: .7rem; padding: .7rem .9rem; }
  .rt-product-thumb                        { width: 48px; height: 48px; font-size: 1.5rem; }
}

/* ===== URGENCY NOTE ===== */
.urgency-note {
  font-size: .8rem;
  color: var(--text-dim);
  font-style: italic;
  margin: -.75rem 0 1.5rem;
  padding-left: .1rem;
}

/* ===== STICKY MOBILKNAPP ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: .75rem 1rem;
  z-index: 200;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 680px;
  margin: 0 auto;
}
.sticky-cta-info { flex: 1; min-width: 0; }
.sticky-cta-name { display: block; font-size: .8rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta-price { display: block; font-size: 1rem; font-weight: 900; color: var(--hot); }
.sticky-cta .btn-primary { flex-shrink: 0; white-space: nowrap; padding: .65rem 1.25rem; font-size: .9rem; display: inline-block; width: auto; }

@media (max-width: 700px) {
  .sticky-cta { display: block; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1rem;
  z-index: 500;
  transform: translateY(100%);
  transition: transform .35s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,.12);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}
.cookie-text a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-text a:hover { color: var(--text); }
.cookie-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}
.cookie-btn-reject {
  font-size: .82rem;
  padding: .5rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--text-dim);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn-reject:hover { color: var(--text); border-color: rgba(255,255,255,0.3); }
.cookie-btn-accept {
  font-size: .82rem;
  padding: .5rem 1.1rem;
  background: var(--hot);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}
.cookie-btn-accept:hover { background: var(--hot-dim); }
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}

.verdict-box {
  background: rgba(34,170,85,.06);
  border: 1px solid rgba(34,170,85,.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.75rem 0;
}
.verdict-box h3 { color: #1a8844; font-weight: 800; margin-bottom: .6rem; }
.verdict-box p  { color: var(--text-muted); margin: 0; }

.disclaimer {
  font-size: .75rem;
  color: var(--text-dim);
  background: rgba(0,0,0,.04);
  padding: .9rem;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
  margin-top: 2.5rem;
}

/* återanvänd post-grid för related articles */
.section-posts .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}
.section-posts .post-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.section-posts .post-thumb { height: 130px; display: flex; align-items: center; justify-content: center; }
.section-posts .post-thumb img { height: 90px; width: auto; object-fit: contain; }
.section-posts .post-thumb .gv-emoji { font-size: 2rem; line-height: 1; margin-bottom: 2px; }
.section-posts .post-thumb .gv-name  { font-size: 11px; font-weight: 900; letter-spacing: -.01em; color: rgba(0,0,0,.5); text-transform: uppercase; line-height: 1.1; text-align: center; }
.section-posts .post-thumb .gv-sub   { font-size: 7px; font-weight: 600; letter-spacing: .1em; color: rgba(0,0,0,.3); text-transform: uppercase; }
.section-posts .post-thumb:has(.gv-emoji) { flex-direction: column; gap: 2px; }
.section-posts .post-body { padding: .9rem; }
.section-posts .post-category { color: var(--hot); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.section-posts .post-date { font-size: .7rem; color: var(--text-dim); }
.section-posts .post-meta { display: flex; gap: 1rem; margin-bottom: .4rem; }
.section-posts .post-title { font-size: .9rem; font-weight: 700; margin-bottom: .5rem; }
.section-posts .post-title a:hover { color: var(--hot); }
.section-posts .post-excerpt { font-size: .8rem; color: var(--text-muted); margin-bottom: .75rem; }
.section-posts .post-footer { display: flex; }
.section-posts .btn-outline { font-size: .78rem; padding: .4rem .9rem; border: 1px solid #3a1500; border-radius: var(--radius-sm); color: var(--hot); }
.section-posts .btn-outline:hover { background: var(--hot); color: #fff; }

/* ===== SITE INTRO ===== */
.site-intro {
  text-align: center;
  padding: .3rem 1rem .8rem;
}
.site-intro p {
  font-size: .9rem;
  color: var(--text-muted);
  letter-spacing: .01em;
}
.sv-highlight {
  color: var(--brand);
  font-weight: 700;
  font-style: normal;
}

/* ===== DJUPDYK / ANALYS ARTIKLAR ===== */
.verdict-box {
  background: rgba(34,170,85,.05);
  border: 0.5px solid rgba(34,170,85,.2);
  border-left: 3px solid #22aa55;
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
}
.verdict-box--no {
  background: rgba(200,40,40,.05);
  border-color: rgba(200,40,40,.2);
  border-left-color: #cc3333;
}
.verdict-box--maybe {
  background: rgba(180,130,0,.05);
  border-color: rgba(180,130,0,.2);
  border-left-color: #aa8800;
}
.verdict-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #22aa55;
  margin-bottom: .4rem;
  display: block;
}
.verdict-box--no .verdict-label { color: #cc3333; }
.verdict-box--maybe .verdict-label { color: #aa8800; }
.verdict-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.verdict-body {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.verdict-body strong { color: var(--text); }

/* ===== KORT – BAKGRUNDSFÄRGER (v-*) ===== */
.v-purple { background: linear-gradient(160deg, #d0c8ee, #bab0e0); }
.v-teal   { background: linear-gradient(160deg, #b0dce8, #90c8d8); }
.v-tan    { background: linear-gradient(160deg, #ecdcb0, #dcc890); }
.v-rose   { background: linear-gradient(160deg, #f2c4cc, #e4acb8); }
.v-violet { background: linear-gradient(160deg, #ccb4dc, #bc9ccc); }
.v-sage   { background: linear-gradient(160deg, #b4dcbc, #9ccaa4); }
.v-sky    { background: linear-gradient(160deg, #aeccec, #90b8e0); }
.v-amber  { background: linear-gradient(160deg, #fde8b0, #f5d070); }
.v-tan-deep  { background: linear-gradient(160deg, #c49050, #8a5828); }
.v-rose-deep { background: linear-gradient(160deg, #c46080, #8a2c50); }


/* ===== MOBILGRID – 2 per rad ===== */
@media (max-width: 640px) {

  /* Huvudgrid: 3 → 2 kolumner */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Hero-kort fyller hela raden (båda kolumnerna) */
  .card--hero {
    grid-column: span 2;
  }
  .card--hero .card-visual,
  .card--hero .card-visual--md {
    height: 160px;
  }

  /* Wide-kort: span 2 → span 1 så de inte tar hela raden */
  .card--wide {
    grid-column: span 1;
  }

  /* Kortvisualerna lite lägre på smala kolumner */
  .card-visual       { height: 140px; }
  .card-visual--md   { height: 140px; }
  .card-visual--wide { height: 150px; }

  /* Emoji-bilder något mindre */
  .card-img-emoji--lg { width: 100px; height: 100px; }
  .card-img-emoji--md { width:  80px; height:  80px; }

  /* Korttext kompaktare */
  .card-body   { padding: .65rem .7rem; }
  .card-title  { font-size: .88rem; }
  .card-desc   { font-size: .75rem; }
  .card-buy-strip { padding: .4rem .7rem; }
  .strip-btn   { font-size: .7rem; padding: .25rem .5rem; }

  /* Discovery-grids: 3 → 2, 4 → 2 */
  .grid-thirds {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-quatro {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stacked grids på mobil */
  .grid-top,
  .grid-wide-narrow,
  .grid-narrow-wide {
    grid-template-columns: 1fr;
  }

  /* Rankningsvattenstämpel lite mindre */
  .card-rank { font-size: 2.5rem; }
  .card--hero .card-rank { font-size: 4rem; }
}
