:root {
  --vvlh-c-black: #000000;
  --vvlh-c-white: #ffffff;
  --vvlh-c-accent: #e5171f;
  --vvlh-c-accent-2: #1362a3;
  --vvlh-c-gold: #b5a238;
  --vvlh-c-dark-bg: #0d0d0d;
  --vvlh-c-dark-surface: #1a1a1a;
  --vvlh-c-text: #1a1a1a;
  --vvlh-c-text-muted: #555555;
  --vvlh-c-border: #e0e0e0;
  --vvlh-c-glass-bg: rgba(255,255,255,0.08);
  --vvlh-c-glass-border: rgba(255,255,255,0.15);
  --vvlh-radius: 0px;
  --vvlh-container: 960px;
  --vvlh-font-head: 'Playfair Display', Georgia, serif;
  --vvlh-font-body: 'Source Sans 3', Arial, sans-serif;
  --vvlh-spacing-xs: 0.5rem;
  --vvlh-spacing-sm: 1rem;
  --vvlh-spacing-md: 2rem;
  --vvlh-spacing-lg: 3.5rem;
  --vvlh-spacing-xl: 5rem;
}

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

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

body {
  font-family: var(--vvlh-font-body);
  color: var(--vvlh-c-text);
  background: var(--vvlh-c-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--vvlh-c-accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--vvlh-font-head); line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; margin-bottom: var(--vvlh-spacing-sm); }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }

p { margin-bottom: var(--vvlh-spacing-sm); }
ul { padding-left: 1.4rem; }
ul li { margin-bottom: 0.4rem; }

.container {
  max-width: var(--vvlh-container);
  margin: 0 auto;
  padding: 0 var(--vvlh-spacing-md);
}
.narrow { max-width: 720px; }

.section-light { background: var(--vvlh-c-white); padding: var(--vvlh-spacing-xl) 0; }
.uwat {
  background: var(--vvlh-c-dark-bg);
  color: var(--vvlh-c-white);
  padding: var(--vvlh-spacing-xl) 0;
}
.uwat a { color: var(--vvlh-c-gold); }
.uwat h2, .uwat h3 { color: var(--vvlh-c-white); }

.glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--vvlh-c-glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--vvlh-spacing-md);
}
.section-light .glass {
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--vvlh-c-border);
  backdrop-filter: none;
}

.uvwr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vvlh-c-black);
  border-bottom: 2px solid var(--vvlh-c-accent);
}
.uvwr .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  gap: var(--vvlh-spacing-sm);
}
.site-logo {
  font-family: var(--vvlh-font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vvlh-c-white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; color: var(--vvlh-c-gold); }

.site-nav ul {
  display: flex;
  list-style: none;
  gap: var(--vvlh-spacing-md);
  padding: 0;
  align-items: center;
}
.site-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-family: var(--vvlh-font-body);
  transition: color 0.2s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--vvlh-c-white); text-decoration: none; }

.btn-nav-cta {
  background: var(--vvlh-c-accent);
  color: var(--vvlh-c-white) !important;
  padding: 0.4rem 1.1rem;
  font-weight: 600;
  border: 2px solid var(--vvlh-c-accent);
  transition: background 0.2s, color 0.2s;
}
.btn-nav-cta:hover { background: transparent; color: var(--vvlh-c-accent) !important; }

.uyrp {
  display: none;
  background: none;
  border: none;
  color: var(--vvlh-c-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero.section-split {
  position: relative;
  background: var(--vvlh-c-dark-bg);
  overflow: hidden;
  padding: 0;
}
.hero__bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--vvlh-spacing-lg);
  align-items: center;
  padding-top: var(--vvlh-spacing-xl);
  padding-bottom: var(--vvlh-spacing-xl);
}
.hero__text { color: var(--vvlh-c-white); }
.hero__text h1 { color: var(--vvlh-c-white); margin-bottom: var(--vvlh-spacing-sm); }
.hero__text p { color: rgba(255,255,255,0.85); }
.hero__sub { font-size: 1.05rem; margin-bottom: var(--vvlh-spacing-md); }

.h1-marker {
  display: inline;
  background: linear-gradient(transparent 60%, var(--vvlh-c-accent) 60%);
  padding-bottom: 2px;
}

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--vvlh-spacing-sm);
}
.breadcrumb span { margin: 0 0.3em; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--vvlh-c-white); }

