:root {
  --vvlc-bg: #0e0f11;
  --vvlc-bg-card: #16181c;
  --vvlc-bg-dark: #0a0b0d;
  --vvlc-bg-accent: #111827;
  --vvlc-surface: #1c1f26;
  --vvlc-border: #2a2d35;
  --vvlc-text: #e8eaed;
  --vvlc-text-muted: #9aa0ad;
  --vvlc-text-dim: #6b7280;
  --vvlc-accent: #2a52d4;
  --vvlc-accent-light: #4a72f4;
  --vvlc-cyan: #00bcd4;
  --vvlc-cyan-dark: #0097a7;
  --vvlc-red: #c0001a;
  --vvlc-white: #ffffff;
  --vvlc-cream: #f0f0ee;
  --vvlc-font-head: 'Cormorant Garamond', Georgia, serif;
  --vvlc-font-body: 'Source Sans 3', system-ui, sans-serif;
  --vvlc-container: 960px;
  --vvlc-radius: 0px;
  --vvlc-gap-sm: 12px;
  --vvlc-gap-md: 24px;
  --vvlc-gap-lg: 48px;
  --vvlc-gap-xl: 72px;
}

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

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

body {
  background: var(--vvlc-bg);
  color: var(--vvlc-text);
  font-family: var(--vvlc-font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.dark-theme { background: var(--vvlc-bg); }

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

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

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

h1, h2, h3, h4 {
  font-family: var(--vvlc-font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--vvlc-white);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: var(--vvlc-gap-md); }
h3 { font-size: 1.2rem; margin-bottom: 8px; }
h4 { font-size: 1rem; margin-bottom: 8px; }

em { font-style: italic; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 4px; }

section { padding: var(--vvlc-gap-xl) 0; }

.utbu {
  background: var(--vvlc-bg-dark);
  border-top: 1px solid var(--vvlc-border);
  border-bottom: 1px solid var(--vvlc-border);
}

.uqmy {
  background: linear-gradient(135deg, var(--vvlc-accent) 0%, #1a3ab0 100%);
}

.section-light {
  background: var(--vvlc-bg-card);
}

.section-kicker {
  font-family: var(--vvlc-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vvlc-cyan);
  margin-bottom: 12px;
}

.kicker-light { color: var(--vvlc-cyan); }

.section-intro {
  color: var(--vvlc-text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: var(--vvlc-gap-md);
}

.uxbm {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,15,17,0.95);
  border-bottom: 1px solid var(--vvlc-border);
  backdrop-filter: blur(8px);
}

.uxbm .container {
  display: flex;
  align-items: center;
  gap: var(--vvlc-gap-md);
  height: 60px;
}

.logo {
  font-family: var(--vvlc-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vvlc-white);
  white-space: nowrap;
  text-decoration: none;
}

.logo em { color: var(--vvlc-cyan); font-style: italic; }

.udli {
  display: flex;
  gap: var(--vvlc-gap-md);
  flex: 1;
}

.udli a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vvlc-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.udli a:hover,
.udli a[aria-current="page"] { color: var(--vvlc-cyan); }

.btn-outline-sm {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--vvlc-cyan);
  border: 1px solid var(--vvlc-cyan);
  padding: 6px 14px;
  border-radius: var(--vvlc-radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-sm:hover {
  background: var(--vvlc-cyan);
  color: var(--vvlc-bg);
  text-decoration: none;
}

.btn-outline-lg {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--vvlc-cyan);
  border: 2px solid var(--vvlc-cyan);
  padding: 12px 28px;
  border-radius: var(--vvlc-radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
  font-family: var(--vvlc-font-body);
}

.btn-outline-lg:hover {
  background: var(--vvlc-cyan);
  color: var(--vvlc-bg);
  text-decoration: none;
}

.btn-ghost-lg {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--vvlc-text-muted);
  border: 1px solid var(--vvlc-border);
  padding: 12px 28px;
  border-radius: var(--vvlc-radius);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-lg:hover {
  border-color: var(--vvlc-text-muted);
  color: var(--vvlc-white);
  text-decoration: none;
}

.breadcrumb-bar {
  background: var(--vvlc-bg-card);
  border-bottom: 1px solid var(--vvlc-border);
  padding: 10px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: var(--vvlc-text-dim);
}

.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: "›"; color: var(--vvlc-text-dim); }
.breadcrumb a { color: var(--vvlc-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--vvlc-cyan); }
.breadcrumb [aria-current="page"] { color: var(--vvlc-text); }

.hero-bigstat {
  position: relative;
  padding: 0;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: var(--vvlc-gap-xl) 20px;
  width: 100%;
  max-width: var(--vvlc-container);
  margin: 0 auto;
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vvlc-cyan);
  margin-bottom: 16px;
}

.hero-h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 12px;
  color: var(--vvlc-white);
}

.hero-h1 em { color: var(--vvlc-cyan); font-style: italic; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--vvlc-text-muted);
  max-width: 560px;
  margin-bottom: var(--vvlc-gap-md);
}

