:root {
  --vthu-clr-primary: #7425d9;
  --vthu-clr-primary-dark: #2f016a;
  --vthu-clr-primary-light: #c1aeff;
  --vthu-clr-accent: #ffe8f9;
  --vthu-clr-gold: #fff8cb;
  --vthu-clr-bg: #f4f6fb;
  --vthu-clr-bg-card: #ffffff;
  --vthu-clr-text: #1a1230;
  --vthu-clr-text-muted: #5a5070;
  --vthu-clr-dark-band: #1e0843;
  --vthu-clr-dark-band-2: #120330;
  --vthu-clr-border: #d4c8f5;
  --vthu-clr-cta: #7425d9;
  --vthu-clr-cta-hover: #5c1cb5;
  --vthu-radius: 0px;
  --vthu-container: 1200px;
  --vthu-space-xs: 0.5rem;
  --vthu-space-sm: 1rem;
  --vthu-space-md: 2rem;
  --vthu-space-lg: 3.5rem;
  --vthu-space-xl: 5.5rem;
  --vthu-font-head: 'Cormorant Garamond', Georgia, serif;
  --vthu-font-body: 'Source Sans 3', Arial, sans-serif;
}

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

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

body {
  font-family: var(--vthu-font-body);
  background: var(--vthu-clr-bg);
  color: var(--vthu-clr-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--vthu-clr-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.container {
  max-width: var(--vthu-container);
  margin-inline: auto;
  padding-inline: var(--vthu-space-md);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

h1, h2, h3, h4, h5 {
  font-family: var(--vthu-font-head);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 600; }

p { margin-bottom: var(--vthu-space-sm); }
p:last-child { margin-bottom: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  border-radius: 999px;
  font-family: var(--vthu-font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75em 2em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  line-height: 1.3;
}

.btn-primary {
  background: var(--vthu-clr-cta);
  color: #fff;
  border-color: var(--vthu-clr-cta);
}
.btn-primary:hover {
  background: var(--vthu-clr-cta-hover);
  border-color: var(--vthu-clr-cta-hover);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--vthu-clr-primary);
  border-color: var(--vthu-clr-primary);
}
.btn-ghost:hover {
  background: var(--vthu-clr-primary);
  color: #fff;
  text-decoration: none;
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  text-decoration: none;
}

.section-light { background: var(--vthu-clr-bg); padding-block: var(--vthu-space-xl); }
.section-white { background: #fff; padding-block: var(--vthu-space-xl); }
.uone {
  background: var(--vthu-clr-dark-band);
  color: #e8deff;
  padding-block: var(--vthu-space-xl);
}
.uone h2, .uone h3 { color: #fff; }
.uone p, .uone li { color: #d4c8f5; }

.ugqu {
  background: var(--vthu-clr-dark-band-2);
  color: #e8deff;
  padding-block: var(--vthu-space-xl);
}
.ugqu h2, .ugqu h3 { color: #fff; }
.ugqu p { color: #c1aeff; }

.section-tinted { background: #eef0f8; padding-block: var(--vthu-space-xl); }

.divider-band {
  background: var(--vthu-clr-dark-band-2);
  height: 6px;
  width: 100%;
}

.section-label {
  display: inline-block;
  font-family: var(--vthu-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vthu-clr-primary);
  background: #ede6ff;
  padding: 0.3em 0.9em;
  margin-bottom: var(--vthu-space-sm);
}

.section-title-block {
  max-width: 720px;
  margin-bottom: var(--vthu-space-lg);
}
.section-title-block .section-label { display: block; margin-bottom: 0.6rem; }
.section-title-block h2 { margin-bottom: 0.6rem; }
.section-title-block p { color: var(--vthu-clr-text-muted); font-size: 1.05rem; }


/* ── SITE HEADER ── */
.ueor {
  background: #fff;
  border-bottom: 1px solid var(--vthu-clr-border);
  position: sticky;
  top: 0;
  z-index: 900;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--vthu-space-md);
}

.site-logo {
  font-family: var(--vthu-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vthu-clr-primary-dark);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-logo span { color: var(--vthu-clr-primary); }

.site-nav { display: flex; align-items: center; gap: var(--vthu-space-md); }
.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vthu-clr-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.site-nav a:hover { color: var(--vthu-clr-primary); text-decoration: none; }

.nav-cta { font-size: 0.85rem !important; padding: 0.5em 1.4em !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vthu-clr-text);
  transition: transform 0.2s;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: var(--vthu-space-md);
    border-bottom: 2px solid var(--vthu-clr-border);
    gap: var(--vthu-space-sm);
  }
  .site-nav.is-open { display: flex; }
}


/* ── HERO EDITORIAL ── */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--vthu-space-xl);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--vthu-clr-primary-dark) 0%, #3a0e8e 60%, #7425d9 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--vthu-space-xl);
  align-items: center;
}

.hero__content { color: #fff; }

.hero__chip {
  display: inline-block;
  font-family: var(--vthu-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vthu-clr-gold);
  border: 1px solid rgba(255,248,203,0.5);
  padding: 0.3em 0.9em;
  margin-bottom: var(--vthu-space-sm);
}

.hero__title {
  color: #fff;
  margin-bottom: 0.5rem;
}
.hero__title .hero-num {
  display: inline-block;
  font-size: 1.15em;
  color: var(--vthu-clr-primary-light);
  font-style: italic;
}

.hero__byline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--vthu-space-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.hero__byline strong { color: rgba(255,255,255,0.85); }
.hero__byline-sep { opacity: 0.4; }

.hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--vthu-space-md);
  max-width: 540px;
  line-height: 1.7;
}
.hero__lead::first-letter {
  float: left;
  font-family: var(--vthu-font-head);
  font-size: 3.8rem;
  line-height: 0.78;
  margin-right: 0.12em;
  margin-top: 0.08em;
  color: var(--vthu-clr-primary-light);
  font-weight: 700;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vthu-space-sm);
  margin-top: var(--vthu-space-md);
}

.hero__cover {
  position: relative;
}
.hero__cover-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.45));
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__cover { order: -1; max-width: 280px; margin-inline: auto; }
  .hero__lead::first-letter { font-size: 2.8rem; }
}


