/* ============================================================
   Geo-SEO-Check — Design-System v0.1.0
   Modern-technisch, hell, Vertrauen + Messung/Radar-Charakter.
   Zwei Produktfarben: --c-seo (Teal) / --c-geo (Violett).
   Produktscope: Wrapper-Klasse .theme-seo / .theme-geo setzt
   --c-accent + --c-accent-soft für alle Kind-Komponenten.
   Mobile-first · A11y · prefers-reduced-motion · Dark-Mode.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Basis (hell) */
  --c-bg: #f6f8fb;
  --c-surface: #ffffff;
  --c-surface-2: #eef2f7;
  --c-text: #101828;
  --c-text-muted: #5b6472;
  --c-border: #dde3ec;
  --c-border-strong: #c3ccd9;

  /* Marke (neutraler Akzent, produktunabhängig) */
  --c-brand: #1d4ed8;
  --c-brand-ink: #1e3a8a;
  --c-brand-soft: #e4ecfd;

  /* Produktfarben */
  --c-seo: #0d9488;          /* Teal — klassische Suche */
  --c-seo-ink: #0f766e;
  --c-seo-soft: #d9f3f0;
  --c-geo: #7c3aed;          /* Violett — KI-Sichtbarkeit */
  --c-geo-ink: #6d28d9;
  --c-geo-soft: #ede7fd;

  /* Aktiver Akzent (wird von .theme-seo/.theme-geo überschrieben) */
  --c-accent: var(--c-brand);
  --c-accent-ink: var(--c-brand-ink);
  --c-accent-soft: var(--c-brand-soft);
  --c-accent-contrast: #ffffff;

  /* Status-Ampel */
  --c-ok: #16a34a;
  --c-ok-soft: #e2f6e8;
  --c-warn: #d97706;
  --c-warn-soft: #fdf0dc;
  --c-fail: #dc2626;
  --c-fail-soft: #fde4e4;

  /* Geometrie & Tiefe */
  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 18px;
  --shadow-s: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
  --shadow-m: 0 4px 10px rgba(16, 24, 40, .07), 0 2px 4px rgba(16, 24, 40, .05);
  --shadow-l: 0 12px 32px rgba(16, 24, 40, .12), 0 4px 10px rgba(16, 24, 40, .06);

  /* Typografie */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "SF Mono", Consolas,
               "Liberation Mono", monospace;

  /* Radar-Grid (dezentes Messraster im Hintergrund) */
  --grid-line: rgba(29, 78, 216, .05);

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --c-bg: #0d1220;
    --c-surface: #161d2e;
    --c-surface-2: #1e2739;
    --c-text: #e7ecf4;
    --c-text-muted: #98a2b3;
    --c-border: #2a3550;
    --c-border-strong: #3c4a68;

    --c-brand: #6d94f5;
    --c-brand-ink: #a8c0fa;
    --c-brand-soft: #1b2a4d;

    --c-seo: #2dd4bf;
    --c-seo-ink: #7bece0;
    --c-seo-soft: #103433;
    --c-geo: #a78bfa;
    --c-geo-ink: #c9b6fc;
    --c-geo-soft: #2b2150;

    --c-accent-contrast: #0d1220;

    --c-ok: #4ade80;
    --c-ok-soft: #12301d;
    --c-warn: #fbbf24;
    --c-warn-soft: #372a10;
    --c-fail: #f87171;
    --c-fail-soft: #3d1717;

    --shadow-s: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-m: 0 4px 12px rgba(0, 0, 0, .45);
    --shadow-l: 0 14px 36px rgba(0, 0, 0, .55);

    --grid-line: rgba(109, 148, 245, .06);
  }
}

/* Produkt-Scopes — auf <body>, <main> oder beliebigen Wrapper setzen */
.theme-seo {
  --c-accent: var(--c-seo);
  --c-accent-ink: var(--c-seo-ink);
  --c-accent-soft: var(--c-seo-soft);
}
.theme-geo {
  --c-accent: var(--c-geo);
  --c-accent-ink: var(--c-geo-ink);
  --c-accent-soft: var(--c-geo-soft);
}

