/* ============================================================
   GamerSetupLab – Design System
   Retail Light Theme | CWV-Friendly | Accessible
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg: #F6F7F9;
  --surface: #FFFFFF;
  --surface-2: #F1F5F9;
  --border: #E2E8F0;
  --text: #0F172A;
  --text-2: #475569;
  --muted: #64748B;
  --primary: #2563EB;
  --primary-600: #1D4ED8;
  --accent: #7C3AED;
  --success: #16A34A;
  --warning: #F59E0B;
  --danger: #DC2626;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
  --shadow: 0 4px 12px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .05);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, .10), 0 4px 8px rgba(0, 0, 0, .06);

  --header-h: 64px;
  --max-w: 1280px;
  --gap: 24px;
  --section: 72px;
  --card-p: 18px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* ---------- Typography ---------- */
h1 {
  font-size: clamp(2.125rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
}

h3 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  color: var(--text-2);
}

strong {
  color: var(--text);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
}

.section {
  padding: var(--section) 0;
}

.section--alt {
  background: var(--surface);
}

.section--surface2 {
  background: var(--surface-2);
}

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

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

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

.grid-product {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap);
}

.grid-category {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-category {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Flexbox Utils ---------- */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

/* ---------- Spacing Utils ---------- */
.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted);
  font-size: .875rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.site-logo {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.site-logo span {
  color: var(--primary);
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.site-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--text);
  background: var(--surface-2);
  text-decoration: none;
}

/* Categories Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  transition: color .15s, background .15s;
  cursor: pointer;
}

.nav-dropdown-toggle:hover {
  color: var(--text);
  background: var(--surface-2);
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, visibility .18s, transform .18s;
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-2);
  font-size: .875rem;
  font-weight: 500;
  transition: background .12s, color .12s;
}

.nav-dropdown-menu a:hover {
  background: var(--surface-2);
  color: var(--text);
  text-decoration: none;
}

.nav-dropdown-menu a .cat-icon {
  font-size: 1.125rem;
  width: 22px;
  text-align: center;
}

/* Search Bar */
.header-search {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.header-search input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 14px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text);
  font-size: .9rem;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}

.header-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
  background: var(--surface);
}

.header-search button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.header-search button:hover {
  background: var(--primary-600);
}

.header-search button svg {
  width: 15px;
  height: 15px;
}

/* Mobile hamburger */
.btn-menu {
  display: none;
  border: none;
  background: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background .15s;
}

.btn-menu:hover {
  background: var(--surface-2);
}

.btn-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

.btn-menu.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.btn-menu.open span:nth-child(2) {
  opacity: 0;
}

.btn-menu.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--surface);
  z-index: 99;
  overflow-y: auto;
  padding: 16px;
  border-top: 1px solid var(--border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a,
.mobile-nav button.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  text-align: left;
  width: 100%;
  transition: background .12s;
}

.mobile-nav a:hover,
.mobile-nav button.mobile-nav-link:hover {
  background: var(--surface-2);
  text-decoration: none;
}

.mobile-nav .mobile-cat-list {
  padding-left: 16px;
}

.mobile-nav .mobile-cat-list a {
  font-size: .9rem;
  padding: 8px 12px;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .header-search {
    max-width: 100%;
  }

  .btn-menu {
    display: flex;
  }
}

@media (max-width: 600px) {
  .header-search {
    max-width: 200px;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 24px;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s, transform .1s;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(.98);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-600);
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--surface-2);
  color: var(--text);
  text-decoration: none;
}

.btn-sm {
  min-height: 36px;
  padding: 0 16px;
  font-size: .875rem;
}

.btn-lg {
  min-height: 56px;
  padding: 0 32px;
  font-size: 1.0625rem;
}

