:root {
  --vzzq-accent: #5a0fb8;
  --vzzq-accent-2: #9e38ff;
  --vzzq-accent-light: #a690ee;
  --vzzq-accent-pale: #ede7ff;
  --vzzq-bg: #f5f2ff;
  --vzzq-bg-dark: #1a0940;
  --vzzq-bg-mid: #2f016a;
  --vzzq-text: #1c1228;
  --vzzq-text-muted: #5c5070;
  --vzzq-white: #ffffff;
  --vzzq-yellow-pale: #fff8cb;
  --vzzq-radius: 24px;
  --vzzq-radius-sm: 6px;
  --vzzq-container: 1200px;
  --vzzq-shadow-soft: 0 4px 24px rgba(90,15,184,0.10);
  --vzzq-shadow-soft-lg: 0 8px 40px rgba(90,15,184,0.14);
  --vzzq-font-head: 'Zilla Slab', Georgia, serif;
  --vzzq-font-body: 'Lato', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--vzzq-font-body);
  background: var(--vzzq-bg);
  color: var(--vzzq-text);
  line-height: 1.7;
  min-height: 100vh;
}

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

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

h1, h2, h3, h4 { font-family: var(--vzzq-font-head); line-height: 1.25; }
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.accent-word { color: var(--vzzq-accent-2); }

.container {
  max-width: var(--vzzq-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4rem 0; }
.section__title { font-family: var(--vzzq-font-head); margin-bottom: 0.75rem; }
.section__intro { color: var(--vzzq-text-muted); max-width: 680px; margin-bottom: 2.5rem; }

.ulss {
  background: var(--vzzq-bg-dark);
  color: var(--vzzq-white);
}
.ulss h2, .ulss h3 { color: var(--vzzq-white); }
.ulss p { color: rgba(255,255,255,0.82); }
.ulss a { color: var(--vzzq-accent-light); }

.uavn {
  background: linear-gradient(135deg, var(--vzzq-bg-mid) 0%, var(--vzzq-accent) 100%);
  color: var(--vzzq-white);
}
.uavn h1, .uavn h2, .uavn h3 { color: var(--vzzq-white); }
.uavn p, .uavn .section__intro { color: rgba(255,255,255,0.88); }

.btn {
  display: inline-block;
  font-family: var(--vzzq-font-body);
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  border-radius: var(--vzzq-radius-sm);
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  line-height: 1.3;
}
.btn--primary {
  background: var(--vzzq-accent);
  color: var(--vzzq-white);
  box-shadow: 0 2px 10px rgba(90,15,184,0.22);
}
.btn--primary:hover { background: var(--vzzq-bg-mid); transform: translateY(-1px); text-decoration: none; color: var(--vzzq-white); }
.btn--outline {
  background: transparent;
  color: var(--vzzq-accent);
  border: 1.5px solid var(--vzzq-accent);
}
.btn--outline:hover { background: var(--vzzq-accent-pale); text-decoration: none; }
.btn--lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.45rem 0.95rem; font-size: 0.85rem; }
.btn--full { width: 100%; text-align: center; }

.unsf {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vzzq-white);
  border-bottom: 1px solid rgba(90,15,184,0.10);
  box-shadow: 0 2px 12px rgba(90,15,184,0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.site-header__logo {
  font-family: var(--vzzq-font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--vzzq-accent);
  white-space: nowrap;
  text-decoration: none;
}
.site-nav { margin-left: auto; }
.site-nav__list { display: flex; list-style: none; gap: 0.25rem; }
.site-nav__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vzzq-text-muted);
  padding: 0.4rem 0.7rem;
  border-radius: var(--vzzq-radius-sm);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.site-nav__link:hover, .site-nav__link--active {
  color: var(--vzzq-accent);
  background: var(--vzzq-accent-pale);
}
.site-header__cta { margin-left: 0.5rem; white-space: nowrap; }

.breadcrumbs { padding: 0.6rem 0; background: var(--vzzq-white); border-bottom: 1px solid rgba(90,15,184,0.07); }
.breadcrumbs__list { display: flex; flex-wrap: wrap; gap: 0.25rem 0.5rem; list-style: none; font-size: 0.82rem; color: var(--vzzq-text-muted); }
.breadcrumbs__item + .breadcrumbs__item::before { content: "›"; margin-right: 0.5rem; }
.breadcrumbs__item a { color: var(--vzzq-accent); text-decoration: none; }
.breadcrumbs__item a:hover { text-decoration: underline; }
.breadcrumbs__item[aria-current="page"] { color: var(--vzzq-text-muted); }