/* ---------- 2. Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;                /* kein Seiten-Overflow */
  background: var(--c-bg);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
}

img, svg, video { max-width: 100%; height: auto; }

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 .5em; }
h1 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1em; }

a { color: var(--c-accent-ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--c-accent); }

code, .mono { font-family: var(--font-mono); font-size: .92em; }

::selection { background: var(--c-accent-soft); }

/* Fokus-Stile — deutlich sichtbar, nur bei Tastatur */
:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* Screenreader-only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-surface); color: var(--c-text);
  padding: .6rem 1rem; border-radius: var(--radius-s);
  box-shadow: var(--shadow-m); z-index: 100;
}
.skip-link:focus { left: .75rem; top: .75rem; }

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: 68rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
.container--narrow { max-width: 44rem; }

.section { padding-block: 2.5rem; }
@media (min-width: 48rem) { .section { padding-block: 4rem; } }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  min-width: 0;
}
@media (min-width: 48rem) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  min-width: 0;
}
@media (min-width: 48rem) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.stack-s > * + * { margin-top: .5rem; }
.stack-m > * + * { margin-top: 1rem; }

.table-wrap { overflow-x: auto; max-width: 100%; }

/* ---------- 4. Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--c-surface) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .7rem;
  min-width: 0;
}

.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em;
  color: var(--c-text); text-decoration: none;
  white-space: nowrap;
}
.brand:hover { color: var(--c-text); }
.brand__mark {
  width: 30px; height: 30px; flex: none;
  color: var(--c-brand);
}
.brand__word-accent { color: var(--c-brand); }

.nav { display: flex; align-items: center; gap: .25rem; flex-wrap: wrap; }
.nav a {
  display: inline-block;
  padding: .45rem .75rem;
  border-radius: var(--radius-s);
  color: var(--c-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
}
.nav a:hover { color: var(--c-text); background: var(--c-surface-2); }
.nav a[aria-current="page"] { color: var(--c-accent-ink); background: var(--c-accent-soft); }

/* Produkt-Pill in der Nav (SEO grün / GEO violett) */
.nav a.nav__pill-seo { color: var(--c-seo-ink); }
.nav a.nav__pill-seo:hover { background: var(--c-seo-soft); }
.nav a.nav__pill-geo { color: var(--c-geo-ink); }
.nav a.nav__pill-geo:hover { background: var(--c-geo-soft); }

/* ---------- 5. Footer ---------- */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--c-border);
  background: var(--c-surface);
  color: var(--c-text-muted);
  font-size: .9rem;
}
.site-footer__inner {
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
  align-items: center; justify-content: space-between;
  padding-block: 1.5rem;
}
.site-footer a { color: var(--c-text-muted); }
.site-footer a:hover { color: var(--c-text); }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 1rem; padding: 0; margin: 0; list-style: none; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding-block: 3rem 2.5rem;
  text-align: center;
  overflow: clip;
}
@media (min-width: 48rem) { .hero { padding-block: 5rem 3.5rem; } }

/* Radar-Ringe hinter dem Hero */
.hero::before {
  content: "";
  position: absolute; inset: -40% -20% auto;
  height: 180%;
  background:
    radial-gradient(circle at 50% 30%,
      transparent 0 119px, var(--grid-line) 120px 122px,
      transparent 123px 199px, var(--grid-line) 200px 202px,
      transparent 203px 299px, var(--grid-line) 300px 302px,
      transparent 303px);
  pointer-events: none;
  z-index: -1;
}