.btn-full {
  width: 100%;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.badge-primary {
  background: rgba(37, 99, 235, .1);
  color: var(--primary);
}

.badge-accent {
  background: rgba(124, 58, 237, .1);
  color: var(--accent);
}

.badge-success {
  background: rgba(22, 163, 74, .1);
  color: var(--success);
}

.badge-warning {
  background: rgba(245, 158, 11, .12);
  color: #B45309;
}

.badge-new {
  background: rgba(37, 99, 235, .1);
  color: var(--primary);
}

.badge-deal {
  background: rgba(220, 38, 38, .1);
  color: var(--danger);
}

.badge-redaktion {
  background: rgba(124, 58, 237, .12);
  color: var(--accent);
}

.badge-budget {
  background: rgba(22, 163, 74, .1);
  color: var(--success);
}

.badge-pro {
  background: rgba(245, 158, 11, .12);
  color: #B45309;
}

/* ============================================================
   CHIPS (Use-Case / Feature)
   ============================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 500;
  background: var(--surface-2);
  color: var(--text-2);
  border: 1.5px solid var(--border);
  white-space: nowrap;
  transition: background .12s, border-color .12s, color .12s;
}

.chip.active,
.chip:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

button.chip {
  cursor: pointer;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--card-p);
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .875rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--surface-2) 0%, #e8edf5 100%);
}

.product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  min-height: 22px;
}

.product-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.product-card__tagline {
  font-size: .875rem;
  color: var(--text-2);
  margin-bottom: 12px;
  flex-grow: 1;
}

.product-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.product-card__score {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.score-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9375rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(37, 99, 235, .08);
  border: 2px solid rgba(37, 99, 235, .2);
  flex-shrink: 0;
}

.score-circle.high {
  color: var(--success);
  background: rgba(22, 163, 74, .08);
  border-color: rgba(22, 163, 74, .25);
}

.score-label {
  font-size: .8125rem;
  color: var(--muted);
}

.product-card__cta {
  margin-top: auto;
}

/* ============================================================
   SCORE BLOCK (Detail)
   ============================================================ */
.score-block {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.score-block__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.score-big {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.score-big.high {
  color: var(--success);
}

.score-block__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
}

.score-row__label {
  flex: 0 0 160px;
  color: var(--text-2);
}

.score-row__bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.score-row__fill {
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  transition: width .5s ease;
}

.score-row__fill.high {
  background: var(--success);
}

.score-row__val {
  flex: 0 0 36px;
  text-align: right;
  font-weight: 700;
  color: var(--text);
}

/* ============================================================
   CATEGORY TILE
   ============================================================ */
.cat-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: box-shadow .18s, transform .18s, border-color .18s;
  color: var(--text);
}

.cat-tile:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--primary);
  text-decoration: none;
  color: var(--text);
}

.cat-tile__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37, 99, 235, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.cat-tile__name {
  font-size: .9375rem;
  font-weight: 600;
}

.cat-tile__count {
  font-size: .8125rem;
  color: var(--muted);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--surface);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.hero__inner {
  max-width: 720px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, .08);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 16px;
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--text-2);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-bullet {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
}

.trust-bullet svg {
  color: var(--success);
  width: 16px;
  height: 16px;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-heading {
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 6px;
}

.section-heading p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 560px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered p {
  margin: 0 auto;
}

/* ============================================================
   AFFILIATE NOTICE
   ============================================================ */
.affiliate-notice {
  background: rgba(37, 99, 235, .05);
  border: 1px solid rgba(37, 99, 235, .15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .8125rem;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.affiliate-notice svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

/* ============================================================
   TRUST CARDS
   ============================================================ */
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px var(--card-p);
  text-align: center;
}

.trust-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, .08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin: 0 auto 14px;
}

.trust-card h4 {
  margin-bottom: 6px;
}

.trust-card p {
  font-size: .875rem;
}

/* ============================================================
   PICK FINDER WIZARD
   ============================================================ */
.pick-finder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.pick-finder__steps {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.pick-finder__step {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--border);
  transition: background .3s;
}

.pick-finder__step.done {
  background: var(--success);
}

.pick-finder__step.active {
  background: var(--primary);
}

.pick-finder__question {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.pick-finder__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pf-option {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: var(--surface);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}

.pf-option:hover,
.pf-option.selected {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37, 99, 235, .06);
}

.pick-finder__nav {
  display: flex;
  gap: 12px;
}

.pick-finder__results {
  display: none;
}

.pick-finder__results.visible {
  display: block;
}

.pf-note {
  font-size: .8125rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ============================================================
   BLOG CARD
   ============================================================ */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .875rem;
  font-weight: 500;
  background: linear-gradient(135deg, #e8edf5 0%, var(--surface-2) 100%);
  flex-shrink: 0;
}

.blog-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__cat {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: .875rem;
  color: var(--text-2);
  margin-bottom: 14px;
  flex: 1;
}

.blog-card__meta {
  font-size: .8125rem;
  color: var(--muted);
  display: flex;
  gap: 12px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background .12s;
}

.faq-question:hover {
  background: var(--surface-2);
}

.faq-question:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: -3px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .22s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-answer p {
  padding: 0 18px 16px;
  font-size: .9rem;
  color: var(--text-2);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ============================================================
   FILTER SIDEBAR / DRAWER
   ============================================================ */
.filter-sidebar {
  width: 240px;
  flex-shrink: 0;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group__title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.filter-group__help {
  font-size: .8125rem;
  color: var(--muted);
  margin-bottom: 10px;
  font-style: italic;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
  font-size: .875rem;
  color: var(--text-2);
}

.filter-option input[type=checkbox] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

.filter-option:hover {
  color: var(--text);
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.active-filter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: .8125rem;
  font-weight: 500;
}

.active-filter button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  margin-left: 2px;
  cursor: pointer;
}

/* Filter Drawer (Mobile) */
.filter-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 300;
}

.filter-drawer-overlay.open {
  display: block;
}

.filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 100vw);
  background: var(--surface);
  z-index: 301;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .25s ease;
  padding: 20px;
}

