/* ==========================================================================
   Manuka Honig Info — Design System
   Premium-Naturlook: Neuseeland-Waldgrün + Honig-Bernstein auf Papierton.
   Keine externen Fonts, keine Frameworks, kein JS-Zwang.
   ========================================================================== */

:root {
  /* Farb-Tokens */
  --gruen:        #1F3D2B;
  --gruen-dunkel: #12291B;
  --gruen-hell:   #3D6B4C;
  --honig:        #C9821A;
  --honig-hell:   #F3B93C;
  --honig-dunkel: #9C6210;
  --creme:        #FBF7EF;
  --papier:       #FFFFFF;
  --tinte:        #2B2620;
  --tinte-soft:   #5B5348;
  --blatt:        #EBF1E8;
  --linie:        #E7DECC;
  --warn:         #FBEFE0;

  /* Typografie */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Skala */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(31, 61, 43, 0.08);
  --shadow-md: 0 6px 20px rgba(31, 61, 43, 0.10);
  --shadow-lg: 0 16px 40px rgba(31, 61, 43, 0.14);
  --max-content: 1180px;
  --max-text: 42rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--creme);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--gruen-hell); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--honig-dunkel); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--gruen); line-height: 1.25; margin: 0 0 var(--space-2); font-weight: 600; }
h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-top: var(--space-5); }
h3 { font-size: 1.25rem; margin-top: var(--space-3); }
p { margin: 0 0 var(--space-2); }
ul, ol { padding-left: 1.3em; margin: 0 0 var(--space-2); }
li { margin-bottom: 0.4em; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid var(--honig); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gruen); color: #fff; padding: 0.8em 1.2em; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max-content); margin: 0 auto; padding: 0 var(--space-3); }
main { display: block; }
.abschnitt { padding: var(--space-5) 0; }
.abschnitt--eng { max-width: var(--max-text); margin: 0 auto; padding-left: var(--space-3); padding-right: var(--space-3); }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--honig-dunkel);
  margin-bottom: 0.6em;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  background: var(--gruen);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 0.85rem; padding-bottom: 0.85rem; gap: var(--space-2); }