.hero { position: relative; overflow: hidden; padding: 3.5rem 0 4rem; }
.hero__bg-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.14;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__pack { position: relative; display: flex; justify-content: center; }
.hero__pack-img {
  width: 280px; height: 280px;
  object-fit: contain;
  border-radius: var(--vzzq-radius);
  box-shadow: var(--vzzq-shadow-soft-lg);
  background: rgba(255,255,255,0.08);
}
.hero__meta-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.hero__date { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.hero__headline { margin-bottom: 0.75rem; }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,0.88); margin-bottom: 1.25rem; max-width: 560px; }
.hero__scorecard-summary { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.scorecard-mini { background: rgba(255,255,255,0.12); border-radius: var(--vzzq-radius-sm); padding: 0.35rem 0.75rem; }
.scorecard-mini__label { font-size: 0.78rem; color: rgba(255,255,255,0.72); display: block; }
.scorecard-mini__value { font-family: var(--vzzq-font-head); font-size: 1.2rem; font-weight: 700; color: var(--vzzq-white); }
.star-row img { border-radius: 2px; }
.hero__trust-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.82rem;
  color: var(--vzzq-white);
}
.trust-chip__icon { font-size: 0.95rem; }

.chip {
  display: inline-block;
  background: var(--vzzq-accent-pale);
  color: var(--vzzq-accent);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.chip--light { background: rgba(255,255,255,0.18); color: var(--vzzq-white); }
.chip--accent { background: var(--vzzq-accent); color: var(--vzzq-white); }

.stat-band { padding: 3rem 0; }
.stat-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-band__figure {
  display: block;
  font-family: var(--vzzq-font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--vzzq-accent-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-band__label { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

.card { border-radius: var(--vzzq-radius); }
.card--soft { background: var(--vzzq-white); box-shadow: var(--vzzq-shadow-soft); }
.card--outlined { background: var(--vzzq-white); border: 1.5px solid rgba(90,15,184,0.12); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.card__stars { margin-bottom: 0.75rem; }
.card__quote {
  font-style: italic;
  color: var(--vzzq-text);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  padding: 1.25rem 1.25rem 0;
}
.card__author {
  font-size: 0.82rem;
  color: var(--vzzq-text-muted);
  font-weight: 700;
  padding: 0 1.25rem 1.25rem;
}
.card--soft .card__stars { padding: 1.25rem 1.25rem 0; }

.disclaimer-inline {
  font-size: 0.8rem;
  color: var(--vzzq-text-muted);
  border-left: 3px solid var(--vzzq-accent-pale);
  padding-left: 0.75rem;
  margin-top: 1.5rem;
}

.further-reading__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.reading-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--vzzq-white);
  border-radius: var(--vzzq-radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--vzzq-shadow-soft);
  text-decoration: none;
  color: var(--vzzq-text);
  transition: box-shadow 0.18s, transform 0.12s;
  border: 1.5px solid transparent;
}
.reading-card:hover { box-shadow: var(--vzzq-shadow-soft-lg); transform: translateY(-2px); border-color: var(--vzzq-accent-pale); text-decoration: none; }
.reading-card__icon { font-size: 1.5rem; flex-shrink: 0; }
.reading-card__body { display: flex; flex-direction: column; gap: 0.25rem; }
.reading-card__body strong { color: var(--vzzq-accent); font-size: 0.95rem; }
.reading-card__body span { font-size: 0.82rem; color: var(--vzzq-text-muted); }

.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.ingredient-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--vzzq-radius) var(--vzzq-radius) 0 0;
}
.ingredient-card__body { padding: 1.1rem 1.25rem 1.25rem; }
.ingredient-card__name { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--vzzq-accent); }
.ingredient-card__desc { font-size: 0.88rem; color: var(--vzzq-text-muted); margin-bottom: 0.75rem; }

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--vzzq-radius-sm);
}
.badge--efsa { background: var(--vzzq-accent-pale); color: var(--vzzq-accent); }