.filter-drawer.open {
  transform: translateX(0);
}

.filter-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.filter-drawer__title {
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-close-drawer {
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.btn-close-drawer:hover {
  background: var(--surface-2);
}

/* Sort Dropdown */
.sort-dropdown {
  position: relative;
}

.sort-select {
  appearance: none;
  padding: 9px 32px 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  outline: none;
}

.sort-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  color: var(--muted);
  padding: 14px 0;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb__sep {
  color: var(--border);
}

.breadcrumb__current {
  color: var(--text-2);
  font-weight: 500;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.comparison-table th {
  background: var(--surface-2);
  color: var(--text);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
  position: sticky;
  top: 0;
}

.comparison-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--surface-2);
}

.comparison-table .check {
  color: var(--success);
  font-size: 1.1rem;
}

.comparison-table .cross {
  color: var(--danger);
  font-size: 1.1rem;
}

.comparison-table .highlight td {
  background: rgba(37, 99, 235, .04);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  padding-top: 40px;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  font-size: .875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .12s, background .12s, color .12s;
}

.page-btn:hover,
.page-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.page-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

/* ============================================================
   POST / ARTICLE
   ============================================================ */
.article-header {
  padding: 40px 0 32px;
}

.article-header h1 {
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .875rem;
  color: var(--muted);
  align-items: center;
}

.article-meta .separator {
  color: var(--border);
}

.tldr-box {
  background: rgba(37, 99, 235, .06);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.tldr-box h5 {
  color: var(--primary);
  margin-bottom: 6px;
}

.tldr-box p {
  color: var(--text-2);
  font-size: .9rem;
}

.toc {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 24px 0;
}

.toc h5 {
  margin-bottom: 10px;
}

.toc ol {
  list-style: decimal;
  padding-left: 20px;
}

.toc li {
  margin-bottom: 4px;
}

.toc a {
  color: var(--text-2);
  font-size: .9rem;
}

.toc a:hover {
  color: var(--primary);
}

.article-body h2 {
  margin: 36px 0 14px;
}

.article-body h3 {
  margin: 24px 0 10px;
}

.article-body p {
  margin-bottom: 16px;
  color: var(--text-2);
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.article-body li {
  margin-bottom: 6px;
  color: var(--text-2);
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.author-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 32px 0;
  font-size: .875rem;
  color: var(--text-2);
}

.author-box strong {
  color: var(--text);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: .9375rem;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

/* ============================================================
   SCORE CRITERIA (about.html)
   ============================================================ */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.criteria-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.criteria-card__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  margin-bottom: 8px;
}

.criteria-card h4 {
  margin-bottom: 4px;
}

.criteria-card p {
  font-size: .875rem;
}

.criteria-weight {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

/* ============================================================
   LP (LANDING PAGE) SPECIFICS
   ============================================================ */
.lp-hero {
  background: linear-gradient(135deg, #EFF6FF 0%, #F5F3FF 100%);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.lp-hero h1 {
  margin-bottom: 16px;
}

.lp-hero__sub {
  font-size: 1.125rem;
  color: var(--text-2);
  margin-bottom: 28px;
}

.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.lp-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.lp-feature__icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.lp-feature h3 {
  margin-bottom: 6px;
}

.lp-feature p {
  font-size: .875rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, .7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand .logo span {
  color: rgba(99, 132, 255, 1);
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .55);
  max-width: 260px;
}

.footer-col h5 {
  color: #fff;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: .875rem;
  padding: 4px 0;
  transition: color .12s;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .4);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRODUCT DETAIL LAYOUT
   ============================================================ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-detail-img {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.product-detail-info h1 {
  margin-bottom: 10px;
}

.product-detail-info .tagline {
  font-size: 1.0625rem;
  color: var(--text-2);
  margin-bottom: 16px;
}

.price-note {
  font-size: .8125rem;
  color: var(--muted);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-img {
    position: static;
  }
}

/* ============================================================
   ALERT / NOTICE BLOCKS
   ============================================================ */
.notice {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .875rem;
}

.notice-info {
  background: rgba(37, 99, 235, .07);
  border: 1px solid rgba(37, 99, 235, .2);
  color: #1e3a8a;
}

.notice-warning {
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .25);
  color: #92400e;
}

.notice-success {
  background: rgba(22, 163, 74, .08);
  border: 1px solid rgba(22, 163, 74, .25);
  color: #14532d;
}

.notice-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section: 48px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.625rem;
  }

  .pick-finder {
    padding: 24px 16px;
  }

  .filter-sidebar {
    display: none;
  }

  .btn-filter-toggle {
    display: flex !important;
  }

  .hero {
    padding: 40px 0;
  }
}

.btn-filter-toggle {
  display: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: .9375rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}

.list-check li:last-child {
  border-bottom: none;
}

.list-check li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.list-warn li::before {
  content: "⚠";
  color: var(--warning);
}

.highlight-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.highlight-chip {
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all .15s;
}

.highlight-chip:hover,
.highlight-chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -10000px;
  top: 8px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
}

.skip-link:focus {
  left: 8px;
}

/* Visuals for LP guarantee strips */
.guarantee-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
}

.guarantee-strip .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
}