/* ── STAT BAND ── */
.stat-band {
  background: var(--vthu-clr-dark-band-2);
  padding-block: var(--vthu-space-lg);
}
.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vthu-space-md);
  text-align: center;
}
.stat-item__num {
  font-family: var(--vthu-font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-item__label {
  font-size: 0.85rem;
  color: var(--vthu-clr-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  display: block;
}
.stat-item__sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

@media (max-width: 640px) {
  .stat-band__grid { grid-template-columns: 1fr; gap: var(--vthu-space-md); }
}


/* ── FAQ ── */
.faq-list { max-width: 820px; margin-inline: auto; }

.ugis {
  border: 2px dashed var(--vthu-clr-border);
  margin-bottom: var(--vthu-space-sm);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem var(--vthu-space-md);
  text-align: left;
  font-family: var(--vthu-font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--vthu-clr-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.3;
}
.faq-btn:hover { color: var(--vthu-clr-primary); }

.faq-btn svg {
  flex-shrink: 0;
  transition: transform 0.25s;
  fill: var(--vthu-clr-primary);
}
.faq-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.uhji {
  display: none;
  padding: 0 var(--vthu-space-md) 1.1rem;
  font-size: 0.95rem;
  color: var(--vthu-clr-text-muted);
  line-height: 1.75;
}
.uhji p { margin-bottom: 0.5rem; }
.faq-btn[aria-expanded="true"] + .uhji { display: block; }


/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vthu-space-md);
}

.step-card {
  border: 2px dashed var(--vthu-clr-border);
  padding: var(--vthu-space-md);
  text-align: center;
  background: #fff;
}

.step-num {
  font-family: var(--vthu-font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--vthu-clr-primary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.step-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--vthu-space-sm);
}
.step-icon img { width: 100%; height: 100%; object-fit: contain; }
.step-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.step-card p { font-size: 0.9rem; color: var(--vthu-clr-text-muted); }

@media (max-width: 720px) {
  .steps-grid { grid-template-columns: 1fr; }
}


/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vthu-space-md);
}