.logo { display: flex; align-items: center; gap: 0.6rem; color: #fff; text-decoration: none; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; white-space: nowrap; }
.logo:hover { color: var(--honig-hell); }
.logo .waben { width: 30px; height: 30px; flex: none; }
.hauptnav { display: flex; flex-wrap: wrap; gap: 0.3rem 1.3rem; }
.hauptnav a { color: #EAEFE7; text-decoration: none; font-size: 0.94rem; font-weight: 500; padding: 0.4rem 0.1rem; border-bottom: 2px solid transparent; }
.hauptnav a:hover, .hauptnav a[aria-current="page"] { color: #fff; border-bottom-color: var(--honig-hell); }
.nav-toggle { display: none; }
.nav-check { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
@media (max-width: 780px) {
  .hauptnav { display: none; width: 100%; flex-direction: column; gap: 0; padding-top: 0.6rem; border-top: 1px solid rgba(255,255,255,0.15); margin-top: 0.6rem; }
  .hauptnav a { padding: 0.65rem 0.1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .site-header .wrap { flex-wrap: wrap; }
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-sm); padding: 0.5rem 0.9rem; font-size: 0.9rem; font-family: var(--sans);
    min-height: 44px;
  }
  .nav-toggle .zu { display: none; }
  .nav-check:checked ~ .wrap .hauptnav { display: flex; }
  .nav-check:checked ~ .wrap .nav-toggle .auf { display: none; }
  .nav-check:checked ~ .wrap .nav-toggle .zu { display: inline; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.85rem; color: var(--tinte-soft); padding: 0.9rem 0; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.3em; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 0.4em; color: var(--linie); }
.breadcrumb a { color: var(--tinte-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--gruen); text-decoration: underline; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, var(--gruen) 0%, var(--gruen-dunkel) 100%); color: #fff; overflow: hidden; position: relative; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-4); align-items: center; padding-top: var(--space-5); padding-bottom: var(--space-5); }
.hero h1 { color: #fff; }
.hero p.lead { color: #DCE6DD; font-size: 1.15rem; max-width: 34em; }
.hero .eyebrow { color: var(--honig-hell); }
.hero-bild { justify-self: center; }
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: var(--space-4); padding-bottom: var(--space-4); text-align: left; }
  .hero-bild { max-width: 280px; }
}

/* ---------- Buttons ---------- */
.btn-amazon, .btn-zweit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; text-decoration: none;
  min-height: 44px; border: 2px solid transparent; transition: transform 150ms ease, box-shadow 150ms ease;
}
.btn-amazon {
  background: linear-gradient(180deg, var(--honig-hell) 0%, var(--honig) 100%);
  color: var(--gruen-dunkel); box-shadow: var(--shadow-sm);
}
.btn-amazon:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--gruen-dunkel); }
.btn-zweit { background: transparent; color: inherit; border-color: currentColor; opacity: 0.9; }
.btn-zweit:hover { opacity: 1; background: rgba(0,0,0,0.04); }
.btn-reihe { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.btn-klein { font-size: 0.85rem; padding: 0.55rem 1rem; }

.afflink { font-size: 0.76rem; color: var(--tinte-soft); margin-top: 0.5rem; }
.afflink--hell { color: #C7D3C8; }

/* ---------- Empfehlungsbox (Antwort vor Inhalt) ---------- */
.empfehlung-box {
  background: var(--papier); border: 1px solid var(--linie); border-radius: var(--radius);
  padding: var(--space-3); box-shadow: var(--shadow-md); margin-top: calc(var(--space-4) * -1);
  position: relative; z-index: 5;
}
.empfehlung-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.empfehlung-item { text-align: left; }
.empfehlung-item .rolle { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--honig-dunkel); display: block; margin-bottom: 0.3em; }
.empfehlung-item strong { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--gruen); margin-bottom: 0.2em; }
.empfehlung-item p { font-size: 0.92rem; color: var(--tinte-soft); margin-bottom: 0.6em; }
@media (max-width: 780px) {
  .empfehlung-grid { grid-template-columns: 1fr; }
  .empfehlung-box { margin-top: var(--space-3); }
}

/* ---------- MGO-Skala ---------- */
.mgo-skala { margin: 0.9em 0; }
.mgo-skala .balken {
  height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, #F6D98A 0%, var(--honig-hell) 30%, var(--honig) 60%, var(--honig-dunkel) 100%);
  position: relative;
}
.mgo-skala .marker {
  position: absolute; top: 50%; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gruen-dunkel); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--gruen-dunkel);
  transform: translate(-50%, -50%);
}
.mgo-skala .werte { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--tinte-soft); margin-top: 0.35em; }
.mgo-skala .label { font-size: 0.82rem; color: var(--tinte-soft); margin-bottom: 0.25em; display: flex; justify-content: space-between; }
.mgo-skala .label strong { color: var(--gruen); }