.guarantee-strip .item span {
  font-size: 1.25rem;
}

/* ─── Article / Post page ─────────────────────────── */
.article-header {
  padding: 40px 0 32px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: .875rem;
  color: var(--muted);
}

.article-meta .separator {
  color: var(--border);
}

.article-body h2 {
  margin: 36px 0 14px;
  font-size: 1.375rem;
}

.article-body h3 {
  margin: 24px 0 10px;
  font-size: 1.125rem;
}

.article-body p {
  margin-bottom: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.article-body li {
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 6px;
}

.article-body code {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .875em;
}

.tldr-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, .06), rgba(124, 58, 237, .04));
  border: 1.5px solid var(--primary-light, #bfdbfe);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.tldr-box h5 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  margin-bottom: 8px;
}

.tldr-box p {
  color: var(--text-2);
  margin: 0;
  font-size: .9375rem;
}

.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 32px;
}

.toc h5 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 12px;
}

.toc ol {
  padding-left: 20px;
}

.toc li {
  font-size: .875rem;
  color: var(--text-2);
  margin-bottom: 6px;
}

.toc a {
  color: var(--primary);
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

.author-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-2);
}

/* ─── Product Detail page ─────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail-img {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9375rem;
}

.price-note {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 10px;
}

@media (max-width: 767px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ─── Notices ─────────────────────────────────────── */
.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: .875rem;
}

.notice-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.notice.notice-info {
  background: rgba(37, 99, 235, .06);
  border: 1px solid rgba(37, 99, 235, .18);
  color: var(--text-2);
}

/* ─── About / Criteria page ───────────────────────── */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.criteria-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  position: relative;
}

.criteria-card__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  margin-bottom: 8px;
}

.criteria-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.criteria-card p {
  font-size: .875rem;
  color: var(--text-2);
  margin: 0;
}

.criteria-weight {
  margin-top: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* ─── LP page ─────────────────────────────────────── */
.lp-hero {
  background: linear-gradient(135deg, var(--surface) 0%, #f0f4ff 100%);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.lp-hero h1 {
  font-size: clamp(1.625rem, 3.5vw, 2.125rem);
  max-width: 700px;
}

.lp-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 580px;
}

.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.lp-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}

.lp-feature__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.lp-feature h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.lp-feature p {
  font-size: .875rem;
  color: var(--text-2);
  margin: 0;
}

/* ─── Contact / Form ──────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: .9375rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color .15s;
  font-family: inherit;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  cursor: pointer;
}

/* ─── Layout helpers ──────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-product {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-center {
  text-align: center;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.gap-8 {
  gap: 8px;
}

.flex {
  display: flex;
}

.btn-full {
  width: 100%;
}

/* ─── Blog card helpers ───────────────────────────── */
.blog-card__cat {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.blog-card__meta {
  display: flex;
  gap: 6px;
  font-size: .75rem;
  color: var(--muted);
  margin-top: 10px;
}

/* ─── Score block additions ───────────────────────── */
.score-block {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.score-block__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.score-big {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  background: var(--surface-2);
  color: var(--text);
  border: 2.5px solid var(--border);
}

.score-big.high {
  background: rgba(5, 150, 105, .1);
  color: var(--success);
  border-color: var(--success);
}

.score-block__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.score-label {
  font-size: .75rem;
  color: var(--muted);
}

/* Footer description */
.footer-desc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .5);
  margin: 0;
}

/* ─── Comparison table helpers ────────────────────── */
.comparison-table .check {
  color: var(--success);
  text-align: center;
}

.comparison-table thead th:first-child,
.comparison-table tbody td:first-child {
  min-width: 180px;
}

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    padding: 32px 0;
  }

  .lp-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-header {
    padding: 24px 0 20px;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    gap: 20px;
  }
}

@media (max-width: 479px) {
  .lp-features {
    grid-template-columns: 1fr;
  }
}

