/* ============================================
   tomate-paprika-kraeuterbeet.de
   Design: Frisch + Gewaechs-Artikelliste
   Font: Outfit (lokal)
   ============================================ */

/* --- FONTS (Variable Font, lokal gehostet) --- */
@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-latin-ext.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg: #FFFFFF;
  --bg-green: #E8F5E0;
  --bg-green-soft: #F2F8EE;
  --bg-dark: #1A3318;
  --ink: #1A2618;
  --muted: #5A6B52;
  --green: #228B22;
  --green-bright: #2EAD2E;
  --green-pale: #D5E8CA;
  --red: #CC2222;
  --gold: #D4A800;
  --border: #D0DEC8;
  --radius: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1100px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* --- SKIP LINK --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  z-index: 10001;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  border-radius: 4px;
}

/* --- HEADER --- */
.site-header {
  padding: 16px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.site-logo img {
  height: 40px;
  width: auto;
}
.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s var(--ease);
}
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }
.site-nav a:hover,
.site-nav a.active { color: var(--green); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* --- HERO (Startseite) --- */
.hero {
  background: var(--bg-green);
  padding: 80px 40px 0;
  position: relative;
  overflow: visible;
}
.hero::before {
  content: '';
  position: absolute;
  right: 8%;
  top: 40px;
  width: 280px;
  height: 280px;
  background: rgba(34,139,34,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text {
  padding-bottom: 96px;
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-text h1 .green { color: var(--green); }
.hero-text h1 .red { color: var(--red); }
.hero-text p {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 28px;
}
.hero-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
}
.hero-cta:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
}

/* Kreisfoermiges Hero-Bild */
.hero-image {
  position: relative;
  margin-bottom: -100px;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: transform 0.6s var(--ease);
}
.hero-image:hover img {
  transform: scale(1.03) rotate(2deg);
}
.hero-image::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px dashed var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* --- THEMEN-KARTEN --- */
.topics {
  background: var(--bg);
  padding: 140px 40px 80px;
}
.topics-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
}
.topics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.topic-card {
  text-decoration: none;
  color: var(--ink);
  background: var(--bg-green);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.3s;
}
.topic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(34,139,34,0.15);
}
.topic-card:hover .topic-card-img img { transform: scale(1.06); }
.topic-card-img {
  height: 180px;
  overflow: hidden;
}
.topic-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.topic-card-body { padding: 24px; }
.topic-card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 6px;
}
.topic-card-body p {
  font-size: 14px;
  color: var(--muted);
}
.topic-card-num {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

/* --- GRUENER BANNER --- */
.green-banner {
  background: var(--green);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.green-banner::before {
  content: '';
  position: absolute;
  left: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.green-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.green-banner h2 {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}
.green-banner a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  transition: background 0.3s, border-color 0.3s;
}
.green-banner a:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* --- ARTIKEL-FEED (Gewaechs-Style) --- */
.article-feed-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
}
.section-header {
  margin-bottom: 48px;
}
.section-header h2 {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
}
.section-header h2 span { color: var(--green); }
.section-header-sub {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}

.article-feed {
  display: flex;
  flex-direction: column;
}
.article-row {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  transition: padding-left 0.4s var(--ease);
  position: relative;
}
.article-row:last-child {
  border-bottom: 1px solid var(--border);
}
.article-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--green);
  transition: width 0.4s var(--ease);
}
.article-row:hover {
  padding-left: 20px;
}
.article-row:hover::before { width: 4px; }
.article-row:hover .article-title { color: var(--green); }
.article-row:hover .article-thumb img {
  transform: scale(1.04) rotate(-1deg);
}
.article-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.article-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.article-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.article-teaser {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
}
.article-thumb {
  overflow: hidden;
  border-radius: var(--radius);
}
.article-thumb img {
  width: 260px;
  height: 175px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

/* --- ARTIKEL-BODY (Einzelseiten) --- */
#main-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.article-hero-wrap {
  max-width: var(--max-w);
  margin: 0 auto 0;
  padding: 0 40px;
}
.article-hero-img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}
.article-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.article-body h2 {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  color: var(--ink);
}
.article-body h3 {
  font-weight: 600;
  font-size: 20px;
  margin: 32px 0 12px;
  color: var(--green);
}
.article-body p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #2A3826;
}
.article-body ul,
.article-body ol {
  margin: 0 0 20px 24px;
  font-size: 17px;
}
.article-body li { margin-bottom: 8px; }
.article-body a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--green-bright); }
.article-body img {
  border-radius: 8px;
  margin: 24px 0;
}

/* Infobox */
.infobox {
  background: var(--bg-green);
  border-left: 4px solid var(--green);
  padding: 20px 24px 20px 56px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 16px;
  position: relative;
}
.infobox::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 22px;
  width: 22px;
  height: 22px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.infobox strong { color: var(--green); }

/* Warnbox */
.warnbox {
  background: #FFF5F5;
  border-left: 4px solid var(--red);
  padding: 20px 24px 20px 56px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 16px;
  position: relative;
}
.warnbox::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 22px;
  width: 22px;
  height: 22px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 googletag472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.warnbox strong { color: var(--red); }