.hero__kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .3rem .85rem;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: var(--c-surface);
  color: var(--c-text-muted);
  font-size: .85rem; font-weight: 600;
  letter-spacing: .02em;
}
.hero__lead {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  color: var(--c-text-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

/* ---------- 7. Karten (generisch) ---------- */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  padding: 1.25rem;
  min-width: 0;
}
@media (min-width: 48rem) { .card { padding: 1.75rem; } }

/* ---------- 8. Produkt-Karten (Landing) ---------- */
.product-card {
  position: relative;
  display: flex; flex-direction: column; gap: .9rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-accent);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
  padding: 1.5rem 1.25rem;
  min-width: 0;
  transition: box-shadow .2s ease, transform .2s ease;
}
@media (min-width: 48rem) { .product-card { padding: 2rem 1.75rem; } }
.product-card:hover { box-shadow: var(--shadow-l); transform: translateY(-2px); }

.product-card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: var(--radius-m);
  background: var(--c-accent-soft);
  color: var(--c-accent);
}
.product-card__tag {
  align-self: flex-start;
  padding: .2rem .7rem;
  border-radius: 999px;
  background: var(--c-accent-soft);
  color: var(--c-accent-ink);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.product-card__title { margin: 0; }
.product-card__list {
  margin: 0; padding: 0; list-style: none;
  color: var(--c-text-muted); font-size: .95rem;
}
.product-card__list li {
  padding-left: 1.5rem; position: relative; margin-bottom: .35rem;
}
.product-card__list li::before {
  content: ""; position: absolute; left: .2rem; top: .55em;
  width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--c-accent);
}
.product-card__price {
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px dashed var(--c-border);
  color: var(--c-text-muted);
  font-size: .92rem;
}
.product-card__price strong { color: var(--c-text); }

/* ---------- 9. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  min-height: 44px;                 /* Touch-Target */
  border: 1px solid transparent;
  border-radius: var(--radius-m);
  font: inherit; font-weight: 600; font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, box-shadow .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--c-accent);
  color: var(--c-accent-contrast);
  box-shadow: var(--shadow-s);
}
.btn--primary:hover { filter: brightness(1.08); box-shadow: var(--shadow-m); }

.btn--ghost {
  background: transparent;
  border-color: var(--c-border-strong);
  color: var(--c-text);
}
.btn--ghost:hover { background: var(--c-surface-2); }

.btn--soft {
  background: var(--c-accent-soft);
  color: var(--c-accent-ink);
}
.btn--soft:hover { filter: brightness(.97); }

.btn--block { width: 100%; }

.btn[disabled], .btn--disabled {
  background: var(--c-surface-2);
  color: var(--c-text-muted);
  border-color: var(--c-border);
  box-shadow: none;
  cursor: not-allowed;
  filter: none;
}
.btn[disabled]:hover, .btn--disabled:hover { filter: none; box-shadow: none; }
.btn[disabled]:active, .btn--disabled:active { transform: none; }

/* ---------- 10. Formulare ---------- */
.form { display: grid; gap: 1rem; min-width: 0; }

.field { display: grid; gap: .35rem; min-width: 0; }
.field__label { font-weight: 600; font-size: .95rem; }
.field__hint { color: var(--c-text-muted); font-size: .85rem; margin: 0; }
.field__error { color: var(--c-fail); font-size: .85rem; margin: 0; }

.input {
  width: 100%;
  min-width: 0;
  padding: .7rem .9rem;
  min-height: 44px;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-m);
  background: var(--c-surface);
  color: var(--c-text);
  font: inherit;
}
.input::placeholder { color: var(--c-text-muted); opacity: .8; }
.input:focus-visible { outline-offset: 0; border-color: var(--c-accent); }
.input[aria-invalid="true"] { border-color: var(--c-fail); }

.checkbox {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--c-text-muted);
  cursor: pointer;
}
.checkbox input[type="checkbox"] {
  flex: none;
  width: 1.25rem; height: 1.25rem;
  margin-top: .1rem;
  accent-color: var(--c-accent);
  cursor: pointer;
}