/* ===== GamerSetupLab product visuals / 15 products update ===== */
.footer-heading{color:#fff;font-size:.875rem;text-transform:uppercase;letter-spacing:.06em;margin-bottom:14px;font-weight:700}.footer-links{list-style:none;padding:0;margin:0}.footer-links li{margin:0}.lead-text{font-size:1.0625rem;color:var(--text-2)}.setup-visual{width:100%;height:100%;min-height:170px;border-radius:var(--radius-sm);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:18px;background:linear-gradient(135deg,#eff6ff,#f8fafc);border:1px solid rgba(37,99,235,.12)}.setup-visual--monitore{background:linear-gradient(135deg,#dbeafe,#f8fafc)}.setup-visual--tastaturen{background:linear-gradient(135deg,#ede9fe,#f8fafc)}.setup-visual--maeuse{background:linear-gradient(135deg,#dcfce7,#f8fafc)}.setup-visual__icon{font-size:3rem;line-height:1;margin-bottom:10px;filter:drop-shadow(0 6px 12px rgba(15,23,42,.10))}.setup-visual__brand{font-weight:800;color:var(--text);font-size:1rem}.setup-visual__line{font-size:.8125rem;color:var(--muted);margin-top:4px;max-width:220px}.setup-visual--large{min-height:320px;border-radius:var(--radius)}.setup-visual--large .setup-visual__icon{font-size:5rem}.setup-visual--large .setup-visual__brand{font-size:1.35rem}.product-card__tagline{min-height:88px}.product-detail-info .tagline{font-size:1.0625rem;color:var(--text-2)}.spec-table th{width:220px;color:var(--text);background:var(--surface-2);font-weight:700}.hero__tag{font-weight:700}.breadcrumb .breadcrumb__current{font-weight:700}.product-card--monitore{border-top:4px solid rgba(37,99,235,.35)}.product-card--tastaturen{border-top:4px solid rgba(124,58,237,.35)}.product-card--maeuse{border-top:4px solid rgba(22,163,74,.35)}@media(max-width:767px){.setup-visual--large{min-height:220px}.product-card__tagline{min-height:auto}.spec-table th{width:auto}}


/* ===== GamerSetupLab update: new product categories ===== */
.setup-visual--mikrofone{background:linear-gradient(135deg,#fef3c7,#f8fafc)}
.setup-visual--pcs-laptops{background:linear-gradient(135deg,#e0f2fe,#f8fafc)}
.setup-visual--audio{background:linear-gradient(135deg,#fae8ff,#f8fafc)}
.setup-visual--ergonomie{background:linear-gradient(135deg,#fee2e2,#f8fafc)}
.product-card--mikrofone{border-top:4px solid rgba(245,158,11,.45)}
.product-card--pcs-laptops{border-top:4px solid rgba(14,165,233,.45)}
.product-card--audio{border-top:4px solid rgba(217,70,239,.35)}
.product-card--ergonomie{border-top:4px solid rgba(239,68,68,.35)}
.category-hero{background:var(--surface);border-bottom:1px solid var(--border);padding:38px 0 28px}
.category-hero p{max-width:760px;font-size:1.0625rem;margin-top:10px}
.category-stat-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.category-stat{background:var(--surface-2);border:1px solid var(--border);border-radius:999px;padding:6px 12px;font-size:.875rem;color:var(--text-2);font-weight:600}.product-card__name a{color:var(--text);text-decoration:none}.product-card__name a:hover{color:var(--primary)}
.comparison-table.spec-table th{width:220px}.category-card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:18px}.coming-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:26px}.small-note{font-size:.8125rem;color:var(--muted)}
@media(max-width:767px){.category-hero{padding:28px 0 22px}.comparison-table.spec-table th{width:auto}}

/* ============================================================
   GamerSetupLab – Visual Refresh
   Helle Basis, mehr Gaming-Tech-Akzente, keine überladene RGB-Optik
   ============================================================ */
:root {
  --cyan: #06B6D4;
  --cyan-2: #22D3EE;
  --violet: #8B5CF6;
  --pink: #EC4899;
  --lime: #22C55E;
  --orange: #F97316;
  --gold: #F59E0B;
  --ink: #0B1220;
  --soft-blue: #EFF6FF;
  --soft-cyan: #ECFEFF;
  --soft-violet: #F5F3FF;
  --soft-pink: #FDF2F8;
  --soft-green: #F0FDF4;
  --soft-orange: #FFF7ED;
}

html { background: #f7faff; }

body {
  background:
    radial-gradient(circle at 8% 6%, rgba(37,99,235,.10), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(124,58,237,.10), transparent 30%),
    radial-gradient(circle at 72% 72%, rgba(6,182,212,.08), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f6f8fc 45%, #fbfdff 100%);
}

/* Header: etwas wertiger, aber weiterhin hell und seriös */
.site-header {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(37,99,235,.12);
  box-shadow: 0 1px 0 rgba(15,23,42,.04);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,.55), rgba(124,58,237,.45), rgba(6,182,212,.45), transparent);
  opacity: .65;
}
.site-logo span {
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.header-search input {
  background: rgba(241,245,249,.86);
  border-color: rgba(37,99,235,.14);
}
.header-search input:focus {
  box-shadow: 0 0 0 4px rgba(37,99,235,.12), 0 10px 28px rgba(37,99,235,.10);
}
.header-search button,
.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #06b6d4 100%);
  box-shadow: 0 10px 22px rgba(37,99,235,.20);
}
.header-search button:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 50%, #0891b2 100%);
  box-shadow: 0 12px 26px rgba(37,99,235,.25);
}
.btn-outline {
  background: rgba(255,255,255,.65);
  border-color: rgba(37,99,235,.70);
}
.btn-outline:hover {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-color: transparent;
}
.nav-dropdown-menu {
  border-color: rgba(37,99,235,.14);
  box-shadow: 0 24px 60px rgba(15,23,42,.13), 0 0 0 1px rgba(255,255,255,.70) inset;
}
.nav-dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(37,99,235,.09), rgba(6,182,212,.05));
  color: var(--text);
}

/* Hero: heller Tech-Look mit etwas Tiefe */
.hero,
.category-hero,
.lp-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(37,99,235,.16), transparent 32%),
    radial-gradient(circle at 76% 20%, rgba(124,58,237,.12), transparent 30%),
    radial-gradient(circle at 86% 82%, rgba(6,182,212,.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 48%, #eef6ff 100%);
}
.hero::before,
.category-hero::before,
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.45), transparent 78%);
  pointer-events: none;
}
.hero::after,
.category-hero::after,
.lp-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,.18), rgba(124,58,237,.10) 48%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}
.hero .container,
.category-hero .container,
.lp-hero .container { position: relative; z-index: 1; }
.hero__tag,
.category-stat,
.notice-info .notice-icon {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(37,99,235,.16);
  box-shadow: 0 10px 30px rgba(37,99,235,.08);
}
.hero h1,
.category-hero h1 {
  letter-spacing: -.04em;
}
.hero__sub,
.category-hero p {
  color: #334155;
}
.hero__trust .trust-bullet {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 0 8px 22px rgba(15,23,42,.05);
}