.bigstat-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vvlc-gap-md);
  margin-bottom: var(--vvlc-gap-md);
}

.bigstat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bigstat-num {
  font-family: var(--vvlc-font-head);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--vvlc-white);
  line-height: 1;
}

.bigstat-unit {
  font-size: 1.8rem;
  color: var(--vvlc-cyan);
}

.bigstat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vvlc-text-muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vvlc-gap-sm);
  margin-bottom: var(--vvlc-gap-sm);
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--vvlc-text-muted);
}

.stars { color: #f59e0b; font-size: 1.1rem; }
.star-half { opacity: 0.4; }
.stars-count { font-size: 0.85rem; }

.thin-dark-band {
  height: 4px;
  background: linear-gradient(90deg, var(--vvlc-accent) 0%, var(--vvlc-cyan-dark) 100%);
}

.pack-intro { padding: var(--vvlc-gap-xl) 0; }

.pack-intro-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--vvlc-gap-lg);
  align-items: center;
}

.pack-image-col { display: flex; justify-content: center; }

.pack-wrap {
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vvlc-surface);
  border: 1px solid var(--vvlc-border);
}

.pack-wrap img {
  width: 280px;
  height: 280px;
  object-fit: contain;
}

.pack-text-col h2 { margin-bottom: 12px; }

.check-mini {
  list-style: none;
  padding: 0;
  margin-top: var(--vvlc-gap-sm);
}

.check-mini li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--vvlc-text-muted);
  border-bottom: 1px solid var(--vvlc-border);
}

.check-mini li::before { content: "✓"; color: var(--vvlc-cyan); font-weight: 700; flex-shrink: 0; }

.editor-section { padding: var(--vvlc-gap-xl) 0; background: var(--vvlc-bg-card); }

.editor-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--vvlc-gap-lg);
  align-items: start;
}

.avatar-wrap {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border: 1px solid var(--vvlc-border);
}

.avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }

.editor-cred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--vvlc-gap-sm);
}

.cred-chip {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--vvlc-surface);
  border: 1px solid var(--vvlc-border);
  color: var(--vvlc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvlc-gap-md);
  margin-top: var(--vvlc-gap-md);
}

.check-card.flat {
  background: var(--vvlc-surface);
  padding: var(--vvlc-gap-md);
  border-top: 2px solid var(--vvlc-border);
}

.check-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.check-icon-wrap.cyan { background: var(--vvlc-cyan); color: var(--vvlc-bg); }
.check-icon-wrap.blue { background: var(--vvlc-accent); color: var(--vvlc-white); }

.check-card h3 { font-size: 1rem; margin-bottom: 6px; }
.check-card p { font-size: 0.9rem; color: var(--vvlc-text-muted); margin: 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vvlc-gap-md);
  margin-top: var(--vvlc-gap-md);
}

.review-card.flat {
  background: var(--vvlc-surface);
  padding: var(--vvlc-gap-md);
  border-left: 3px solid var(--vvlc-cyan);
}

.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; }
.review-text { font-size: 0.95rem; color: var(--vvlc-text); font-style: italic; margin-bottom: 10px; }
.review-meta { font-size: 0.78rem; color: var(--vvlc-text-dim); font-weight: 600; }
.review-disclaimer { margin-top: var(--vvlc-gap-md); font-size: 0.8rem; color: var(--vvlc-text-dim); font-style: italic; }