/* ---------- 11. Score-Ring & Badge ---------- */
/* Nutzung: <div class="score-ring" style="--score:73" role="img"
            aria-label="Gesamt-Score 73 von 100">
              <span class="score-ring__value">73</span>
              <span class="score-ring__label">/ 100</span>
            </div> */
.score-ring {
  --score: 0;                       /* 0–100, inline setzen */
  --ring-size: 9rem;
  --ring-width: 12px;
  position: relative;
  width: var(--ring-size); height: var(--ring-size);
  border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  background:
    conic-gradient(var(--c-accent) calc(var(--score) * 1%), var(--c-surface-2) 0);
}
.score-ring::before {
  content: "";
  position: absolute; inset: var(--ring-width);
  border-radius: 50%;
  background: var(--c-surface);
  box-shadow: inset 0 1px 3px rgba(16, 24, 40, .08);
}
.score-ring__value {
  position: relative;
  font-family: var(--font-mono);
  font-size: calc(var(--ring-size) * .3);
  font-weight: 700;
  line-height: 1;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}
.score-ring__label {
  position: relative;
  color: var(--c-text-muted);
  font-size: .85rem;
}
.score-ring--large { --ring-size: 12rem; --ring-width: 14px; }
.score-ring--small { --ring-size: 5.5rem; --ring-width: 8px; }

.score-badge {
  display: inline-flex; align-items: baseline; gap: .3rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: var(--c-accent-soft);
  color: var(--c-accent-ink);
  font-family: var(--font-mono); font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.score-badge small { font-weight: 400; opacity: .75; }

/* ---------- 12. Section-Karten (Prüfbereiche mit Ampel) ---------- */
.section-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 5px solid var(--c-border-strong);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 1.1rem 1.25rem;
  min-width: 0;
}
.section-card + .section-card { margin-top: .9rem; }

.section-card--ok   { border-left-color: var(--c-ok); }
.section-card--warn { border-left-color: var(--c-warn); }
.section-card--fail { border-left-color: var(--c-fail); }

.section-card__head {
  display: flex; align-items: center; gap: .6rem;
  flex-wrap: wrap;
}
.section-card__title { margin: 0; font-size: 1.05rem; flex: 1 1 auto; min-width: 0; }
.section-card__summary { margin: .5rem 0 0; color: var(--c-text-muted); }
.section-card__details { margin: .5rem 0 0; font-size: .95rem; }
.section-card__reco {
  margin: .75rem 0 0;
  padding: .6rem .8rem;
  border-radius: var(--radius-s);
  background: var(--c-surface-2);
  font-size: .92rem;
}
.section-card__reco strong { color: var(--c-accent-ink); }

/* Status-Ampel-Chips */
.status {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .15rem .65rem;
  border-radius: 999px;
  font-size: .8rem; font-weight: 700;
  white-space: nowrap;
}
.status::before {
  content: ""; width: .55rem; height: .55rem; border-radius: 50%;
  background: currentColor;
}
.status--ok   { background: var(--c-ok-soft);   color: var(--c-ok); }
.status--warn { background: var(--c-warn-soft); color: var(--c-warn); }
.status--fail { background: var(--c-fail-soft); color: var(--c-fail); }

/* ---------- 13. Locked-Karte (gesperrte Sections im Teaser) ---------- */
.locked-card {
  position: relative;
  background: var(--c-surface);
  border: 1px dashed var(--c-border-strong);
  border-radius: var(--radius-m);
  padding: 1.1rem 1.25rem;
  min-width: 0;
  overflow: clip;
}
.locked-card + .locked-card, .section-card + .locked-card { margin-top: .9rem; }

.locked-card__head {
  display: flex; align-items: center; gap: .6rem;
}
.locked-card__lock {
  flex: none;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent-ink);
}
.locked-card__title { margin: 0; font-size: 1.05rem; }

/* Platzhaltertext: dezent geblurrt, nicht selektier-/vorlesbar */
.locked-card__blur {
  margin: .6rem 0 0;
  color: var(--c-text-muted);
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}
.locked-card__cta { margin: .75rem 0 0; font-size: .9rem; }