/* Kategorien: eigene Farbakzente je Bereich */
.grid-category .cat-tile {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
}
.grid-category .cat-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  opacity: .95;
}
.grid-category .cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15,23,42,.10);
}
.grid-category .cat-tile:nth-child(1) .cat-tile__icon { background: linear-gradient(135deg,#dbeafe,#cffafe); }
.grid-category .cat-tile:nth-child(1)::before { background: linear-gradient(90deg,#2563eb,#06b6d4); }
.grid-category .cat-tile:nth-child(2) .cat-tile__icon { background: linear-gradient(135deg,#dcfce7,#ccfbf1); }
.grid-category .cat-tile:nth-child(2)::before { background: linear-gradient(90deg,#16a34a,#14b8a6); }
.grid-category .cat-tile:nth-child(3) .cat-tile__icon { background: linear-gradient(135deg,#ede9fe,#fae8ff); }
.grid-category .cat-tile:nth-child(3)::before { background: linear-gradient(90deg,#7c3aed,#d946ef); }
.grid-category .cat-tile:nth-child(4) .cat-tile__icon { background: linear-gradient(135deg,#fdf2f8,#ffedd5); }
.grid-category .cat-tile:nth-child(4)::before { background: linear-gradient(90deg,#ec4899,#f97316); }
.grid-category .cat-tile:nth-child(5) .cat-tile__icon { background: linear-gradient(135deg,#fff7ed,#fef3c7); }
.grid-category .cat-tile:nth-child(5)::before { background: linear-gradient(90deg,#f97316,#f59e0b); }
.grid-category .cat-tile:nth-child(6) .cat-tile__icon { background: linear-gradient(135deg,#eef2ff,#fae8ff); }
.grid-category .cat-tile:nth-child(6)::before { background: linear-gradient(90deg,#4f46e5,#a855f7); }
.grid-category .cat-tile:nth-child(7) .cat-tile__icon { background: linear-gradient(135deg,#ecfdf5,#d1fae5); }
.grid-category .cat-tile:nth-child(7)::before { background: linear-gradient(90deg,#059669,#22c55e); }

/* Produktkarten: lebendiger, ohne überladen zu wirken */
.product-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.88);
  border-color: rgba(37,99,235,.10);
  box-shadow: 0 10px 28px rgba(15,23,42,.055);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  opacity: .9;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(15,23,42,.12);
  border-color: rgba(37,99,235,.22);
}
.product-card__name a {
  color: var(--text);
}
.product-card__name a:hover {
  color: var(--primary);
}
.product-card--monitore::before { background: linear-gradient(90deg,#2563eb,#06b6d4); }
.product-card--maeuse::before { background: linear-gradient(90deg,#16a34a,#14b8a6); }
.product-card--tastaturen::before { background: linear-gradient(90deg,#7c3aed,#d946ef); }
.product-card--mikrofone::before { background: linear-gradient(90deg,#ec4899,#f97316); }
.product-card--pcs-laptops::before { background: linear-gradient(90deg,#f97316,#f59e0b); }
.product-card--audio::before { background: linear-gradient(90deg,#4f46e5,#a855f7); }
.product-card--ergonomie::before { background: linear-gradient(90deg,#059669,#22c55e); }

.setup-visual {
  border: 1px solid rgba(255,255,255,.80);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 12px 28px rgba(15,23,42,.08);
}
.setup-visual--monitore { background: radial-gradient(circle at 70% 20%, rgba(6,182,212,.26), transparent 35%), linear-gradient(135deg,#dbeafe,#f8fafc); }
.setup-visual--maeuse { background: radial-gradient(circle at 70% 20%, rgba(20,184,166,.24), transparent 35%), linear-gradient(135deg,#dcfce7,#f8fafc); }
.setup-visual--tastaturen { background: radial-gradient(circle at 70% 20%, rgba(217,70,239,.24), transparent 35%), linear-gradient(135deg,#ede9fe,#f8fafc); }
.setup-visual--mikrofone { background: radial-gradient(circle at 70% 20%, rgba(249,115,22,.22), transparent 35%), linear-gradient(135deg,#fdf2f8,#fff7ed); }
.setup-visual--pcs-laptops { background: radial-gradient(circle at 70% 20%, rgba(245,158,11,.24), transparent 35%), linear-gradient(135deg,#fff7ed,#f8fafc); }
.setup-visual--audio { background: radial-gradient(circle at 70% 20%, rgba(168,85,247,.24), transparent 35%), linear-gradient(135deg,#eef2ff,#fae8ff); }
.setup-visual--ergonomie { background: radial-gradient(circle at 70% 20%, rgba(34,197,94,.22), transparent 35%), linear-gradient(135deg,#ecfdf5,#f8fafc); }
.setup-visual__icon {
  transform: translateZ(0);
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.14));
}
.setup-visual__brand {
  letter-spacing: -.01em;
}

/* Badges, Chips und Score optisch stärker */
.badge-accent {
  background: linear-gradient(135deg, rgba(124,58,237,.13), rgba(6,182,212,.10));
  color: #5b21b6;
}
.badge-primary {
  background: linear-gradient(135deg, rgba(37,99,235,.13), rgba(6,182,212,.11));
  color: #1d4ed8;
}
.badge-success {
  background: linear-gradient(135deg, rgba(22,163,74,.12), rgba(20,184,166,.10));
}
.badge-warning {
  background: linear-gradient(135deg, rgba(245,158,11,.14), rgba(249,115,22,.10));
}
.chip {
  background: rgba(248,250,252,.90);
  border-color: rgba(148,163,184,.35);
}
.score-circle,
.score-big {
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(6,182,212,.10));
  border-color: rgba(37,99,235,.24);
  box-shadow: 0 8px 18px rgba(37,99,235,.10);
}
.score-circle.high,
.score-big.high {
  background: linear-gradient(135deg, rgba(22,163,74,.14), rgba(20,184,166,.12));
  border-color: rgba(22,163,74,.34);
}

/* Info-/Affiliate-Boxen und Tabellen moderner */
.affiliate-notice,
.notice {
  background: rgba(255,255,255,.72);
  border-color: rgba(37,99,235,.16);
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}
.comparison-wrapper {
  border-radius: var(--radius);
}
.comparison-table th {
  background: linear-gradient(135deg, #eef6ff, #f8fafc);
}
.comparison-table tr:hover td {
  background: rgba(37,99,235,.045);
}
.criteria-card,
.trust-card,
.blog-card {
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 28px rgba(15,23,42,.05);
}
.trust-card__icon,
.criteria-card__label {
  filter: drop-shadow(0 6px 12px rgba(37,99,235,.08));
}

/* Detailseiten: Bild-/Scorebereich etwas hochwertiger */
.product-detail-img,
.product-detail-grid .setup-visual--large {
  box-shadow: 0 24px 56px rgba(15,23,42,.10);
}
.product-detail-info .badge {
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
}
.price-note {
  color: #64748b;
}

/* Footer: dunkler Gaming-Tech-Abschluss */
.site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(37,99,235,.32), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(124,58,237,.26), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0f172a 55%, #111827 100%);
}
.site-footer .site-logo span,
.footer-logo span {
  color: #60a5fa !important;
}
.footer-heading {
  color: #fff;
}

@media (max-width: 768px) {
  .hero::after,
  .category-hero::after,
  .lp-hero::after { opacity: .45; }
  .hero__trust .trust-bullet { border-radius: var(--radius-sm); }
  .product-card:hover { transform: none; }
}

/* writable */

/* ===== GamerSetupLab guide/article update ===== */
.guide-visual{width:100%;min-height:222px;border-radius:var(--radius-sm);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:22px;border:1px solid rgba(37,99,235,.13);background:radial-gradient(circle at 20% 10%,rgba(37,99,235,.16),transparent 36%),linear-gradient(135deg,#eef6ff,#f8fafc)}
.guide-visual--monitor{background:radial-gradient(circle at 18% 10%,rgba(14,165,233,.22),transparent 36%),linear-gradient(135deg,#e0f2fe,#f8fafc)}
.guide-visual--mic{background:radial-gradient(circle at 18% 10%,rgba(236,72,153,.18),transparent 36%),linear-gradient(135deg,#fdf2f8,#f8fafc)}
.guide-visual--pc{background:radial-gradient(circle at 18% 10%,rgba(249,115,22,.18),transparent 36%),linear-gradient(135deg,#fff7ed,#f8fafc)}
.guide-visual--mouse{background:radial-gradient(circle at 18% 10%,rgba(34,197,94,.18),transparent 36%),linear-gradient(135deg,#ecfdf5,#f8fafc)}
.guide-visual--keyboard{background:radial-gradient(circle at 18% 10%,rgba(124,58,237,.18),transparent 36%),linear-gradient(135deg,#f5f3ff,#f8fafc)}
.guide-visual__icon{font-size:2.75rem;margin-bottom:10px;filter:drop-shadow(0 10px 14px rgba(15,23,42,.10))}
.guide-visual__title{font-weight:900;letter-spacing:.02em;color:var(--text);font-size:1rem}
.guide-visual__sub{font-size:.82rem;color:var(--muted);margin-top:4px;max-width:260px}
.article-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:32px;align-items:start}
.article-aside{position:sticky;top:calc(var(--header-h) + 18px)}
.article-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:22px;box-shadow:0 16px 36px rgba(15,23,42,.05)}
.article-body .affiliate-notice{margin:24px 0}
.article-body .product-card{margin-top:12px}
.guide-pills{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.guide-pills a,.guide-pills span{display:inline-flex;align-items:center;padding:6px 12px;border-radius:999px;background:rgba(37,99,235,.08);border:1px solid rgba(37,99,235,.16);font-weight:700;font-size:.82rem;color:var(--primary)}
.guide-recommendation{background:linear-gradient(135deg,rgba(37,99,235,.07),rgba(124,58,237,.06));border:1px solid rgba(37,99,235,.18);border-radius:var(--radius);padding:18px;margin:24px 0}
.guide-recommendation h3{margin-top:0}
.comparison-table.guide-table td:first-child,.comparison-table.guide-table th:first-child{min-width:170px}
@media(max-width:900px){.article-layout{grid-template-columns:1fr}.article-aside{position:static}.guide-visual{min-height:170px}}


/* ===== Price display: visible price ranges for static affiliate pages ===== */
.product-card__price{display:flex;align-items:center;justify-content:space-between;gap:10px;margin:0 0 12px;padding:10px 12px;border-radius:var(--radius-sm);background:linear-gradient(135deg,rgba(37,99,235,.10),rgba(14,165,233,.06));border:1px solid rgba(37,99,235,.16)}
.product-card__price strong{color:var(--text);font-size:1.05rem;line-height:1}
.product-card__price small{color:var(--muted);font-size:.72rem;text-align:right;line-height:1.15;text-transform:uppercase;letter-spacing:.04em;font-weight:700}
.price-box{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 18px;border-radius:var(--radius);background:linear-gradient(135deg,rgba(37,99,235,.10),rgba(124,58,237,.07));border:1px solid rgba(37,99,235,.18)}
.price-box__label{display:block;color:var(--primary);font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.07em;margin-bottom:4px}
.price-box__value{color:var(--text);font-size:1.45rem;line-height:1.1;font-weight:900}
.price-box__hint{color:var(--muted);font-size:.8125rem;margin-top:6px}
@media(max-width:560px){.product-card__price{align-items:flex-start;flex-direction:column;gap:3px}.product-card__price small{text-align:left}.price-box__value{font-size:1.25rem}}