/* --- SLIDER-GALERIE --- */
.gallery-slider {
  margin: 32px 0;
  position: relative;
  border-radius: var(--radius);
}
.gallery-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.gallery-track img:hover { transform: scale(1.03); }

/* Slider-Pfeile */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
}
.gallery-slider:hover .gallery-btn { opacity: 1; }
.gallery-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.gallery-btn.prev { left: 12px; }
.gallery-btn.next { right: 12px; }
.gallery-btn:disabled { opacity: 0.3; pointer-events: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,18,8,0.94);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-frame {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.active .lightbox-frame {
  transform: scale(1) translateY(0);
}
.lightbox-frame img {
  display: block;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-caption {
  background: #fff;
  padding: 12px 4px 4px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 14px;
  color: #5A6B52;
  text-align: center;
  line-height: 1.4;
  border-radius: 0 0 4px 4px;
  min-height: 20px;
}
.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  color: #1A2618;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
}
.lightbox-close:hover {
  background: var(--green);
  color: #fff;
  transform: scale(1.1);
}
/* Lightbox Pfeile */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  color: #1A2618;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.lightbox-nav:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.lightbox-nav.lb-prev { left: max(2vw, 16px); }
.lightbox-nav.lb-next { right: max(2vw, 16px); }

/* --- YOUTUBE DSGVO --- */
.yt-consent {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.yt-consent-thumb {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-consent-overlay {
  background: rgba(0,0,0,0.7);
  padding: 32px;
  text-align: center;
  border-radius: 8px;
  max-width: 400px;
}
.yt-consent-text {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.yt-consent-text a { color: #fff; text-decoration: underline; }
.yt-consent-btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  min-width: 44px;
  min-height: 44px;
}
.yt-consent-btn:hover {
  background: var(--green-bright);
  transform: scale(1.05);
}
.yt-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.yt-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

/* --- PRODUKTBOX (Amazon Affiliate) --- */
.product-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.product-box:hover {
  border-color: var(--green-pale);
  box-shadow: 0 4px 20px rgba(34,139,34,0.08);
}
.product-box-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.product-box-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-box-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--bg-green);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}
.product-box-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--green);
}
.product-box-title {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
}
.product-box-features {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-box-features li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.product-box-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.product-box-cta,
.article-body .product-box-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 20px;
  background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #a88734;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
}
.product-box-cta:hover,
.article-body .product-box-cta:hover {
  background: linear-gradient(to bottom, #f5d78e, #eeb933);
  border-color: #846a29;
  color: #111;
  transform: translateY(-1px);
}
.product-box-cta .amazon-logo {
  width: 16px;
  height: 16px;
  fill: #111;
  flex-shrink: 0;
}
.product-box-cta svg:not(.amazon-logo) {
  width: 12px;
  height: 12px;
  fill: #555;
}
.product-box-note {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
}

/* Affiliate-Hinweis */
.affiliate-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 24px;
  padding: 10px 16px;
  background: var(--bg-green-soft);
  border-radius: 6px;
  line-height: 1.5;
}
.affiliate-hint summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--muted);
}
.affiliate-hint p {
  margin: 8px 0 0;
  font-size: 12px;
}

@media (max-width: 600px) {
  .product-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product-box-img {
    margin: 0 auto;
  }
  .product-box-badge { margin: 0 auto; }
  .product-box-cta { margin: 8px auto 0; }
}

/* --- QUELLEN --- */
.sources {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.sources h2 {
  font-size: 18px;
  margin-bottom: 12px;
}
.sources ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sources li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}
.sources a {
  color: var(--green);
  word-break: break-all;
}

/* --- VERWANDTE ARTIKEL --- */
.related {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.related h2 {
  font-size: 20px;
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.related-card {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.3s;
}
.related-card:hover { background: var(--bg-green-soft); }
.related-card:hover .related-title { color: var(--green); }
.related-card img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.related-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  transition: color 0.2s;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.5);
  padding: 40px;
  text-align: center;
  font-size: 13px;
}
.site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin: 0 16px;
}
.site-footer a:hover { color: #fff; }
.footer-copy {
  margin-top: 12px;
}

/* --- BILDNACHWEISE --- */
.image-credits {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}
.image-credits strong {
  color: var(--muted);
}

/* --- VG WORT --- */
.vgwort-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { margin-bottom: -60px; }
  .hero-image img { width: 280px; height: 280px; }
  .hero-text { padding-bottom: 48px; }
  .topics-row { grid-template-columns: 1fr; }
  .article-row { grid-template-columns: 1fr; gap: 16px; }
  .article-thumb img { width: 100%; height: 200px; }
  .related-grid { grid-template-columns: 1fr; }
  .green-banner-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 40px 24px;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-toggle { display: flex; }

  .hero { padding: 48px 20px 0; }
  .hero-image img { width: 240px; height: 240px; }
  .topics { padding: 100px 20px 48px; }
  .article-feed-section { padding: 48px 20px; }
  .article-hero-wrap { padding: 0 20px; }
  #main-content { padding: 32px 20px 64px; }
  .gallery-track img { width: 260px; height: 180px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 2rem; }
  .article-title { font-size: 18px; }
  .section-header h2 { font-size: 24px; }
  .hero-image img { width: 200px; height: 200px; }
}