.review-card {
  border: 2px dashed var(--vthu-clr-border);
  padding: var(--vthu-space-md);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: var(--vthu-space-sm);
}

.review-stars { color: #f5c518; font-size: 1.1rem; letter-spacing: 0.05em; }

.review-quote {
  font-family: var(--vthu-font-head);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--vthu-clr-text);
  position: relative;
  padding-left: 1.2rem;
  border-left: 3px solid var(--vthu-clr-primary-light);
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--vthu-space-sm);
}

.review-avatar {
  width: 52px;
  height: 52px;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author-info strong { display: block; font-size: 0.92rem; }
.review-author-info span { font-size: 0.8rem; color: var(--vthu-clr-text-muted); }

.review-disclaimer {
  font-size: 0.78rem;
  color: var(--vthu-clr-text-muted);
  font-style: italic;
  text-align: center;
  margin-top: var(--vthu-space-md);
  border-top: 1px solid var(--vthu-clr-border);
  padding-top: var(--vthu-space-sm);
}

.pull-quote {
  font-family: var(--vthu-font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--vthu-clr-primary-light);
  border-left: 4px solid var(--vthu-clr-primary-light);
  padding-left: var(--vthu-space-md);
  margin-block: var(--vthu-space-lg);
  max-width: 680px;
}

@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; }
}


/* ── ABOUT / E-E-A-T ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vthu-space-xl);
  align-items: start;
}

.about-meta {
  font-size: 0.8rem;
  color: var(--vthu-clr-text-muted);
  margin-bottom: var(--vthu-space-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-bio h3 { margin-bottom: var(--vthu-space-sm); }
.about-bio p { font-size: 0.95rem; color: var(--vthu-clr-text-muted); }
.about-initials {
  width: 72px;
  height: 72px;
  background: var(--vthu-clr-primary);
  color: #fff;
  font-family: var(--vthu-font-head);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--vthu-space-sm);
}
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}


/* ── INGREDIENTS / COMPOSITION ── */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vthu-space-md);
}

.ingredient-card {
  border: 2px dashed var(--vthu-clr-border);
  padding: var(--vthu-space-md);
  background: #fff;
  text-align: center;
}

.ingredient-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--vthu-space-sm);
}
.ingredient-icon svg { width: 100%; height: 100%; fill: var(--vthu-clr-primary); }

.ingredient-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.ingredient-card .efsa-claim {
  font-size: 0.82rem;
  color: var(--vthu-clr-text-muted);
  font-style: italic;
  margin-bottom: 0.4rem;
}
.ingredient-card .nrv {
  display: inline-block;
  font-size: 0.78rem;
  background: #ede6ff;
  color: var(--vthu-clr-primary);
  padding: 0.15em 0.6em;
  font-weight: 700;
}

.nutrition-table-wrap { overflow-x: auto; margin-top: var(--vthu-space-md); }
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.nutrition-table th {
  background: var(--vthu-clr-primary);
  color: #fff;
  padding: 0.7rem 1rem;
  text-align: left;
  font-family: var(--vthu-font-body);
  font-weight: 700;
}
.nutrition-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--vthu-clr-border);
  color: var(--vthu-clr-text);
}
.nutrition-table tr:nth-child(even) td { background: #f4f2fb; }

.ingredient-img-wrap { margin-top: var(--vthu-space-lg); }
.ingredient-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

@media (max-width: 720px) {
  .ingredients-grid { grid-template-columns: 1fr; }
}


/* ── ORDER SECTION ── */
.order-section { background: var(--vthu-clr-bg); padding-block: var(--vthu-space-xl); }

.order-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--vthu-space-xl);
  align-items: start;
}

.order-pack-img img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin-inline: auto;
}

.order-details h2 { margin-bottom: var(--vthu-space-sm); }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: var(--vthu-space-sm);
}
.price-main {
  font-family: var(--vthu-font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--vthu-clr-primary);
}
.price-sub { font-size: 0.85rem; color: var(--vthu-clr-text-muted); }

