:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-alt: #f1f5f1;
  --text: #17201b;
  --muted: #5f6b63;
  --accent: #1f3d2b;
  --accent-hover: #2b533b;
  --accent-soft: rgba(31, 61, 43, 0.08);
  --border: #dfe5df;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 18px;
  --max-width: 1080px;
  --content-width: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.container { width: min(100% - 32px, var(--max-width)); margin: 0 auto; }
.narrow { max-width: var(--content-width); }

a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

/* Header / navigation */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--muted); font-weight: 700; }
.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { background: var(--accent-soft); color: var(--accent); }

/* Hero */
.hero { padding: 48px 0 24px; }
.hero-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--surface-alt) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 48px 32px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}
h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero p { margin: 0; max-width: 720px; font-size: 1.08rem; color: var(--muted); }
.hero-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-secondary { border: 1px solid var(--border); color: var(--text); background: #fff; }
.btn-secondary:hover { border-color: #c9d3ca; background: #f8faf8; }

/* Sections & cards */
.section { padding: 28px 0; }
.section-lead { color: var(--muted); max-width: 720px; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.card h3 { margin-top: 0; }
.card-link { text-decoration: none; color: inherit; display: block; transition: 0.2s ease; }
.card-link:hover { transform: translateY(-2px); border-color: #c9d3ca; }
.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Breadcrumbs */
.breadcrumb { padding: 18px 0 0; font-size: 0.9rem; color: var(--muted); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumb li::after { content: "›"; margin-left: 6px; color: var(--border); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { text-decoration: none; }

/* Article typography */
.article { padding: 24px 0 48px; }
.article h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.article .meta { color: var(--muted); font-size: 0.92rem; margin: 6px 0 24px; }
.article h2 { margin-top: 40px; margin-bottom: 12px; font-size: 1.6rem; line-height: 1.25; }
.article h3 { margin-top: 28px; margin-bottom: 8px; font-size: 1.2rem; }
.article p, .article li { color: #26302a; }
.article ul, .article ol { padding-left: 22px; }
.article li { margin-bottom: 8px; }
.lead { font-size: 1.15rem; color: var(--muted); }

/* TOC */
.toc {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.toc strong { display: block; margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 20px; }
.toc a { text-decoration: none; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 20px 0; }
table { border-collapse: collapse; width: 100%; min-width: 480px; background: var(--surface); }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: var(--surface-alt); font-size: 0.95rem; }
tr:last-child td { border-bottom: none; }

/* Callout / info boxes */
.callout {
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 22px 0;
}
.callout strong { color: var(--accent); }

/* FAQ */
.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 4px 18px;
  margin-bottom: 12px;
}
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; }
.faq details[open] summary { border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.faq p { margin-top: 0; }

/* CTA box */
.cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  margin: 40px 0;
  text-align: center;
}
.cta h2 { color: #fff; margin-top: 0; }
.cta p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 20px; }
.cta .btn-secondary { background: #fff; border-color: #fff; }

/* Footer */
.site-footer { padding: 48px 0 42px; margin-top: 24px; }
.footer-inner {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}
.footer-inner a { color: var(--muted); text-decoration: none; margin-right: 14px; }
.footer-inner a:hover { color: var(--accent); }
.disclosure { font-size: 0.85rem; color: var(--muted); background: var(--surface-alt); border-radius: 12px; padding: 14px 18px; margin-top: 20px; }

/* Responsive */
@media (max-width: 820px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-card { padding: 36px 22px; }
  .nav { justify-content: center; }
}

/* ---------- Produktkarten ---------- */
.produkte { display: grid; gap: 22px; margin: 24px 0; }
.produkt {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.produkt-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.produkt-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 160px;
  overflow: hidden;
}
.produkt-media img { width: 100%; height: auto; object-fit: contain; }
.produkt-body h3 { margin: 4px 0 6px; font-size: 1.3rem; }
.produkt .marke { color: var(--muted); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.produkt .bewertung { color: #b8860b; font-weight: 700; margin: 6px 0; }
.produkt .bewertung span { color: var(--muted); font-weight: 400; margin-left: 6px; }
.produkt .kurz { color: #26302a; margin: 8px 0 14px; }
.produkt .specs { list-style: none; padding: 0; margin: 0 0 14px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 18px; }
.produkt .specs li { font-size: 0.92rem; color: var(--muted); }
.produkt .specs b { color: var(--text); font-weight: 700; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 14px 0; }
.pros-cons ul { list-style: none; padding: 0; margin: 0; font-size: 0.92rem; }
.pros-cons li { margin-bottom: 5px; }
.pros li::before { content: "✓ "; color: var(--accent); font-weight: 700; }
.cons li::before { content: "✕ "; color: #b04a3a; font-weight: 700; }
.produkt .preis-zeile { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 6px 0 14px; }
.produkt .preis { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.produkt .preis small { font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.produkt .stand { font-size: 0.8rem; color: var(--muted); }
.affiliate-hinweis { font-size: 0.8rem; color: var(--muted); margin-top: 8px; }
@media (max-width: 640px) {
  .produkt { grid-template-columns: 1fr; }
  .produkt .specs, .pros-cons { grid-template-columns: 1fr; }
}
