:root {
  --primary: #FF6B35;
  --primary-dark: #E05520;
  --dark: #1C1C1E;
  --bg: #FAFAF8;
  --bg-alt: #F3EDE5;
  --text: #2D2D2D;
  --muted: #6B6B6B;
  --border: #E5DDD5;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}

img { max-width: 100%; height: auto; display: block; }

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── Disclosure Bar ── */
.ad-disclosure {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
}
.ad-disclosure a { color: var(--muted); text-decoration: underline; }

/* ── Header / Nav ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.site-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
  text-decoration: none;
}
.site-logo span { color: var(--primary); }

.main-nav { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; list-style: none; }

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 8px;
  transition: background .15s;
  cursor: pointer;
  text-decoration: none;
}
.nav-link:hover { background: var(--bg-alt); text-decoration: none; }
.nav-link .arrow { font-size: .65rem; transition: transform .2s; }
.nav-item:hover .arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: .88rem;
  color: var(--text);
  border-radius: 8px;
  text-decoration: none;
}
.dropdown a:hover { background: var(--bg-alt); color: var(--primary); }

.nav-cta { white-space: nowrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-hover); text-decoration: none; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn small {
  flex-basis: 100%;
  text-align: center;
  font-size: .6em;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1px;
  opacity: .85;
}

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.25; margin-bottom: 18px; max-width: 640px; }
.hero p { font-size: 1.1rem; opacity: .88; max-width: 560px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.hero-stat span { font-size: .85rem; opacity: .75; }

/* ── Sections ── */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 1rem; margin-bottom: 40px; max-width: 560px; }

/* ── Cards (Rezept-Kacheln) ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); text-decoration: none; }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.card-body p { font-size: .88rem; color: var(--muted); flex: 1; }
.card-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
}

/* ── Feature List ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
}
.feature-list li::before {
  content: '✓';
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d3a 100%);
  color: var(--white);
  padding: 64px 20px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { opacity: .82; max-width: 480px; margin: 0 auto 28px; }
.cta-banner .badge-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.cta-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
}

/* ── Affiliate-Hinweis Section ── */
.affiliate-note {
  background: var(--bg-alt);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  font-size: .9rem;
  color: var(--muted);
  margin: 40px 0;
}

/* ── Content (Article Layout) ── */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article-body h2 { font-size: 1.4rem; font-weight: 800; margin: 36px 0 14px; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; }
.article-body p { margin-bottom: 16px; font-size: .98rem; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 16px; }
.article-body li { margin-bottom: 6px; font-size: .98rem; }

.sidebar-box {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 84px;
  text-align: center;
}
.sidebar-box h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.sidebar-box p { font-size: .88rem; color: var(--muted); margin-bottom: 18px; }
.sidebar-trial { font-size: .78rem; color: var(--muted); margin-top: 10px; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; margin: 24px 0; }
table { width: 100%; border-collapse: collapse; font-size: .92rem; }
thead th { background: var(--dark); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 700; }
tbody td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
tbody tr:nth-child(even) { background: var(--bg-alt); }
tbody tr:hover { background: #FDEEE6; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--primary); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; font-size: .93rem; color: var(--muted); }
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 16px; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 14px 0;
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb span { color: var(--text); }

/* ── Page Hero (subpages) ── */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 48px;
}
.page-hero-img { border-radius: var(--radius); overflow: hidden; max-height: 320px; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.25; margin-bottom: 14px; }
.page-hero p { opacity: .85; font-size: 1rem; margin-bottom: 24px; }
.page-hero .meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: .82rem; opacity: .65; margin-top: 20px; }

/* ── Rezept Cards (kompakt) ── */
.recipe-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  align-items: stretch;
}
.recipe-item-img { overflow: hidden; }
.recipe-item-img img { width: 100%; height: 100%; object-fit: cover; }
.recipe-item-body { padding: 16px 16px 16px 0; display: flex; flex-direction: column; }
.recipe-item-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.recipe-item-body p { font-size: .86rem; color: var(--muted); flex: 1; }
.recipe-meta { display: flex; gap: 14px; margin-top: 10px; font-size: .78rem; color: var(--muted); font-weight: 600; }
.recipe-meta span::before { margin-right: 4px; }

/* ── Rating Stars ── */
.stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rating-num { font-size: 2rem; font-weight: 800; }
.rating-label { font-size: .82rem; color: var(--muted); }

/* ── Pro/Con ── */
.pro-con-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pro-box, .con-box { padding: 20px; border-radius: var(--radius); }
.pro-box { background: #F0FDF4; border: 1px solid #86EFAC; }
.con-box { background: #FFF7F0; border: 1px solid var(--border); }
.pro-box h4 { color: #16A34A; font-weight: 700; margin-bottom: 10px; }
.con-box h4 { color: var(--muted); font-weight: 700; margin-bottom: 10px; }
.pro-box ul, .con-box ul { list-style: none; display: flex; flex-direction: column; gap: 6px; font-size: .9rem; }
.pro-box li::before { content: '✓ '; color: #16A34A; font-weight: 700; }
.con-box li::before { content: '− '; color: var(--muted); }

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-brand span { color: var(--primary); }
.footer-desc { font-size: .87rem; line-height: 1.65; }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,.6); font-size: .87rem; text-decoration: none; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
}

/* ── Mobile Nav ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: .2s; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .sidebar-box { position: static; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .pro-con-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    gap: 0;
    box-shadow: var(--shadow-hover);
  }
  .main-nav.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 12px; }
  .main-nav.open .nav-link { width: 100%; }
  .nav-cta { display: none; }
  .recipe-item { grid-template-columns: 110px 1fr; }
  .hero { min-height: auto; }
  .hero-inner { padding: 48px 20px; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}