.review-chip {
  display: inline-block;
  background: var(--vvlh-c-accent);
  color: var(--vvlh-c-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  margin-bottom: var(--vvlh-spacing-sm);
}

.scorecard-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.2rem;
  margin-bottom: var(--vvlh-spacing-md);
  flex-wrap: wrap;
}
.score-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.score-value { font-family: var(--vvlh-font-head); font-size: 1.4rem; font-weight: 700; color: var(--vvlh-c-gold); }
.score-stars { font-size: 1rem; color: var(--vvlh-c-gold); }
.score-reviews { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.hero__ctas { display: flex; gap: var(--vvlh-spacing-sm); flex-wrap: wrap; align-items: center; }

.btn-outline-dark {
  display: inline-block;
  border: 2px solid var(--vvlh-c-white);
  color: var(--vvlh-c-white);
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  font-family: var(--vvlh-font-body);
  transition: background 0.2s, color 0.2s;
  background: transparent;
}
.btn-outline-dark:hover { background: var(--vvlh-c-white); color: var(--vvlh-c-black); text-decoration: none; }

.btn-outline-light {
  display: inline-block;
  border: 2px solid var(--vvlh-c-white);
  color: var(--vvlh-c-white);
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  font-family: var(--vvlh-font-body);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-light:hover { background: var(--vvlh-c-white); color: var(--vvlh-c-black); text-decoration: none; }

.btn-text-link {
  color: var(--vvlh-c-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero__pack-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.hero__pack-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }

.band-trust { padding: var(--vvlh-spacing-md) 0; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vvlh-spacing-sm);
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.trust-icon { color: var(--vvlh-c-accent); font-size: 0.5rem; }

.section-intro {
  font-size: 1.05rem;
  color: var(--vvlh-c-text-muted);
  margin-bottom: var(--vvlh-spacing-lg);
  max-width: 680px;
}
.uwat .section-intro { color: rgba(255,255,255,0.65); }

.timeline-steps { display: flex; flex-direction: column; gap: var(--vvlh-spacing-lg); margin-bottom: var(--vvlh-spacing-lg); }
.timeline-step { display: grid; grid-template-columns: 60px 1fr; gap: var(--vvlh-spacing-md); align-items: start; }
.timeline-num {
  font-family: var(--vvlh-font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vvlh-c-accent);
  line-height: 1;
}
.uwat .timeline-num { color: var(--vvlh-c-gold); }
.timeline-content img { margin: var(--vvlh-spacing-sm) 0; }

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvlh-spacing-md);
  margin-bottom: var(--vvlh-spacing-md);
}
.ing-card { display: flex; flex-direction: column; }
.ing-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: var(--vvlh-spacing-sm); }
.ing-card h3 { font-size: 1rem; }
.ing-card p { font-size: 0.9rem; flex: 1; }
.efsa-badge {
  display: inline-block;
  background: var(--vvlh-c-accent-2);
  color: var(--vvlh-c-white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.05em;
  margin-top: auto;
  align-self: flex-start;
}

.ingredient-disclaimer, .review-disclaimer, .ingredient-detail-grid + p {
  font-size: 0.8rem;
  color: var(--vvlh-c-text-muted);
  border-top: 1px solid var(--vvlh-c-border);
  padding-top: var(--vvlh-spacing-sm);
  margin-top: var(--vvlh-spacing-md);
}

.section-faq { padding: var(--vvlh-spacing-xl) 0; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.uzgg { border-bottom: 1px solid rgba(255,255,255,0.12); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--vvlh-c-white);
  font-family: var(--vvlh-font-head);
  font-size: 1rem;
  text-align: left;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.4rem; flex-shrink: 0; color: var(--vvlh-c-gold); }
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-a { display: none; padding-bottom: 1rem; }
.faq-a p { color: rgba(255,255,255,0.8); margin-bottom: 0; font-size: 0.95rem; }
.faq-a a { color: var(--vvlh-c-gold); }
.uzgg.is-open .faq-a { display: block; }

.section-about { padding: var(--vvlh-spacing-xl) 0; }
.about-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--vvlh-spacing-lg);
  align-items: start;
}
.author-bio {
  display: flex;
  gap: var(--vvlh-spacing-sm);
  align-items: flex-start;
  margin-top: var(--vvlh-spacing-md);
}
.author-img-wrap { flex-shrink: 0; width: 90px; height: 68px; overflow: hidden; }
.author-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.author-info { display: flex; flex-direction: column; gap: 0.25rem; }
.author-info strong { font-family: var(--vvlh-font-head); font-size: 1rem; }
.author-info span { font-size: 0.8rem; color: var(--vvlh-c-text-muted); }
.author-info p { font-size: 0.85rem; margin-bottom: 0; }
.about-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.section-scorecard { padding: var(--vvlh-spacing-xl) 0; }
.table-wrap { overflow-x: auto; margin-bottom: var(--vvlh-spacing-md); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th {
  background: var(--vvlh-c-accent);
  color: var(--vvlh-c-white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: var(--vvlh-font-body);
  font-weight: 600;
}
.comparison-table td { padding: 0.7rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); vertical-align: top; }
.uwat .comparison-table td { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.1); }
.section-light .comparison-table td { border-bottom-color: var(--vvlh-c-border); }
.comparison-table tr:last-child td { border-bottom: none; }
.score-cell.high { color: #6dbf67; }
.score-cell.mid { color: var(--vvlh-c-gold); }
.score-cell.low { color: #cc5555; }
.uwat .score-cell.high { color: #7dd87a; }

.scorecard-verdict { margin-top: var(--vvlh-spacing-md); }
.scorecard-verdict h3 { margin-bottom: var(--vvlh-spacing-xs); }
.scorecard-verdict p { margin-bottom: var(--vvlh-spacing-sm); }
.scorecard-img-wrap { margin-top: var(--vvlh-spacing-md); }
.scorecard-img-wrap img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.section-myths { padding: var(--vvlh-spacing-xl) 0; }
.myths-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--vvlh-spacing-md); }
.myth-card { padding: var(--vvlh-spacing-md); }
.myth-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vvlh-c-accent);
  margin-bottom: 0.4rem;
}
.fact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vvlh-c-accent-2);
  margin-top: var(--vvlh-spacing-sm);
  margin-bottom: 0.4rem;
}
.myth-card p { font-size: 0.9rem; margin-bottom: 0; }