.nutrient-table-wrap { overflow-x: auto; }
.nutrient-table__title { font-size: 1.1rem; margin-bottom: 0.75rem; }
.nutrient-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.nutrient-table th {
  background: var(--vzzq-accent);
  color: var(--vzzq-white);
  text-align: left;
  padding: 0.6rem 0.85rem;
  font-weight: 700;
}
.nutrient-table td {
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid rgba(90,15,184,0.08);
  color: var(--vzzq-text);
}
.nutrient-table tr:nth-child(even) td { background: var(--vzzq-accent-pale); }
.nutrient-table__note { font-size: 0.78rem; color: var(--vzzq-text-muted); margin-top: 0.5rem; }

.routine-checklist__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.checklist__item { display: flex; }
.checklist__label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
}
.checklist__box {
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--vzzq-accent);
  width: 1.1rem;
  height: 1.1rem;
}

.lf-quiz__title { font-family: var(--vzzq-font-head); font-size: 1.15rem; margin-bottom: 1rem; }
.lf-quiz__step { display: none; }
.lf-quiz__step.active { display: block; }
.lf-quiz__question { font-weight: 700; margin-bottom: 0.75rem; font-size: 0.95rem; }
.lf-quiz__options { display: flex; flex-direction: column; gap: 0.5rem; }
.lf-quiz__opt {
  background: var(--vzzq-accent-pale);
  border: 1.5px solid transparent;
  border-radius: var(--vzzq-radius-sm);
  padding: 0.6rem 0.9rem;
  text-align: left;
  font-family: var(--vzzq-font-body);
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--vzzq-accent);
  font-weight: 700;
  transition: background 0.15s, border-color 0.15s;
}
.lf-quiz__opt:hover { background: var(--vzzq-accent); color: var(--vzzq-white); border-color: var(--vzzq-accent); }
.lf-quiz__result { margin-top: 1rem; }
.lf-quiz__result-text { font-size: 0.92rem; color: var(--vzzq-text); margin-bottom: 1rem; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bento-card { padding: 1.5rem; }
.bento-card--wide { grid-column: span 2; }
.bento-card--verdict { grid-column: span 2; background: var(--vzzq-accent) !important; color: var(--vzzq-white); }
.bento-card--verdict h3, .bento-card--verdict p { color: var(--vzzq-white); }
.bento-card__title { font-size: 1.05rem; margin-bottom: 0.6rem; }
.bento-card__criterion { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--vzzq-accent); }
.bento-card--verdict .bento-card__criterion { color: rgba(255,255,255,0.85); }
.bento-card__body { font-size: 0.88rem; color: var(--vzzq-text-muted); margin-top: 0.5rem; }
.bento-card--verdict .bento-card__body { color: rgba(255,255,255,0.88); }
.bento-card__img { width: 100%; height: 180px; object-fit: cover; border-radius: calc(var(--vzzq-radius) - 4px); margin-top: 1rem; }

.rating-bar-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.4rem; }
.rating-bar {
  flex: 1;
  height: 8px;
  background: var(--vzzq-accent-pale);
  border-radius: 999px;
  overflow: hidden;
}
.rating-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--vzzq-accent) 0%, var(--vzzq-accent-2) 100%);
  border-radius: 999px;
}
.rating-bar__score { font-size: 0.82rem; font-weight: 700; color: var(--vzzq-accent); white-space: nowrap; }