.score-overview {
  display: flex;
  justify-content: center;
  margin-bottom: var(--vvlc-gap-md);
}

.score-hero-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.score-num {
  font-family: var(--vvlc-font-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--vvlc-white);
  line-height: 1;
}

.score-label { font-size: 0.8rem; color: var(--vvlc-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.score-stars { color: #f59e0b; font-size: 1.2rem; }

.scorecard-table-wrap { overflow-x: auto; margin-top: var(--vvlc-gap-md); }

.scorecard-table, .compare-table-full, .nutrition-table, .cookie-table, .impressum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.scorecard-table th, .scorecard-table td,
.compare-table-full th, .compare-table-full td,
.nutrition-table th, .nutrition-table td,
.cookie-table th, .cookie-table td,
.impressum-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--vvlc-border);
  color: var(--vvlc-text);
}

.scorecard-table th, .compare-table-full th, .nutrition-table th, .cookie-table th {
  background: var(--vvlc-surface);
  color: var(--vvlc-text-muted);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.score-good { color: var(--vvlc-cyan); font-weight: 600; }
.score-ok { color: var(--vvlc-text-muted); }
.score-bad { color: var(--vvlc-text-dim); }

.highlight-col { background: rgba(0,188,212,0.05); }

.our-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--vvlc-cyan);
  color: var(--vvlc-bg);
  padding: 2px 6px;
  margin-left: 6px;
  text-transform: uppercase;
  vertical-align: middle;
}

.table-note { margin-top: 12px; font-size: 0.8rem; color: var(--vvlc-text-dim); font-style: italic; }

.routine-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--vvlc-gap-lg);
  align-items: center;
}

.routine-steps { margin-top: var(--vvlc-gap-md); display: flex; flex-direction: column; gap: var(--vvlc-gap-sm); }

.routine-step.flat {
  display: flex;
  gap: var(--vvlc-gap-md);
  align-items: flex-start;
  padding: var(--vvlc-gap-md);
  background: var(--vvlc-surface);
  border-left: 3px solid var(--vvlc-accent);
}

.step-num-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vvlc-accent);
  color: var(--vvlc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content h3 { font-size: 1rem; color: var(--vvlc-white); margin-bottom: 4px; }
.step-content p { font-size: 0.9rem; color: var(--vvlc-text-muted); margin: 0; }

.routine-image-col img { width: 100%; object-fit: cover; }

.stat-band { padding: var(--vvlc-gap-md) 0; }

.stat-band-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--vvlc-gap-md);
}

.stat-band-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.stat-band-num {
  font-family: var(--vvlc-font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vvlc-white);
  line-height: 1;
}

.stat-band-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

.lf-calc-section { padding: var(--vvlc-gap-xl) 0; background: var(--vvlc-bg-card); }

.ucir {
  background: var(--vvlc-surface);
  border: 1px solid var(--vvlc-border);
  padding: var(--vvlc-gap-md);
  max-width: 480px;
  margin-top: var(--vvlc-gap-md);
}

.calc-inputs { margin-bottom: var(--vvlc-gap-md); }

.calc-field { display: flex; flex-direction: column; gap: 6px; }

.calc-field label { font-size: 0.9rem; font-weight: 600; color: var(--vvlc-text-muted); }

.calc-input {
  width: 100%;
  padding: 10px 12px;
  background: var(--vvlc-bg);
  border: 1px solid var(--vvlc-border);
  color: var(--vvlc-text);
  font-family: var(--vvlc-font-body);
  font-size: 1rem;
  border-radius: var(--vvlc-radius);
  outline: none;
}

.calc-input:focus { border-color: var(--vvlc-cyan); }

.calc-btn { margin-top: var(--vvlc-gap-sm); }

.calc-result {
  margin-top: var(--vvlc-gap-sm);
  font-size: 1.05rem;
  color: var(--vvlc-cyan);
  font-weight: 700;
  min-height: 24px;
}