.section-reviews { padding: var(--vvlh-spacing-xl) 0; background: #f8f8f8; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--vvlh-spacing-md); margin-bottom: var(--vvlh-spacing-md); }
.review-card { padding: var(--vvlh-spacing-md); }
.review-stars { color: var(--vvlh-c-gold); font-size: 1.1rem; margin-bottom: 0.5rem; }
.review-card blockquote { font-style: italic; font-size: 0.95rem; margin-bottom: var(--vvlh-spacing-sm); }
.review-card cite { font-size: 0.8rem; color: var(--vvlh-c-text-muted); }
.review-disclaimer { font-size: 0.8rem; color: var(--vvlh-c-text-muted); border-top: 1px solid var(--vvlh-c-border); padding-top: var(--vvlh-spacing-sm); }

.section-order { padding: var(--vvlh-spacing-xl) 0; }
.order-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vvlh-spacing-lg);
  align-items: start;
}
.order-info h2 { color: var(--vvlh-c-white); }
.order-info p { color: rgba(255,255,255,0.8); }
.pack-detail-wrap { margin: var(--vvlh-spacing-md) 0; }
.pack-detail-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.order-features { list-style: none; padding: 0; }
.order-features li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.order-features li::before { content: '✓ '; color: var(--vvlh-c-gold); font-weight: 700; }
.price-display { font-size: 1.2rem; color: var(--vvlh-c-white); margin-top: var(--vvlh-spacing-sm); }
.price-display strong { font-size: 1.8rem; color: var(--vvlh-c-gold); }
.price-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.order-form-wrap { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: var(--vvlh-spacing-md); }
.order-form-wrap h3 { color: var(--vvlh-c-white); margin-bottom: var(--vvlh-spacing-md); }