/* ---------- Produktkarte ---------- */
.produkt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: var(--space-3); margin: var(--space-3) 0; }
.produkt-karte {
  background: var(--papier); border: 1px solid var(--linie); border-radius: var(--radius);
  padding: var(--space-3); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative;
}
.produkt-karte.sieger { border: 2px solid var(--honig); box-shadow: var(--shadow-md); }
.produkt-karte .badge {
  position: absolute; top: -12px; left: var(--space-3); background: var(--honig);
  color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.3em 0.8em; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.produkt-karte h3 { margin-top: 0; font-size: 1.1rem; }
.produkt-karte .tag { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 0.25em 0.7em; border-radius: 999px; margin-bottom: 0.6em; }
.tag--einsteiger { background: var(--blatt); color: var(--gruen-hell); }
.tag--sieger { background: #FCEACB; color: var(--honig-dunkel); }
.tag--premium { background: #F1E6D8; color: var(--gruen); }
.tag--maximal { background: #F3E1CF; color: #7A4A0C; }
.produkt-karte .kurz { color: var(--tinte-soft); font-size: 0.94rem; }
.plus-minus { list-style: none; padding: 0; margin: 0.8em 0; font-size: 0.9rem; }
.plus-minus li { display: flex; gap: 0.5em; margin-bottom: 0.35em; }
.plus-minus .ic { flex: none; font-weight: 700; }
.plus-minus .plus .ic { color: var(--gruen-hell); }
.plus-minus .minus .ic { color: var(--honig-dunkel); }
.produkt-karte .meta { font-size: 0.78rem; color: var(--tinte-soft); border-top: 1px dashed var(--linie); padding-top: 0.7em; margin: 0.6em 0; }
.produkt-karte .btn-amazon { margin-top: auto; width: 100%; }

/* ---------- Vergleichstabelle ---------- */
.tabelle-wrap { overflow-x: auto; border: 1px solid var(--linie); border-radius: var(--radius); background: var(--papier); box-shadow: var(--shadow-sm); }
.vergleich { min-width: 640px; font-size: 0.92rem; }
.vergleich th, .vergleich td { padding: 0.85em 1em; text-align: left; border-bottom: 1px solid var(--linie); vertical-align: top; }
.vergleich thead th { background: var(--blatt); color: var(--gruen); font-family: var(--serif); font-weight: 700; white-space: nowrap; }
.vergleich tbody tr:last-child td { border-bottom: none; }
.vergleich tbody tr.sieger-zeile { background: #FEFAF0; }
.vergleich td:first-child, .vergleich th:first-child { font-weight: 600; color: var(--gruen); }

/* ---------- Info / Warn / Merk Boxen ---------- */
.info-box, .warn-box, .merk-box {
  border-radius: var(--radius-sm); padding: var(--space-3); margin: var(--space-3) 0;
  border-left: 4px solid; font-size: 0.96rem;
}
.info-box { background: var(--blatt); border-color: var(--gruen-hell); }
.warn-box { background: var(--warn); border-color: var(--honig-dunkel); }
.merk-box { background: var(--papier); border: 1px solid var(--linie); border-left: 4px solid var(--honig); box-shadow: var(--shadow-sm); }
.info-box strong, .warn-box strong, .merk-box strong { color: var(--gruen); }
.info-box .titel, .warn-box .titel, .merk-box .titel { display: flex; align-items: center; gap: 0.5em; font-weight: 700; color: var(--gruen); margin-bottom: 0.4em; font-family: var(--serif); font-size: 1.05rem; }
.warn-box .titel { color: #7A4A0C; }
.merk-box .btn-amazon { margin-top: 0.8em; }

/* ---------- Kaufberatungs-Matrix ---------- */
.matrix { display: grid; gap: 0.8rem; margin: var(--space-3) 0; }
.matrix-item { display: grid; grid-template-columns: 1.4fr auto 1.2fr auto; gap: 0.8rem; align-items: center; background: var(--papier); border: 1px solid var(--linie); border-radius: var(--radius-sm); padding: 0.9em 1.1em; }
.matrix-item .arrow { color: var(--honig); font-weight: 700; }
.matrix-item .du-willst { color: var(--tinte-soft); font-size: 0.92rem; }
.matrix-item .unsere-wahl { font-weight: 700; color: var(--gruen); }
.matrix-item a.mini { font-size: 0.82rem; white-space: nowrap; }
@media (max-width: 700px) {
  .matrix-item { grid-template-columns: 1fr; text-align: left; }
  .matrix-item .arrow { display: none; }
}

/* ---------- Themenkarten (Ratgeber-Hub) ---------- */
.themen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-3); }
.themen-karte {
  background: var(--papier); border: 1px solid var(--linie); border-radius: var(--radius);
  padding: var(--space-3); text-decoration: none; color: inherit; display: block;
  box-shadow: var(--shadow-sm); transition: transform 150ms ease, box-shadow 150ms ease;
}
.themen-karte:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.themen-karte .waben-ic { width: 34px; height: 34px; color: var(--honig); margin-bottom: 0.6em; }
.themen-karte h3 { margin-top: 0; margin-bottom: 0.35em; font-size: 1.05rem; color: var(--gruen); }
.themen-karte p { color: var(--tinte-soft); font-size: 0.9rem; margin: 0; }

/* ---------- Banner ---------- */
.banner { border-radius: var(--radius); overflow: hidden; margin: var(--space-4) 0; background: var(--blatt); }
.banner svg { width: 100%; display: block; }

/* ---------- TOC ---------- */
.toc { background: var(--papier); border: 1px solid var(--linie); border-radius: var(--radius); padding: var(--space-3); margin: var(--space-3) 0; }
.toc .titel { font-family: var(--serif); font-weight: 700; color: var(--gruen); margin-bottom: 0.5em; font-size: 1rem; }
.toc ol { list-style: decimal; padding-left: 1.2em; margin: 0; columns: 1; font-size: 0.92rem; }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }
@media (min-width: 700px) { .toc ol { columns: 2; column-gap: 2rem; } }

/* ---------- FAQ (natives Accordion) ---------- */
.faq details { background: var(--papier); border: 1px solid var(--linie); border-radius: var(--radius-sm); margin-bottom: 0.7rem; padding: 0; overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 1em 1.2em; font-weight: 600; color: var(--gruen); font-family: var(--serif);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1em; min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--honig); flex: none; font-family: var(--sans); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--linie); }
.faq .antwort { padding: 1em 1.2em 1.2em; color: var(--tinte-soft); font-size: 0.96rem; }
.faq .antwort p:last-child { margin-bottom: 0; }

/* ---------- Autor-Box ---------- */
.autor-box { display: flex; gap: 1rem; align-items: flex-start; background: var(--blatt); border-radius: var(--radius); padding: var(--space-3); margin: var(--space-4) 0; }
.autor-box .avatar { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--gruen); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 1.2rem; }
.autor-box .name { font-weight: 700; color: var(--gruen); margin-bottom: 0.15em; }
.autor-box .rolle { font-size: 0.82rem; color: var(--tinte-soft); margin-bottom: 0.5em; }
.autor-box p { font-size: 0.9rem; color: var(--tinte-soft); margin-bottom: 0; }
.aktualisiert { font-size: 0.82rem; color: var(--tinte-soft); margin-bottom: var(--space-2); }