.verdict-score { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; }
.verdict-score__label { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.verdict-score__value { font-family: var(--vzzq-font-head); font-size: 1.6rem; font-weight: 700; color: var(--vzzq-white); }

.pro-con-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.88rem; }
.pro-con-list--pros li::before { content: "✓ "; color: #22a06b; font-weight: 700; }
.pro-con-list--cons li::before { content: "· "; color: var(--vzzq-text-muted); }

.bento-card--pros { background: #f0faf5 !important; }
.bento-card--cons { background: var(--vzzq-accent-pale) !important; }

.order-section { background: var(--vzzq-accent-pale); }
.order-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.order-section__pack { width: 240px; height: 240px; object-fit: contain; border-radius: var(--vzzq-radius); box-shadow: var(--vzzq-shadow-soft-lg); margin-bottom: 1rem; }
.order-price-block { margin: 0.75rem 0 1rem; }
.order-price__was { display: block; font-size: 0.88rem; text-decoration: line-through; color: var(--vzzq-text-muted); }
.order-price__now { display: block; font-family: var(--vzzq-font-head); font-size: 2rem; font-weight: 700; color: var(--vzzq-accent); line-height: 1.1; }
.order-price__note { display: block; font-size: 0.78rem; color: var(--vzzq-text-muted); margin-top: 0.2rem; }
.order-trust-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.88rem; color: var(--vzzq-text-muted); }
.order-trust-list__icon { margin-right: 0.35rem; }
.order-section__title { font-family: var(--vzzq-font-head); font-size: 1.5rem; margin-bottom: 0.4rem; }
.order-section__sub { color: var(--vzzq-text-muted); font-size: 0.92rem; margin-bottom: 1.5rem; }

.product-pack { position: relative; }
.uiiz {
  position: absolute;
  bottom: 0.75rem; left: 50%; transform: translateX(-50%);
  background: rgba(26,9,64,0.82);
  border-radius: var(--vzzq-radius-sm);
  padding: 0.3rem 0.9rem;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}
.pack-overlay__name { display: block; font-family: var(--vzzq-font-head); font-size: 0.88rem; font-weight: 700; color: var(--vzzq-white); }
.pack-overlay__sub { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.6); }

.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--vzzq-text); }
.form-control {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(90,15,184,0.18);
  border-radius: var(--vzzq-radius-sm);
  font-family: var(--vzzq-font-body);
  font-size: 0.95rem;
  color: var(--vzzq-text);
  background: var(--vzzq-white);
  transition: border-color 0.15s;
}
.form-control:focus { outline: none; border-color: var(--vzzq-accent); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-group--check { display: flex; align-items: flex-start; gap: 0; }
.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--vzzq-text-muted);
  cursor: pointer;
}
.form-check-input { flex-shrink: 0; margin-top: 0.15rem; accent-color: var(--vzzq-accent); }
.form-note { font-size: 0.75rem; color: var(--vzzq-text-muted); margin-top: 0.75rem; }

.faq__list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 820px; }
.faq__item {
  background: var(--vzzq-white);
  border-radius: var(--vzzq-radius);
  box-shadow: var(--vzzq-shadow-soft);
  overflow: hidden;
}
.faq__question {
  padding: 1rem 1.25rem;
  font-family: var(--vzzq-font-head);
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--vzzq-accent);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: "+"; font-size: 1.2rem; flex-shrink: 0; }
details[open] .faq__question::after { content: "−"; }
.faq__answer { padding: 0 1.25rem 1.1rem; font-size: 0.92rem; color: var(--vzzq-text-muted); }

.lifestyle-band { padding: 3.5rem 0; }
.lifestyle-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lifestyle-band__title { font-size: clamp(1.35rem, 2.5vw, 1.85rem); margin-bottom: 0.75rem; }
.lifestyle-band p { color: rgba(255,255,255,0.82); margin-bottom: 1.5rem; }
.lifestyle-band__img { border-radius: var(--vzzq-radius); width: 100%; }

.page-hero { padding: 3rem 0; }
.page-hero__title { margin-bottom: 0.75rem; }
.page-hero__sub { font-size: 1.05rem; max-width: 640px; }