.uwjf, .ufmt { display: flex; flex-direction: column; gap: var(--vvlh-spacing-sm); }
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.ufmt .form-field label { color: var(--vvlh-c-text); }
.form-field input, .form-field textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--vvlh-c-white);
  padding: 0.65rem 0.9rem;
  font-family: var(--vvlh-font-body);
  font-size: 0.95rem;
  width: 100%;
}
.ufmt .form-field input,
.ufmt .form-field textarea {
  background: var(--vvlh-c-white);
  border: 1px solid var(--vvlh-c-border);
  color: var(--vvlh-c-text);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.ufmt .form-field input::placeholder,
.ufmt .form-field textarea::placeholder { color: #aaa; }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--vvlh-c-accent); outline-offset: 1px; }
.form-field--check { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
.form-field--check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--vvlh-c-accent); width: 16px; height: 16px; }
.form-field--check label { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 400; }
.ufmt .form-field--check label { color: var(--vvlh-c-text-muted); }

.btn-submit {
  background: var(--vvlh-c-accent);
  color: var(--vvlh-c-white);
  border: 2px solid var(--vvlh-c-accent);
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--vvlh-font-body);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.btn-submit:hover { background: transparent; color: var(--vvlh-c-accent); }

.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0; }
.form-note a { color: var(--vvlh-c-gold); }

.site-footer { padding: var(--vvlh-spacing-lg) 0 var(--vvlh-spacing-md); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--vvlh-spacing-lg);
  padding-bottom: var(--vvlh-spacing-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-family: var(--vvlh-font-head); font-size: 1.1rem; font-weight: 700; color: var(--vvlh-c-white); display: block; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.3rem; }
.footer-brand a { color: var(--vvlh-c-gold); }
.footer-nav { display: flex; gap: var(--vvlh-spacing-lg); }
.footer-col strong { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.3rem; }
.footer-col ul li a { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.footer-col ul li a:hover { color: var(--vvlh-c-white); }
.footer-disclaimer { padding-top: var(--vvlh-spacing-sm); }
.footer-disclaimer p { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.4rem; }

.page-hero { padding: var(--vvlh-spacing-lg) 0; }
.page-hero h1 { color: var(--vvlh-c-white); }
.page-hero__sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-top: 0.5rem; }

.hero-review .hero__inner { padding-top: var(--vvlh-spacing-lg); padding-bottom: var(--vvlh-spacing-lg); }
.hero-review .hero__visual img { aspect-ratio: 1/1; object-fit: contain; padding: 1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }

.inner-content { padding: var(--vvlh-spacing-xl) 0; }
.inner-content h2 { margin-top: var(--vvlh-spacing-lg); margin-bottom: var(--vvlh-spacing-sm); }
.inner-content h2:first-child { margin-top: 0; }

.legal-content h2 { font-size: 1.1rem; margin-top: var(--vvlh-spacing-md); border-bottom: 1px solid var(--vvlh-c-border); padding-bottom: 0.4rem; }
.legal-content ul { margin-bottom: var(--vvlh-spacing-sm); }

.info-box { margin-top: var(--vvlh-spacing-md); }
.info-box h3 { margin-bottom: 0.5rem; }
.info-box p { margin-bottom: 0; font-size: 0.9rem; }

.cta-band { padding: var(--vvlh-spacing-lg) 0; }
.cta-center { text-align: center; }
.cta-center h2 { margin-bottom: var(--vvlh-spacing-sm); }
.cta-center p { margin-bottom: var(--vvlh-spacing-md); color: rgba(255,255,255,0.75); }

.thank-hero { padding: var(--vvlh-spacing-xl) 0; }
.thank-icon { font-size: 3rem; color: var(--vvlh-c-gold); margin-bottom: var(--vvlh-spacing-sm); }
.error-code { font-family: var(--vvlh-font-head); font-size: 5rem; font-weight: 700; color: var(--vvlh-c-accent); line-height: 1; margin-bottom: var(--vvlh-spacing-sm); }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--vvlh-spacing-lg); }
.contact-list { list-style: none; padding: 0; margin-bottom: var(--vvlh-spacing-md); }
.contact-list li { padding: 0.4rem 0; border-bottom: 1px solid var(--vvlh-c-border); font-size: 0.9rem; }
.map-container { margin-top: var(--vvlh-spacing-md); }
.map-container iframe { width: 100%; height: 450px; border: 0; display: block; }

.ingredient-detail-grid { display: grid; grid-template-columns: 1fr; gap: var(--vvlh-spacing-md); margin-top: var(--vvlh-spacing-lg); }
.ing-detail img { width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: var(--vvlh-spacing-sm); }
.ing-detail h3 { margin-bottom: var(--vvlh-spacing-xs); }