.calc-note { margin-top: 10px; font-size: 0.8rem; color: var(--vvlc-text-dim); }

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--vvlc-gap-md);
  margin-top: var(--vvlc-gap-md);
}

.lifestyle-card.flat {
  background: var(--vvlc-surface);
  padding: var(--vvlc-gap-md);
  border-top: 2px solid var(--vvlc-border);
}

.lifestyle-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.lifestyle-icon-wrap.cyan { background: var(--vvlc-cyan); }
.lifestyle-icon-wrap.blue { background: var(--vvlc-accent); }

.lifestyle-card h3 { font-size: 1rem; margin-bottom: 6px; }
.lifestyle-card p { font-size: 0.88rem; color: var(--vvlc-text-muted); margin: 0; }

.lifestyle-image-wrap { margin-top: var(--vvlc-gap-lg); }
.lifestyle-image-wrap img { width: 100%; object-fit: cover; max-height: 420px; }

.ingredients-section { padding: var(--vvlc-gap-xl) 0; }

.ingredients-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: var(--vvlc-gap-lg);
  align-items: start;
}

.ingredients-grid img { width: 100%; object-fit: cover; }

.ingredient-item {
  padding: var(--vvlc-gap-sm) 0;
  border-bottom: 1px solid var(--vvlc-border);
}

.ingredient-item:last-of-type { border-bottom: none; }
.ingredient-item h3 { font-size: 1rem; color: var(--vvlc-cyan); margin-bottom: 4px; }
.ingredient-item p { font-size: 0.9rem; color: var(--vvlc-text-muted); margin: 0; }
.ingredient-note { font-size: 0.8rem; color: var(--vvlc-text-dim); font-style: italic; margin-top: 12px; }

.order-section { padding: var(--vvlc-gap-xl) 0; }

.order-inner { }

.order-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--vvlc-gap-lg);
  align-items: start;
  margin-top: var(--vvlc-gap-md);
}

.order-info-col { display: flex; flex-direction: column; gap: var(--vvlc-gap-md); }

.pack-order-wrap {
  display: flex;
  justify-content: center;
  background: var(--vvlc-surface);
  border: 1px solid var(--vvlc-border);
  padding: var(--vvlc-gap-md);
}

.pack-order-wrap img { width: 240px; height: 240px; object-fit: contain; }

.price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-original {
  font-size: 1rem;
  color: var(--vvlc-text-dim);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--vvlc-font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--vvlc-white);
}

.price-badge {
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--vvlc-cyan);
  color: var(--vvlc-bg);
  padding: 3px 8px;
}

.order-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-benefits li { font-size: 0.9rem; color: var(--vvlc-text-muted); }

.order-form-col { }

.uxfl {
  background: var(--vvlc-surface);
  border: 1px solid var(--vvlc-border);
  padding: var(--vvlc-gap-lg);
  display: flex;
  flex-direction: column;
  gap: var(--vvlc-gap-sm);
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label { font-size: 0.9rem; font-weight: 600; color: var(--vvlc-text-muted); }

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--vvlc-bg);
  border: 1px solid var(--vvlc-border);
  color: var(--vvlc-text);
  font-family: var(--vvlc-font-body);
  font-size: 1rem;
  border-radius: var(--vvlc-radius);
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus { border-color: var(--vvlc-cyan); }

.form-consent { }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--vvlc-text-muted);
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--vvlc-cyan);
}

.consent-label a { color: var(--vvlc-cyan); }

.btn-submit-order { width: 100%; text-align: center; font-size: 1.05rem; padding: 14px; }

.req { color: var(--vvlc-red); }

.form-sub { font-size: 0.78rem; color: var(--vvlc-text-dim); text-align: center; margin: 0; }

.faq-section { padding: var(--vvlc-gap-xl) 0; }

.faq-list { margin-top: var(--vvlc-gap-md); display: flex; flex-direction: column; gap: 4px; }

.uifx {
  background: var(--vvlc-surface);
  border: 1px solid var(--vvlc-border);
  border-radius: var(--vvlc-radius);
}