/* ---------- 14. Progress / Spinner (laufendes Audit) ---------- */
.spinner {
  display: inline-block;
  width: 1.4rem; height: 1.4rem;
  border: 3px solid var(--c-accent-soft);
  border-top-color: var(--c-accent);
  border-radius: 50%;
  animation: sc-spin .9s linear infinite;
  vertical-align: middle;
}
.spinner--large { width: 2.6rem; height: 2.6rem; border-width: 4px; }

@keyframes sc-spin { to { transform: rotate(360deg); } }

.progress-box {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 2.5rem 1.25rem;
  text-align: center;
}
.progress-box__text { color: var(--c-text-muted); margin: 0; }

.progress-bar {
  width: 100%; max-width: 22rem;
  height: .55rem;
  border-radius: 999px;
  background: var(--c-surface-2);
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%; width: 40%;
  border-radius: 999px;
  background: var(--c-accent);
  animation: sc-indeterminate 1.6s ease-in-out infinite;
}
@keyframes sc-indeterminate {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(280%); }
}

/* ---------- 15. Preis-Karten ---------- */
.price-card {
  display: flex; flex-direction: column; gap: .75rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  padding: 1.5rem 1.25rem;
  text-align: center;
  min-width: 0;
}
.price-card--featured {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-m);
}
.price-card__name { margin: 0; font-size: 1rem; color: var(--c-text-muted); font-weight: 600; }
.price-card__amount {
  font-family: var(--font-mono);
  font-size: 2.1rem; font-weight: 700;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}
.price-card__amount small { font-size: 1rem; color: var(--c-text-muted); font-weight: 400; }
.price-card__list {
  margin: 0; padding: 0; list-style: none;
  color: var(--c-text-muted); font-size: .92rem;
  text-align: left;
}
.price-card__list li { padding-left: 1.4rem; position: relative; margin-bottom: .3rem; }
.price-card__list li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--c-accent); font-weight: 700;
}
.price-card .btn { margin-top: auto; }

/* ---------- 16. Hinweis-Boxen ---------- */
.note, .warn {
  border-radius: var(--radius-m);
  padding: .9rem 1.1rem;
  font-size: .95rem;
  margin-block: 1rem;
}
.note {
  background: var(--c-accent-soft);
  border: 1px solid color-mix(in srgb, var(--c-accent) 30%, transparent);
  color: var(--c-text);
}
.warn {
  background: var(--c-warn-soft);
  border: 1px solid color-mix(in srgb, var(--c-warn) 40%, transparent);
  color: var(--c-text);
}
.note > :last-child, .warn > :last-child { margin-bottom: 0; }

/* ---------- 17. Schritte („So funktioniert's") ---------- */
.step {
  display: flex; flex-direction: column; gap: .5rem;
  text-align: center; align-items: center;
}
.step__num {
  display: grid; place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--c-brand-soft);
  color: var(--c-brand-ink);
  font-family: var(--font-mono); font-size: 1.25rem; font-weight: 700;
}
.step__title { margin: 0; font-size: 1.05rem; }
.step__text { margin: 0; color: var(--c-text-muted); font-size: .95rem; }

/* ---------- 18. Utilities ---------- */
.text-center { text-align: center; }
.text-muted { color: var(--c-text-muted); }
.buy-hint { margin: .5rem 0 0; font-size: .85rem; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.hidden { display: none !important; }

.badge {
  display: inline-block;
  padding: .15rem .6rem;
  border-radius: 999px;
  background: var(--c-surface-2);
  color: var(--c-text-muted);
  font-size: .78rem; font-weight: 600;
}

/* ---------- 19. Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .spinner { border-top-color: var(--c-accent); }
  .progress-bar__fill { width: 100%; transform: none; opacity: .55; }
  .product-card:hover { transform: none; }
}