.review-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--vvlh-spacing-md); margin-bottom: var(--vvlh-spacing-lg); }
.pros h3 { color: #4a9e45; }
.cons h3 { color: var(--vvlh-c-accent); }
.pros ul, .cons ul { font-size: 0.9rem; }

.usya {
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--vvlh-c-border);
  padding: var(--vvlh-spacing-md);
  margin-top: var(--vvlh-spacing-lg);
}
.uwat .usya {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.udit {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vvlh-c-dark-surface);
  border-top: 2px solid var(--vvlh-c-accent);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.4);
}
.udit.is-visible { display: block; }
.cookie-banner__inner {
  max-width: var(--vvlh-container);
  margin: 0 auto;
  padding: var(--vvlh-spacing-sm) var(--vvlh-spacing-md);
  display: flex;
  gap: var(--vvlh-spacing-md);
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner__text { font-size: 0.85rem; color: rgba(255,255,255,0.8); flex: 1; margin-bottom: 0; }
.cookie-banner__text a { color: var(--vvlh-c-gold); }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--vvlh-c-accent);
  color: var(--vvlh-c-white);
  border: none;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.btn-cookie-reject, .btn-cookie-settings {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  cursor: pointer;
}
.btn-cookie-reject:hover, .btn-cookie-settings:hover { color: var(--vvlh-c-white); border-color: var(--vvlh-c-white); }

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--vvlh-c-black); padding: var(--vvlh-spacing-sm); z-index: 99; border-top: 1px solid rgba(255,255,255,0.1); }
  .site-nav.is-open ul { flex-direction: column; gap: 0; }
  .site-nav.is-open ul li a { display: block; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 1rem; }
  .uyrp { display: block; }
  .uvwr .container { position: relative; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 260px; margin: 0 auto; }
  .about-split, .order-split, .contact-split { grid-template-columns: 1fr; }
  .ingredient-grid { grid-template-columns: 1fr; }
  .myths-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: var(--vvlh-spacing-md); }
  .review-pros-cons { grid-template-columns: 1fr; }
  .timeline-step { grid-template-columns: 48px 1fr; gap: var(--vvlh-spacing-sm); }
  .timeline-num { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  :root { --vvlh-spacing-xl: 3rem; --vvlh-spacing-lg: 2.5rem; }
  h1 { font-size: 1.6rem; }
  .score-value { font-size: 1.1rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.udit{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}
.udit.is-visible,.cookie-banner--visible,.udit.show,.udit.active{transform:none !important}
.udit a{color:inherit;text-decoration:underline}
.udit button{cursor:pointer}
.uxqi{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}
.uxqi.is-visible,.cookie-modal--visible,.uxqi.show,.uxqi.active{display:flex !important}
.urfz,.uxqi>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uwat .usya,.uwat .urdf,.uwat .uvrv,.uwat .utup,.ukpg .usya,.ukpg .urdf,.ukpg .uvrv,.ukpg .utup{background:#fff !important;color:#1a1a1a !important}
.usya,.urdf{color:#1a1a1a !important}
.usya label,.urdf label,.usya p,.urdf p,.usya .ufkt,.usya span,.urdf span,.uygx,.uzuf,.uvrv .uskh,.uvrv .uskh *{color:#1a1a1a !important}
.uygx,.uzuf{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.usya .uogi{color:#1a1a1a !important}
.usya .uogi.is-sel{color:#fff !important}
.uwjf .uddx{display:none}
.uwjf .uddx.is-visible{display:block !important;color:#c0392b}
.uwjf .umyk,.uwjf [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uwjf{color:#1a1a1a}
.uwat .uwjf,.ukpg .uwjf{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ujvv{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ujvv img{width:100%;height:100%;object-fit:cover}
.uqrd,.ujeb{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uqrd img,.ujeb img{width:100%;height:100%;object-fit:cover;display:block}
.uqrd img{opacity:.28}
.ujeb img{opacity:.07}
*:has(> .uqrd),*:has(> .ujeb){position:relative}
.unah{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)}
.unah .uead{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.unah .uqjz{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uzxi{margin:1.4rem auto;max-width:920px}
.uzxi img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.udpr{padding:3rem 0}
.ujgk{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ujgk img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.utup{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.unju{display:flex;overflow:hidden;gap:0 !important}
.uifq{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uqwe{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}
.ubmf{left:.5rem}.uzxw{right:.5rem}
.uvrv .uskh{display:none}.uvrv .uskh.is-active{display:block}
.usya .uwzb{display:block !important}
.usya .usup{display:flex;flex-wrap:wrap;gap:.5rem}
.usya .uogi{cursor:pointer}