.variant-selector {
  display: flex;
  gap: var(--vthu-space-sm);
  margin-bottom: var(--vthu-space-md);
  flex-wrap: wrap;
}
.variant-btn {
  border: 2px dashed var(--vthu-clr-border);
  background: #fff;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  font-family: var(--vthu-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vthu-clr-text);
  transition: border-color 0.2s, background 0.2s;
}
.variant-btn.is-active, .variant-btn:hover {
  border-color: var(--vthu-clr-primary);
  background: #ede6ff;
  color: var(--vthu-clr-primary);
}

.uypv { display: flex; flex-direction: column; gap: var(--vthu-space-sm); }

.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--vthu-clr-text); }
.form-group input[type="text"],
.form-group input[type="tel"] {
  border: 2px solid var(--vthu-clr-border);
  padding: 0.7rem 1rem;
  font-family: var(--vthu-font-body);
  font-size: 1rem;
  color: var(--vthu-clr-text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--vthu-clr-primary); }

.honeypot-field { display: none !important; }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--vthu-clr-text-muted);
}
.consent-row input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; }
.consent-row a { color: var(--vthu-clr-primary); }

.order-trust {
  margin-top: var(--vthu-space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--vthu-space-sm);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--vthu-clr-text-muted);
}
.trust-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .order-grid { grid-template-columns: 1fr; }
  .order-pack-img { order: -1; }
}


/* ── CAROUSEL (.ubga) ── */
.ubga { overflow: hidden; position: relative; }
.lf-carousel__track {
  display: flex;
  gap: var(--vthu-space-md);
  transition: transform 0.4s ease;
}
.lf-carousel__slide {
  min-width: calc((100% - var(--vthu-space-md) * 2) / 3);
  flex-shrink: 0;
}
.lf-carousel__controls {
  display: flex;
  justify-content: center;
  gap: var(--vthu-space-sm);
  margin-top: var(--vthu-space-md);
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--vthu-clr-primary);
  background: transparent;
  color: var(--vthu-clr-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.carousel-btn:hover { background: var(--vthu-clr-primary); color: #fff; }

@media (max-width: 720px) {
  .lf-carousel__slide { min-width: 100%; }
}


/* ── QUIZ (.uqry) ── */
.uqry {
  background: #fff;
  border: 2px dashed var(--vthu-clr-border);
  padding: var(--vthu-space-md);
  max-width: 700px;
  margin-inline: auto;
}
.quiz-progress {
  height: 4px;
  background: var(--vthu-clr-border);
  margin-bottom: var(--vthu-space-md);
}
.quiz-progress__bar {
  height: 100%;
  background: var(--vthu-clr-primary);
  width: 0%;
  transition: width 0.35s;
}
.quiz-step { display: none; }
.quiz-step.is-active { display: block; }
.quiz-step h3 { margin-bottom: var(--vthu-space-sm); }
.quiz-options { display: flex; flex-direction: column; gap: 0.5rem; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 2px dashed var(--vthu-clr-border);
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  text-align: left;
  font-family: var(--vthu-font-body);
}
.quiz-option:hover, .quiz-option.is-selected {
  border-color: var(--vthu-clr-primary);
  background: #ede6ff;
}
.quiz-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--vthu-space-sm);
}
.quiz-result { display: none; }
.quiz-result.is-active { display: block; }
.quiz-result h3 { color: var(--vthu-clr-primary); margin-bottom: var(--vthu-space-sm); }


/* ── FOOTER ── */
.site-footer {
  background: var(--vthu-clr-dark-band-2);
  color: #b8a8e0;
  padding-top: var(--vthu-space-xl);
  padding-bottom: var(--vthu-space-lg);
  font-size: 0.82rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--vthu-space-xl);
  margin-bottom: var(--vthu-space-lg);
}

.footer-brand .site-logo { color: #fff; font-size: 1.2rem; margin-bottom: 0.6rem; }
.footer-brand p { color: #9080c0; font-size: 0.8rem; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--vthu-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.8rem;
}
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a { color: #9080c0; font-size: 0.82rem; }
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--vthu-space-sm);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--vthu-space-sm);
  align-items: center;
}
.footer-bottom p { color: #6a5a9a; font-size: 0.75rem; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--vthu-space-sm);
  margin-top: var(--vthu-space-sm);
  color: #6a5a9a;
  font-size: 0.74rem;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--vthu-space-md); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ── COOKIE BANNER ── */