.legal-page { padding: 3rem 0 4rem; }
.legal-page__inner { max-width: 820px; }
.legal-page__title { margin-bottom: 0.35rem; }
.legal-page__meta { font-size: 0.82rem; color: var(--vzzq-text-muted); margin-bottom: 2rem; }
.legal-page__inner h2 { font-size: 1.15rem; margin: 2rem 0 0.6rem; }
.legal-page__inner p, .legal-page__inner li { font-size: 0.92rem; color: var(--vzzq-text-muted); margin-bottom: 0.4rem; }
.legal-page__inner ul, .legal-page__inner ol { padding-left: 1.4rem; margin-bottom: 0.75rem; }
.legal-page__inner code { background: var(--vzzq-accent-pale); border-radius: 3px; padding: 0.1rem 0.35rem; font-size: 0.85em; color: var(--vzzq-accent); }
.legal-page__inner table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin: 1rem 0; }
.legal-page__inner th { background: var(--vzzq-accent); color: var(--vzzq-white); padding: 0.5rem 0.75rem; text-align: left; }
.legal-page__inner td { padding: 0.45rem 0.75rem; border-bottom: 1px solid rgba(90,15,184,0.08); }
.legal-page__inner tr:nth-child(even) td { background: var(--vzzq-accent-pale); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card { overflow: hidden; }
.review-card__link { display: block; text-decoration: none; color: var(--vzzq-text); }
.review-card__img { width: 100%; height: 200px; object-fit: contain; padding: 1rem; background: var(--vzzq-accent-pale); }
.review-card__body { padding: 1.1rem 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.review-card__title { font-size: 1.1rem; }
.review-card__desc { font-size: 0.88rem; color: var(--vzzq-text-muted); }
.review-card__score { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--vzzq-accent); font-weight: 700; }
.review-card--placeholder { opacity: 0.6; }

.ingredients-guide { display: flex; flex-direction: column; gap: 3rem; }
.ingredient-article {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}
.ingredient-article--reverse { grid-template-columns: 1.5fr 1fr; }
.ingredient-article--reverse .ingredient-article__img { order: 2; }
.ingredient-article__img { width: 100%; border-radius: var(--vzzq-radius); }
.ingredient-article__body h2 { margin-bottom: 0.75rem; }
.ingredient-article__body p { font-size: 0.92rem; color: var(--vzzq-text-muted); margin-bottom: 0.75rem; }
.ingredient-article__body ul { padding-left: 1.3rem; }
.ingredient-article__body li { font-size: 0.92rem; color: var(--vzzq-text-muted); margin-bottom: 0.35rem; }

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-content__text h2 { font-size: 1.25rem; margin: 2rem 0 0.6rem; }
.about-content__text h2:first-child { margin-top: 0; }
.about-content__text p { font-size: 0.92rem; color: var(--vzzq-text-muted); margin-bottom: 0.75rem; }
.about-list { padding-left: 1.3rem; }
.about-list li { font-size: 0.92rem; color: var(--vzzq-text-muted); margin-bottom: 0.5rem; }
.about-content__img { width: 100%; border-radius: var(--vzzq-radius); margin-bottom: 1.25rem; }
.about-aside-card { padding: 1.25rem; }
.about-aside-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.scorecard-criteria-list { padding-left: 1.3rem; }
.scorecard-criteria-list li { font-size: 0.88rem; color: var(--vzzq-text-muted); margin-bottom: 0.3rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-layout h2 { font-size: 1.35rem; margin-bottom: 1.25rem; }
.contact-info-card { padding: 1.25rem; margin-bottom: 1.5rem; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.contact-info-list li { font-size: 0.88rem; color: var(--vzzq-text-muted); }
.map-container { border-radius: var(--vzzq-radius); overflow: hidden; box-shadow: var(--vzzq-shadow-soft); }

.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin: 1rem 0; }
.cookie-table th { background: var(--vzzq-accent); color: var(--vzzq-white); padding: 0.5rem 0.75rem; text-align: left; }
.cookie-table td { padding: 0.45rem 0.75rem; border-bottom: 1px solid rgba(90,15,184,0.08); color: var(--vzzq-text-muted); }
.cookie-table tr:nth-child(even) td { background: var(--vzzq-accent-pale); }

.site-footer {
  background: var(--vzzq-bg-dark);
  color: rgba(255,255,255,0.72);
  padding-top: 3rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.site-footer__logo { font-family: var(--vzzq-font-head); font-size: 1.2rem; font-weight: 700; color: var(--vzzq-white); display: block; margin-bottom: 0.5rem; }
.site-footer__tagline { font-size: 0.85rem; margin-bottom: 0.4rem; }
.site-footer__abn { font-size: 0.78rem; color: rgba(255,255,255,0.48); margin-bottom: 0.25rem; }
.site-footer__email { font-size: 0.82rem; }
.site-footer__email a { color: var(--vzzq-accent-light); }
.site-footer__nav { display: flex; gap: 2.5rem; }
.site-footer__nav-col h4 { font-family: var(--vzzq-font-head); font-size: 0.9rem; color: var(--vzzq-white); margin-bottom: 0.75rem; }
.site-footer__nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.site-footer__nav-col a { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-decoration: none; }
.site-footer__nav-col a:hover { color: var(--vzzq-accent-light); text-decoration: underline; }
.site-footer__disclaimer {
  background: rgba(0,0,0,0.25);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer__disclaimer p { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 0.25rem; }
.site-footer__disclaimer strong { color: rgba(255,255,255,0.65); }

.umev {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--vzzq-bg-dark);
  border-top: 2px solid var(--vzzq-accent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}
.umev.is-visible { display: block; transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--vzzq-container);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { font-size: 0.85rem; color: rgba(255,255,255,0.82); flex: 1; min-width: 200px; }
.cookie-banner__text a { color: var(--vzzq-accent-light); }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.umev .btn--outline { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.7); }
.umev .btn--outline:hover { background: rgba(255,255,255,0.08); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__pack { justify-content: center; margin-bottom: 1.5rem; }
  .hero__trust-chips { justify-content: center; }
  .hero__scorecard-summary { justify-content: center; }
  .hero__meta-row { justify-content: center; }
  .hero__sub { margin: 0 auto 1.25rem; }
  .stat-band__inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .further-reading__grid { grid-template-columns: 1fr; }
  .ingredients__grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide, .bento-card--verdict { grid-column: span 1; }
  .routine-checklist__inner { grid-template-columns: 1fr; }
  .order-section__inner { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ingredient-article { grid-template-columns: 1fr; }
  .ingredient-article--reverse .ingredient-article__img { order: 0; }
  .lifestyle-band__inner { grid-template-columns: 1fr; }
  .site-header__inner { flex-wrap: wrap; gap: 0.75rem; }
  .site-nav__list { flex-wrap: wrap; }
  .site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .stat-band__inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero { padding: 2rem 0 2.5rem; }
  .section { padding: 2.5rem 0; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.umev{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}
.umev.is-visible,.cookie-banner--visible,.umev.show,.umev.active{transform:none !important}
.umev a{color:inherit;text-decoration:underline}
.umev button{cursor:pointer}
.urci{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}
.urci.is-visible,.cookie-modal--visible,.urci.show,.urci.active{display:flex !important}
.uzwg,.urci>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.ulss .uxeo,.ulss .ulox,.ulss .uzgq,.ulss .uzrg,.uavn .uxeo,.uavn .ulox,.uavn .uzgq,.uavn .uzrg{background:#fff !important;color:#1a1a1a !important}
.uxeo,.ulox{color:#1a1a1a !important}
.uxeo label,.ulox label,.uxeo p,.ulox p,.uxeo .uora,.uxeo span,.ulox span,.umai,.urew,.uzgq .uhfx,.uzgq .uhfx *{color:#1a1a1a !important}
.umai,.urew{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uxeo .ubbt{color:#1a1a1a !important}
.uxeo .ubbt.is-sel{color:#fff !important}
.udmw .uwvw{display:none}
.udmw .uwvw.is-visible{display:block !important;color:#c0392b}
.udmw .uxjf,.udmw [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.udmw{color:#1a1a1a}
.ulss .udmw,.uavn .udmw{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uxed{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uxed img{width:100%;height:100%;object-fit:cover}
.uvtc,.unny{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uvtc img,.unny img{width:100%;height:100%;object-fit:cover;display:block}
.uvtc img{opacity:.28}
.unny img{opacity:.07}
*:has(> .uvtc),*:has(> .unny){position:relative}
.uiiz{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)}
.uiiz .ujvz{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uiiz .uwoz{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uwzm{margin:1.4rem auto;max-width:920px}
.uwzm img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ubsp{padding:3rem 0}
.ujnv{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ujnv img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uzrg{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uawj{display:flex;overflow:hidden;gap:0 !important}
.uaid{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.urlu{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}
.ualv{left:.5rem}.udjk{right:.5rem}
.uzgq .uhfx{display:none}.uzgq .uhfx.is-active{display:block}
.uxeo .ugei{display:block !important}
.uxeo .uenh{display:flex;flex-wrap:wrap;gap:.5rem}
.uxeo .ubbt{cursor:pointer}
