/* milchinfo.css — Custom styles for milch.info */

:root {
  --green-deep: #0a4d3c;
  --green-dark: #073d30;
  --green-accent: #12765c;
  --cream: #faf6f1;
  --cream-dark: #f0e9df;
  --white: #ffffff;
  --gold: #d4a017;
  --gold-light: #e8bc4a;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #9a9a9a;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --shadow-card: 0 2px 20px rgba(10,77,60,0.06);
  --shadow-card-hover: 0 8px 40px rgba(10,77,60,0.12);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== NOISE TEXTURE OVERLAY ========== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ========== STICKY HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 77, 60, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(250, 246, 241, 0.95);
  box-shadow: 0 2px 30px rgba(10, 77, 60, 0.06);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.logo .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav a:hover { color: var(--green-deep); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--green-deep); }
.nav a.active::after { width: 100%; }

/* ========== HERO SECTION ========== */
.hero {
  padding: 140px 40px 80px;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: min(92vh, 800px);
}

.hero-content {
  animation: fadeInUp 0.9s ease-out both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid rgba(10, 77, 60, 0.1);
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--green-deep);
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--gold);
  opacity: 0.25;
  border-radius: 4px;
  z-index: -1;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10, 77, 60, 0.2);
}

.btn-primary svg {
  transition: transform var(--transition);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: var(--text-dark);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid rgba(10, 77, 60, 0.15);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--green-deep);
  background: var(--white);
}

/* ========== HERO VISUAL ========== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.9s ease-out 0.15s both;
}

.hero-card {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  background: var(--green-deep);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 36px;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 160, 23, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(18, 118, 92, 0.3) 0%, transparent 50%);
}

.hero-card-deco {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.hero-card-deco::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.hero-illustration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 200px;
  height: 260px;
  opacity: 0.15;
}

.hero-card-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-card-content .label {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 10px;
}

.hero-card-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.hero-card-content p {
  font-size: 0.9rem;
  opacity: 0.6;
  font-weight: 300;
}

.hero-stat {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: 0 8px 40px rgba(10, 77, 60, 0.1);
  animation: float 4s ease-in-out infinite;
}

.hero-stat.stat-1 {
  top: 30px;
  left: -30px;
  animation-delay: 0s;
}

.hero-stat.stat-2 {
  bottom: 60px;
  right: -20px;
  animation-delay: 1.5s;
}

.hero-stat .number {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
}

.hero-stat .desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 400;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.featured-deco {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 6rem;
  opacity: 0.08;
  line-height: 1;
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-divider hr {
  border: none;
  height: 1px;
  background: rgba(10, 77, 60, 0.08);
}

/* ========== SECTIONS ========== */
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.section-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.section-link {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 6px;
  transition: gap var(--transition);
}

.section-link:hover { gap: 10px; }

/* ========== MILCHSORTEN GRID ========== */
.milch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.milch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.milch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.milch-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.milch-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.milch-card:hover .milch-card-image img {
  transform: scale(1.08);
}

.milch-card-image .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform var(--transition);
}

.milch-card:hover .placeholder {
  transform: scale(1.08);
}

.milch-card-image .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  padding: 5px 12px;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.milch-card-body {
  padding: 20px 22px 24px;
}

.milch-card-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.milch-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 300;
}

/* ========== FILTER TABS ========== */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid rgba(10, 77, 60, 0.12);
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover {
  border-color: var(--green-deep);
}

.filter-tab.active {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

/* ========== BLOG SECTION ========== */
.blog-section {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.blog-card {
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
}

/* Featured blog card */
.blog-card.featured {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  position: relative;
  min-height: 520px;
}

.blog-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212, 160, 23, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 90%, rgba(18, 118, 92, 0.25) 0%, transparent 50%);
}

.blog-card.featured .blog-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card.featured .blog-tag {
  background: var(--gold);
  color: var(--text-dark);
}

.blog-card.featured .blog-date {
  font-size: 0.78rem;
  opacity: 0.5;
  font-weight: 300;
}

.blog-card.featured h3 {
  position: relative;
  z-index: 2;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.blog-card.featured p {
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  opacity: 0.6;
  font-weight: 300;
  line-height: 1.6;
  max-width: 420px;
}

/* Smaller blog cards */
.blog-card.small {
  background: var(--cream);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card.small .blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-card.small .blog-tag {
  background: rgba(10, 77, 60, 0.08);
  color: var(--green-deep);
}

.blog-card.small .blog-date {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
}

.blog-card.small h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.blog-card.small p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 300;
}

.blog-card.small .read-more,
.read-more {
  margin-top: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  text-decoration: none;
}

.blog-card.small:hover .read-more { gap: 10px; }

/* ========== BLOG OVERVIEW GRID ========== */
.blog-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-overview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.blog-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.blog-overview-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dark);
}