.uifx summary {
  padding: 16px var(--vvlc-gap-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--vvlc-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uifx summary::-webkit-details-marker { display: none; }
.uifx summary::after { content: "+"; color: var(--vvlc-cyan); font-size: 1.2rem; flex-shrink: 0; }
.uifx[open] summary::after { content: "−"; }

.uifx p {
  padding: 0 var(--vvlc-gap-md) var(--vvlc-gap-md);
  font-size: 0.95rem;
  color: var(--vvlc-text-muted);
  margin: 0;
}

.site-footer {
  background: var(--vvlc-bg-dark);
  border-top: 1px solid var(--vvlc-border);
  padding: var(--vvlc-gap-lg) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  gap: var(--vvlc-gap-lg);
  padding-bottom: var(--vvlc-gap-lg);
}

.footer-logo {
  font-family: var(--vvlc-font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vvlc-white);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-logo em { color: var(--vvlc-cyan); font-style: italic; }

.footer-brand p { font-size: 0.85rem; color: var(--vvlc-text-dim); margin-bottom: 6px; }
.footer-org { font-size: 0.78rem; color: var(--vvlc-text-dim); }
.footer-email a { font-size: 0.85rem; color: var(--vvlc-cyan); }

.footer-nav-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--vvlc-text-muted); margin-bottom: 12px; }

.footer-nav-col ul { list-style: none; padding: 0; margin: 0; }
.footer-nav-col li { margin-bottom: 6px; }
.footer-nav-col a { font-size: 0.85rem; color: var(--vvlc-text-dim); text-decoration: none; }
.footer-nav-col a:hover { color: var(--vvlc-cyan); }

.footer-disclaimer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--vvlc-border);
  padding: var(--vvlc-gap-md) 0;
}

.footer-disclaimer p { font-size: 0.78rem; color: var(--vvlc-text-dim); margin: 0 0 6px; line-height: 1.5; }

.ulof {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--vvlc-surface);
  border-top: 2px solid var(--vvlc-accent);
  padding: var(--vvlc-gap-md);
}

.ulof.is-visible { display: block; }

.cookie-inner {
  max-width: var(--vvlc-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--vvlc-gap-md);
  flex-wrap: wrap;
}

.cookie-inner p { font-size: 0.85rem; color: var(--vvlc-text-muted); margin: 0; flex: 1; min-width: 200px; }
.cookie-inner a { color: var(--vvlc-cyan); }

.ubgo { display: flex; gap: 8px; flex-wrap: wrap; }

.btn-cookie-accept {
  padding: 8px 16px;
  background: var(--vvlc-cyan);
  color: var(--vvlc-bg);
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: var(--vvlc-radius);
}

.btn-cookie-reject, .btn-cookie-settings {
  padding: 8px 16px;
  background: transparent;
  color: var(--vvlc-text-muted);
  border: 1px solid var(--vvlc-border);
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: var(--vvlc-radius);
}

.btn-cookie-reject:hover, .btn-cookie-settings:hover { border-color: var(--vvlc-text-muted); color: var(--vvlc-white); }

.page-hero-simple {
  padding: var(--vvlc-gap-xl) 0;
}

.page-hero-simple h1 { margin-bottom: 12px; }
.page-hero-sub { font-size: 1.1rem; color: var(--vvlc-text-muted); max-width: 620px; }

.article-page { padding: var(--vvlc-gap-xl) 0; }

.article-container { max-width: 720px; }

.article-header { margin-bottom: var(--vvlc-gap-lg); }

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--vvlc-text-dim);
}

.article-rating-inline {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--vvlc-text-muted);
}

.article-body h2 { margin-top: var(--vvlc-gap-md); font-size: 1.6rem; }
.article-lead { font-size: 1.1rem; color: var(--vvlc-text); margin-bottom: var(--vvlc-gap-md); }

.article-cta-box {
  background: var(--vvlc-surface);
  border: 1px solid var(--vvlc-border);
  padding: var(--vvlc-gap-md);
  margin-top: var(--vvlc-gap-md);
  display: flex;
  align-items: center;
  gap: var(--vvlc-gap-sm);
  flex-wrap: wrap;
}

.article-cta-box p { margin: 0; color: var(--vvlc-text-muted); font-size: 0.95rem; }