/* ---------- Checklisten ---------- */
.checkliste { list-style: none; padding: 0; margin: var(--space-2) 0; }
.checkliste li { display: flex; gap: 0.7em; padding: 0.5em 0; border-bottom: 1px solid var(--linie); }
.checkliste li:last-child { border-bottom: none; }
.checkliste .nr { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gruen); color: #fff; font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--gruen-dunkel); color: #C7D3C8; margin-top: var(--space-6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-4); padding: var(--space-5) 0 var(--space-3); }
.footer-grid h4 { color: #fff; font-family: var(--serif); font-size: 1rem; margin-bottom: 0.8em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.5em; }
.footer-grid a { color: #C7D3C8; text-decoration: none; font-size: 0.92rem; }
.footer-grid a:hover { color: #fff; }
.footer-hinweis { font-size: 0.82rem; line-height: 1.6; color: #9FAE9E; max-width: 60ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: var(--space-3) 0; font-size: 0.8rem; color: #9FAE9E; display: flex; flex-wrap: wrap; gap: 0.8em 1.5em; justify-content: space-between; }
.footer-bottom a { color: #9FAE9E; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky CTA (nur Startseite, nur Mobile) ---------- */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: var(--papier); border-top: 1px solid var(--linie); box-shadow: 0 -6px 20px rgba(0,0,0,0.1);
  padding: 0.7rem var(--space-3); padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
}
.sticky-cta .btn-amazon { width: 100%; }
@media (max-width: 780px) { .sticky-cta.aktiv { display: block; } body.hat-sticky { padding-bottom: 78px; } }

/* ---------- Utility ---------- */
.zentriert { text-align: center; }
.max-text { max-width: var(--max-text); }
.mt-0 { margin-top: 0; }