.blog-overview-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-overview-card:hover .blog-overview-card-image img {
  transform: scale(1.05);
}

.blog-overview-card-body {
  padding: 24px;
}

/* ========== ARTICLE / DETAIL PAGES ========== */
.page-hero {
  padding: 120px 40px 60px;
  max-width: 1320px;
  margin: 0 auto;
}

.page-hero-image {
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 32px;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

.page-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 48px 0 20px;
}

.page-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 14px;
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.page-content ul, .page-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.page-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Nährwert-Tabelle */
.naehrwert-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.naehrwert-table th,
.naehrwert-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.95rem;
}

.naehrwert-table thead th {
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.naehrwert-table tbody tr {
  border-bottom: 1px solid rgba(10, 77, 60, 0.06);
}

.naehrwert-table tbody tr:nth-child(even) {
  background: var(--cream);
}

.naehrwert-table td:last-child {
  font-weight: 600;
  color: var(--green-deep);
}

/* Tip box */
.tip-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.tip-box::before {
  content: '💡';
  margin-right: 8px;
}

/* Quote block */
.quote-block {
  border-left: 4px solid var(--green-deep);
  padding: 20px 24px;
  margin: 24px 0;
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-block p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.quote-block cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

/* FAQ Accordion */
.faq-list {
  margin: 24px 0;
}

.faq-item {
  border-bottom: 1px solid rgba(10, 77, 60, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--green-deep);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Related milchsorten */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 500;
  transition: opacity var(--transition);
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb span.sep {
  color: var(--text-light);
}

/* ========== DARK FOOTER ========== */
.footer {
  background: var(--green-deep);
  color: var(--white);
  padding: 72px 40px 36px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.5;
  line-height: 1.6;
  font-weight: 300;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.7;
  font-weight: 400;
  transition: opacity var(--transition);
}

.footer-col ul a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  opacity: 0.35;
  font-weight: 300;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--white);
  opacity: 0.35;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-bottom-links a:hover { opacity: 0.7; }

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(10, 77, 60, 0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE MENU ========== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .milch-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding-top: 120px; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 400px; margin: 0 auto; }
  .hero-stat.stat-1 { left: 0; }
  .hero-stat.stat-2 { right: 0; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px 40px;
    border-bottom: 1px solid rgba(10, 77, 60, 0.08);
    gap: 20px;
  }

  .hero { padding: 110px 24px 60px; }
  .section { padding: 60px 24px; }
  .milch-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-overview-grid { grid-template-columns: 1fr; }
  .blog-card.featured { min-height: 380px; padding: 28px; grid-row: auto; grid-column: auto; }
  .blog-card.featured h3 { font-size: 1.4rem; }
  .header-inner { padding: 0 24px; }
  .footer { padding: 52px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .page-hero { padding: 100px 24px 40px; }
  .page-content { padding: 24px 24px 60px; }
  .filter-tabs { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .milch-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-card { aspect-ratio: 3/4; }
}

/* ========== AFFILIATE CARDS ========== */
.affiliate-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: box-shadow 0.3s, transform 0.3s;
}
.affiliate-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.affiliate-card .affiliate-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.affiliate-card .affiliate-image img {
  max-width: 160px;
  max-height: 160px;
  object-fit: contain;
}
.affiliate-card .affiliate-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.affiliate-card .affiliate-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}
.affiliate-card .affiliate-body h3 a {
  color: inherit;
  text-decoration: none;
}
.affiliate-card .affiliate-body h3 a:hover {
  color: var(--green-deep);
}
.affiliate-card .affiliate-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.affiliate-card .affiliate-footer .btn-primary {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.affiliate-card .affiliate-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}
.affiliate-card .affiliate-notice {
  font-size: 0.7rem;
  color: var(--text-light);
  opacity: 0.6;
  margin-top: 12px;
  line-height: 1.5;
}
@media (max-width: 640px) {
  #produkte > div[style] {
    grid-template-columns: 1fr !important;
  }
}

/* ========== HERO AFFILIATE GRID ========== */
.affiliate-hero-section {
  margin-top: 32px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--white);
}
.affiliate-hero-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.affiliate-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .affiliate-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== PRINT ========== */
@media print {
  .header, .nav, .scroll-top, .menu-toggle,
  footer, .affiliate-box, [class*="affiliate"],
  .filter-tabs {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
    line-height: 1.6;
  }

  body::before { display: none; }

  main { padding-top: 0 !important; }

  h1, h2, h3 { page-break-after: avoid; }

  img {
    max-width: 100% !important;
    max-height: 300px !important;
    object-fit: contain !important;
    page-break-inside: avoid;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .faq-answer {
    max-height: none !important;
    overflow: visible !important;
  }

  .faq-icon { display: none !important; }
}
