:root {
  --warm-yellow: #F5C518;
  --soft-yellow: #FFF8E1;
  --soft-green: #E8F5E9;
  --green-accent: #66BB6A;
  --green-dark: #388E3C;
  --light-blue: #E3F2FD;
  --blue-accent: #42A5F5;
  --text-primary: #2D3436;
  --text-secondary: #636E72;
  --bg-warm: #FFFDF7;
  --card-shadow: 0 2px 12px rgba(0,0,0,0.08);
  --card-hover: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 12px;
  --max-width: 1200px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--bg-warm);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-accent); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 3px solid var(--warm-yellow);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo svg { width: 36px; height: 36px; }
.logo span { color: var(--green-dark); }

/* Navigation */
.main-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--soft-yellow);
  color: var(--text-primary);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #fff;
    padding: 12px 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--soft-yellow) 0%, var(--soft-green) 100%);
  padding: 60px 0;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 28px;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--card-shadow);
}
.hero-badge svg { width: 18px; height: 18px; }

/* Category Cards */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px 0;
}
.category-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.category-card:hover {
  box-shadow: var(--card-hover);
  transform: translateY(-3px);
}
.category-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-card .card-icon svg { width: 28px; height: 28px; }
.category-card h3 { font-size: 1.15rem; font-weight: 700; }
.category-card p { color: var(--text-secondary); font-size: 0.95rem; flex: 1; }
.category-card .card-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 24px 0;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.product-card:hover { box-shadow: var(--card-hover); transform: translateY(-2px); }
.product-img {
  height: 220px;
  background: var(--soft-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-img svg { width: 64px; height: 64px; opacity: 0.3; }
.age-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green-dark);
  color: #fff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 700;
}
.product-body { padding: 20px; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.product-body p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 12px; }
.product-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.product-rating {
  display: flex;
  gap: 2px;
}
.product-rating svg { width: 16px; height: 16px; color: var(--warm-yellow); fill: var(--warm-yellow); }
.product-price { font-weight: 700; font-size: 1.1rem; color: var(--green-dark); }
.dev-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.dev-tag {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
}
.dev-tag.motorik { background: #E3F2FD; color: #1565C0; }
.dev-tag.kreativ { background: #F3E5F5; color: #7B1FA2; }
.dev-tag.kognitiv { background: #FFF3E0; color: #E65100; }
.dev-tag.sozial { background: #E8F5E9; color: #2E7D32; }
.dev-tag.sprache { background: #FCE4EC; color: #C62828; }

.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm-yellow);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}
.btn-amazon:hover { background: #e6b800; color: var(--text-primary); }
.btn-amazon svg { width: 18px; height: 18px; }

/* Section Headings */
.section-heading {
  text-align: center;
  padding: 48px 0 8px;
}
.section-heading h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.section-heading p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* Article Content */
.article-hero {
  background: linear-gradient(135deg, var(--soft-green) 0%, var(--light-blue) 100%);
  padding: 48px 0;
}
.article-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.25;
}
.article-meta {
  display: flex;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.article-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--soft-yellow);
}
.article-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}
.article-content p {
  margin-bottom: 16px;
}
.article-content ul, .article-content ol {
  margin: 0 0 16px 24px;
}
.article-content li { margin-bottom: 6px; }

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.comparison-table th {
  background: var(--soft-green);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--soft-yellow); }

/* Info Boxes */
.info-box {
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 24px 0;
  display: flex;
  gap: 16px;
}
.info-box svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.info-box.tip { background: var(--soft-green); border-left: 4px solid var(--green-accent); }
.info-box.warning { background: #FFF3E0; border-left: 4px solid #FFA726; }
.info-box.info { background: var(--light-blue); border-left: 4px solid var(--blue-accent); }

/* FAQ Section */
.faq-section { padding: 40px 0; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-family: inherit;
}
.faq-question svg { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-answer.open {
  padding: 0 24px 18px;
  max-height: 500px;
}
.faq-answer p { color: var(--text-secondary); }

/* Affiliate Disclosure */
.affiliate-notice {
  background: var(--soft-yellow);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 24px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.affiliate-notice svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* Footer */
.site-footer {
  background: var(--text-primary);
  color: #ccc;
  padding: 48px 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-col a { color: #aaa; display: block; padding: 4px 0; font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 0.85rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: #888;
}

/* Breadcrumb */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb span { margin: 0 6px; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 1000;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { flex: 1; min-width: 280px; font-size: 0.9rem; color: var(--text-secondary); }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
}
.cookie-btn.accept { background: var(--green-dark); color: #fff; }
.cookie-btn.reject { background: #eee; color: var(--text-primary); }

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

/* TOC */
.toc {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  box-shadow: var(--card-shadow);
}
.toc h4 { margin-bottom: 12px; font-size: 0.95rem; }
.toc ol { margin-left: 20px; }
.toc li { margin-bottom: 6px; }
.toc a { font-size: 0.9rem; }

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
@media (max-width: 640px) { .pros-cons { grid-template-columns: 1fr; } }
.pros, .cons {
  padding: 20px;
  border-radius: var(--radius);
}
.pros { background: var(--soft-green); }
.cons { background: #FFF3E0; }
.pros h4, .cons h4 { margin-bottom: 10px; font-size: 0.95rem; }
.pros li, .cons li {
  list-style: none;
  padding: 4px 0 4px 24px;
  position: relative;
  font-size: 0.9rem;
}
.pros li::before { content: ''; position: absolute; left: 0; top: 10px; width: 14px; height: 14px; background: var(--green-dark); border-radius: 50%; }
.cons li::before { content: ''; position: absolute; left: 0; top: 10px; width: 14px; height: 14px; background: #E65100; border-radius: 50%; }