.ingredients-intro-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: var(--vvlc-gap-lg);
  align-items: center;
  margin-bottom: var(--vvlc-gap-lg);
}

.ingredients-intro-image img { width: 100%; object-fit: cover; }

.ingredients-disclaimer { font-size: 0.8rem; color: var(--vvlc-text-dim); font-style: italic; margin-top: 8px; }

.ingredient-detail-cards { display: flex; flex-direction: column; gap: var(--vvlc-gap-md); }

.ingredient-detail-card {
  display: flex;
  gap: var(--vvlc-gap-md);
  align-items: flex-start;
  background: var(--vvlc-surface);
  border: 1px solid var(--vvlc-border);
  padding: var(--vvlc-gap-md);
}

.ingredient-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--vvlc-bg);
}

.ingredient-icon-circle.cyan { background: var(--vvlc-cyan); }
.ingredient-icon-circle.blue { background: var(--vvlc-accent); }

.ingredient-detail-body h3 { color: var(--vvlc-cyan); margin-bottom: 8px; }
.ingredient-detail-body p { font-size: 0.9rem; color: var(--vvlc-text-muted); }
.efsa-note { font-size: 0.78rem; color: var(--vvlc-text-dim); font-style: italic; }

.nutrition-table-section { margin-top: var(--vvlc-gap-lg); padding: var(--vvlc-gap-md); }
.nutrition-table-section h2 { margin-bottom: var(--vvlc-gap-md); }
.nutrition-note { font-size: 0.8rem; color: var(--vvlc-text-dim); margin-top: 8px; }

.ingredients-cta { margin-top: var(--vvlc-gap-lg); display: flex; gap: var(--vvlc-gap-sm); flex-wrap: wrap; }

.compare-table-full-wrap { overflow-x: auto; }

.compare-cta { margin-top: var(--vvlc-gap-lg); display: flex; gap: var(--vvlc-gap-sm); flex-wrap: wrap; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vvlc-gap-lg);
  align-items: start;
}

.contact-page-section { padding: var(--vvlc-gap-xl) 0; }

.contact-details { margin-top: var(--vvlc-gap-md); display: flex; flex-direction: column; gap: var(--vvlc-gap-md); }

.contact-detail-item { display: flex; align-items: flex-start; gap: var(--vvlc-gap-sm); }

.contact-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--vvlc-bg);
}

.contact-icon-circle.cyan { background: var(--vvlc-cyan); }
.contact-icon-circle.blue { background: var(--vvlc-accent); }

.contact-detail-item strong { display: block; font-size: 0.85rem; color: var(--vvlc-text-muted); margin-bottom: 2px; }
.contact-detail-item a { color: var(--vvlc-cyan); font-size: 0.9rem; }

.contact-form-col { }

.uqrx {
  background: var(--vvlc-surface);
  border: 1px solid var(--vvlc-border);
  padding: var(--vvlc-gap-lg);
  display: flex;
  flex-direction: column;
  gap: var(--vvlc-gap-sm);
}

.map-section { padding: var(--vvlc-gap-md) 0 var(--vvlc-gap-xl); }

.map-container { border: 1px solid var(--vvlc-border); overflow: hidden; }

.thankyou-section { padding: var(--vvlc-gap-xl) 0; }

.thankyou-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--vvlc-gap-md);
  align-items: center;
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--vvlc-cyan);
  color: var(--vvlc-bg);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.thankyou-info p { font-size: 0.9rem; color: var(--vvlc-text-muted); margin: 0; }

.error-section { padding: var(--vvlc-gap-xl) 0; }

.error-inner { text-align: center; max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--vvlc-gap-md); align-items: center; }

.error-num {
  font-family: var(--vvlc-font-head);
  font-size: 8rem;
  font-weight: 700;
  color: var(--vvlc-accent);
  line-height: 1;
}

.legal-page { padding: var(--vvlc-gap-xl) 0; }

.legal-container { max-width: 760px; }

.legal-updated { font-size: 0.8rem; color: var(--vvlc-text-dim); margin-bottom: var(--vvlc-gap-md); }