.ubop {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vthu-clr-dark-band-2);
  color: #d4c8f5;
  z-index: 9999;
  padding: var(--vthu-space-md);
  display: none;
  border-top: 2px solid var(--vthu-clr-primary);
}
.ubop.is-visible { display: block; }
.cookie-banner__inner {
  max-width: var(--vthu-container);
  margin-inline: auto;
}
.ubop h3 {
  font-family: var(--vthu-font-head);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.ubop p { font-size: 0.82rem; margin-bottom: var(--vthu-space-sm); color: #b8a8e0; }
.ubop a { color: var(--vthu-clr-primary-light); }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.cookie-banner__settings {
  background: none;
  border: none;
  color: var(--vthu-clr-primary-light);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.cookie-settings-panel {
  margin-top: var(--vthu-space-sm);
  display: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--vthu-space-sm);
}
.cookie-settings-panel.is-open { display: block; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
}
.cookie-toggle-row label { color: #b8a8e0; }
.cookie-toggle-row input[type="checkbox"] { accent-color: var(--vthu-clr-primary); }


/* ── MISC UTILS ── */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--vthu-space-sm); }
.mt-md { margin-top: var(--vthu-space-md); }
.mt-lg { margin-top: var(--vthu-space-lg); }
.mb-sm { margin-bottom: var(--vthu-space-sm); }
.mb-md { margin-bottom: var(--vthu-space-md); }

.tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  background: #ede6ff;
  color: var(--vthu-clr-primary);
  padding: 0.2em 0.7em;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  :root { --vthu-space-xl: 3.5rem; --vthu-space-lg: 2.5rem; }
  .hero__lead::first-letter { font-size: 2rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ubop{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}
.ubop.is-visible,.cookie-banner--visible,.ubop.show,.ubop.active{transform:none !important}
.ubop a{color:inherit;text-decoration:underline}
.ubop button{cursor:pointer}
.urjn{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}
.urjn.is-visible,.cookie-modal--visible,.urjn.show,.urjn.active{display:flex !important}
.ujfw,.urjn>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.reveal.is-visible,.reveal.is-in,.reveal.in-view,.reveal.visible,.reveal.show,.reveal.active{opacity:1 !important;transform:none !important}
.uone .uqry,.uone .uuql,.uone .ugzx,.uone .ubga,.ugqu .uqry,.ugqu .uuql,.ugqu .ugzx,.ugqu .ubga{background:#fff !important;color:#1a1a1a !important}
.uqry,.uuql{color:#1a1a1a !important}
.uqry label,.uuql label,.uqry p,.uuql p,.uqry .uusv,.uqry span,.uuql span,.uyxn,.umeq,.ugzx .ujgn,.ugzx .ujgn *{color:#1a1a1a !important}
.uyxn,.umeq{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uqry .uynq{color:#1a1a1a !important}
.uqry .uynq.is-sel{color:#fff !important}
.uypv .urfr{display:none}
.uypv .urfr.is-visible{display:block !important;color:#c0392b}
.uypv .uzca,.uypv [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uypv{color:#1a1a1a}
.uone .uypv,.ugqu .uypv{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uacr{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uacr img{width:100%;height:100%;object-fit:cover}
.ugxz,.uisi{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ugxz img,.uisi img{width:100%;height:100%;object-fit:cover;display:block}
.ugxz img{opacity:.28}
.uisi img{opacity:.07}
*:has(> .ugxz),*:has(> .uisi){position:relative}
.utii{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)}
.utii .ufge{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.utii .ufmm{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uxbj{margin:1.4rem auto;max-width:920px}
.uxbj img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uklu{padding:3rem 0}
.uaee{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uaee img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ubga{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uhwn{display:flex;overflow:hidden;gap:0 !important}
.uydr{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ueyn{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}
.uxhu{left:.5rem}.udkw{right:.5rem}
.ugzx .ujgn{display:none}.ugzx .ujgn.is-active{display:block}
.uqry .uxeh{display:block !important}
.uqry .urzf{display:flex;flex-wrap:wrap;gap:.5rem}
.uqry .uynq{cursor:pointer}