.legal-container h2 { font-size: 1.4rem; margin-top: var(--vvlc-gap-md); margin-bottom: 10px; }
.legal-container h3 { font-size: 1.1rem; margin-top: 16px; }
.legal-container p { font-size: 0.95rem; color: var(--vvlc-text-muted); }
.legal-container ul, .legal-container ol { color: var(--vvlc-text-muted); font-size: 0.95rem; }
.legal-container a { color: var(--vvlc-cyan); }

.cookie-table, .impressum-table { margin-top: 12px; margin-bottom: var(--vvlc-gap-md); }

@media (max-width: 900px) {
  .pack-intro-grid, .ingredients-grid, .ingredients-intro-grid, .routine-grid, .order-grid { grid-template-columns: 1fr; }
  .editor-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .udli { display: none; }
  .bigstat-row { gap: var(--vvlc-gap-sm); }
  .bigstat-num { font-size: 2.2rem; }
  .checklist-grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
  .uxfl { padding: var(--vvlc-gap-md); }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ulof{position:fixed !important;left:1rem;right:1rem;bottom:1rem;z-index:9000 !important;max-width:760px;margin-left:auto;margin-right:auto;background:#fff;color:#1a1a1a;border:1px solid rgba(0,0,0,.12);border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.18);padding:1rem 1.25rem;transform:translateY(220%);transition:transform .32s ease}
.ulof.is-visible,.cookie-banner--visible,.ulof.show,.ulof.active{transform:none !important}
.ulof a{color:inherit;text-decoration:underline}
.ulof button{cursor:pointer}
.uoqz{position:fixed !important;inset:0;z-index:9001 !important;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.5);padding:1rem}
.uoqz.is-visible,.cookie-modal--visible,.uoqz.show,.uoqz.active{display:flex !important}
.ukbh,.uoqz>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.utbu .uwhs,.utbu .ucir,.utbu .ukiq,.utbu .uzjh,.uqmy .uwhs,.uqmy .ucir,.uqmy .ukiq,.uqmy .uzjh{background:#fff !important;color:#1a1a1a !important}
.uwhs,.ucir{color:#1a1a1a !important}
.uwhs label,.ucir label,.uwhs p,.ucir p,.uwhs .ufyb,.uwhs span,.ucir span,.ueqy,.uorm,.ukiq .uuiv,.ukiq .uuiv *{color:#1a1a1a !important}
.ueqy,.uorm{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uwhs .uoqj{color:#1a1a1a !important}
.uwhs .uoqj.is-sel{color:#fff !important}
.uxfl .uewu{display:none}
.uxfl .uewu.is-visible{display:block !important;color:#c0392b}
.uxfl .uags,.uxfl [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uxfl{color:#1a1a1a}
.utbu .uxfl,.uqmy .uxfl{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.usrd{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.usrd img{width:100%;height:100%;object-fit:cover}
.uqfj,.ufhe{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uqfj img,.ufhe img{width:100%;height:100%;object-fit:cover;display:block}
.uqfj img{opacity:.28}
.ufhe img{opacity:.07}
*:has(> .uqfj),*:has(> .ufhe){position:relative}
.uaxo{position:absolute !important;left:50%;top:52%;transform:translate(-50%,-50%);width:52%;max-width:280px;text-align:center;pointer-events:none;color:#2c2c2c;background:rgba(250,246,238,.94);border-radius:10px;padding:1rem .8rem;box-shadow:0 2px 14px rgba(0,0,0,.16)}
.uaxo .udri{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uaxo .ulss{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uzpz{margin:1.4rem auto;max-width:920px}
.uzpz img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uqos{padding:3rem 0}
.udnl{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.udnl img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uzjh{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uegq{display:flex;overflow:hidden;gap:0 !important}
.ughq{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.umts{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;border:1px solid rgba(0,0,0,.18);background:#fff;cursor:pointer;z-index:2;font-size:1.1rem;line-height:1}
.uzjy{left:.5rem}.utfb{right:.5rem}
.ukiq .uuiv{display:none}.ukiq .uuiv.is-active{display:block}
.uwhs .ugno{display:block !important}
.uwhs .ubuk{display:flex;flex-wrap:wrap;gap:.5rem}
.uwhs .uoqj{cursor:pointer}
