:root {
  --vsvr-clr-bg: #0f0720;
  --vsvr-clr-bg-alt: #160c2e;
  --vsvr-clr-surface: #1c1138;
  --vsvr-clr-surface-2: #231545;
  --vsvr-clr-accent: #b94fff;
  --vsvr-clr-accent-2: #e040c8;
  --vsvr-clr-accent-soft: #d8a6ff;
  --vsvr-clr-gold: #f5d87a;
  --vsvr-clr-text: #ede8ff;
  --vsvr-clr-text-muted: #a897cc;
  --vsvr-clr-text-dark: #0f0720;
  --vsvr-clr-border: #3a2560;
  --vsvr-clr-light-bg: #f7f4ff;
  --vsvr-clr-light-surface: #ffffff;
  --vsvr-clr-light-text: #1a0a2e;
  --vsvr-clr-light-muted: #5a4878;
  --vsvr-radius: 0px;
  --vsvr-shadow-hard: 6px 6px 0px #3a2560;
  --vsvr-shadow-hard-accent: 6px 6px 0px #b94fff;
  --vsvr-container: 960px;
  --vsvr-space-xs: 0.5rem;
  --vsvr-space-s: 1rem;
  --vsvr-space-m: 2rem;
  --vsvr-space-l: 3.5rem;
  --vsvr-space-xl: 5rem;
  font-size: 16px;
}

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

body {
  font-family: 'Libre Franklin', sans-serif;
  background: var(--vsvr-clr-bg);
  color: var(--vsvr-clr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container-narrow {
  max-width: var(--vsvr-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vsvr-clr-accent-soft); text-decoration: none; }
a:hover { text-decoration: underline; }

h1,h2,h3,h4 { font-family: 'Libre Franklin', sans-serif; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.15rem; font-weight: 700; }

.h1-outline {
  -webkit-text-stroke: 2px var(--vsvr-clr-accent);
  color: transparent;
  display: inline;
}

.ugyc, .page-hero-slim {
  background: var(--vsvr-clr-bg-alt);
  color: var(--vsvr-clr-text);
}
.section-light {
  background: var(--vsvr-clr-light-bg);
  color: var(--vsvr-clr-light-text);
}
.section-light h2, .section-light h3, .section-light h4 { color: var(--vsvr-clr-light-text); }
.section-light p, .section-light li { color: var(--vsvr-clr-light-muted); }
.section-light a { color: #7c3aed; }
.upkv { background: #1a0a2e; }

section { padding: var(--vsvr-space-l) 0; }

.section-header { text-align: center; margin-bottom: var(--vsvr-space-m); }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header.light h2 { color: var(--vsvr-clr-text); }
.section-header.light .section-intro { color: var(--vsvr-clr-text-muted); }
.section-intro { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.thin-band-dark {
  height: 6px;
  background: linear-gradient(90deg, var(--vsvr-clr-accent) 0%, var(--vsvr-clr-accent-2) 100%);
}

.ubrx {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 7, 32, 0.97);
  border-bottom: 1px solid var(--vsvr-clr-border);
  backdrop-filter: blur(8px);
}
.ubrx .container-narrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.site-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--vsvr-clr-text);
  letter-spacing: -0.03em;
}
.site-logo:hover { text-decoration: none; color: var(--vsvr-clr-accent-soft); }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { color: var(--vsvr-clr-text-muted); font-size: 0.9rem; font-weight: 500; }
.site-nav a:hover, .site-nav a[aria-current] { color: var(--vsvr-clr-text); text-decoration: none; }
.nav-cta {
  background: var(--vsvr-clr-accent);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  border-radius: var(--vsvr-radius);
}
.nav-cta:hover { background: var(--vsvr-clr-accent-2); text-decoration: none !important; }

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

.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb ol { display: flex; gap: 0.5rem; list-style: none; font-size: 0.85rem; flex-wrap: wrap; }
.breadcrumb ol li { color: var(--vsvr-clr-text-muted); }
.breadcrumb ol li + li::before { content: '/'; margin-right: 0.5rem; }
.breadcrumb ol li a { color: var(--vsvr-clr-accent-soft); }
.breadcrumb.light ol li { color: rgba(255,255,255,0.5); }
.breadcrumb.light ol li a { color: var(--vsvr-clr-accent-soft); }

.hero-section { position: relative; min-height: 520px; display: flex; align-items: center; padding: 0; overflow: hidden; }
.hero-bg-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-content-wrap { position: relative; z-index: 1; padding-top: 4rem; padding-bottom: 4rem; }
.hero-card {
  background: rgba(22, 12, 46, 0.92);
  border: 1px solid var(--vsvr-clr-border);
  padding: 2.5rem;
  max-width: 560px;
  box-shadow: var(--vsvr-shadow-hard);
}
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vsvr-clr-accent-soft); margin-bottom: 0.75rem; }
.hero-h1 { color: var(--vsvr-clr-text); margin-bottom: 1rem; }
.hero-sub { color: var(--vsvr-clr-text-muted); font-size: 1rem; margin-bottom: 1.25rem; }
.hero-rating-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.rating-text { font-size: 0.85rem; color: var(--vsvr-clr-text-muted); }
.hero-note { font-size: 0.8rem; color: var(--vsvr-clr-text-muted); margin-top: 0.75rem; }

.btn-primary {
  display: inline-block;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: var(--vsvr-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}
.btn-dark-single {
  background: var(--vsvr-clr-accent);
  color: #fff;
  box-shadow: var(--vsvr-shadow-hard);
}
.btn-dark-single:hover { background: var(--vsvr-clr-accent-2); color: #fff; text-decoration: none; transform: translate(-2px,-2px); box-shadow: 8px 8px 0px #3a2560; }
.btn-full { width: 100%; text-align: center; display: block; }
.btn-secondary-outline {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.8rem;
  border: 2px solid var(--vsvr-clr-accent);
  color: var(--vsvr-clr-accent-soft);
  border-radius: var(--vsvr-radius);
  cursor: pointer;
  text-decoration: none;
  margin-top: var(--vsvr-space-m);
}
.btn-secondary-outline:hover { background: var(--vsvr-clr-accent); color: #fff; text-decoration: none; }

.lifestyle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.lifestyle-card {
  background: var(--vsvr-clr-light-surface);
  padding: 1.75rem;
  border: 1px solid #e0d8f8;
  box-shadow: var(--vsvr-shadow-hard);
}
.lifestyle-icon { color: #7c3aed; margin-bottom: 1rem; }
.lifestyle-card h3 { color: var(--vsvr-clr-light-text); margin-bottom: 0.5rem; }
.lifestyle-image-wrap { margin-top: 2rem; border: 1px solid #e0d8f8; box-shadow: var(--vsvr-shadow-hard); overflow: hidden; }
.lifestyle-image-wrap img { width: 100%; height: auto; }

.ingredients-bento { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; margin-bottom: 2rem; }
.bento-main { grid-column: 1; grid-row: 1; background: var(--vsvr-clr-surface); border: 1px solid var(--vsvr-clr-border); overflow: hidden; box-shadow: var(--vsvr-shadow-hard); }
.bento-main img { width: 100%; height: 220px; object-fit: cover; }
.bento-main-text { padding: 1.25rem; }
.bento-grid-right { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; gap: 1rem; }
.bento-item { background: var(--vsvr-clr-surface); border: 1px solid var(--vsvr-clr-border); padding: 1.25rem; box-shadow: var(--vsvr-shadow-hard); }
.bento-botanicals { grid-column: 1 / -1; grid-row: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--vsvr-clr-surface); border: 1px solid var(--vsvr-clr-border); overflow: hidden; box-shadow: var(--vsvr-shadow-hard); }
.bento-botanicals img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.bento-botanicals-text { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.bento-botanical-item {}
.ingredient-tag { display: inline-block; background: var(--vsvr-clr-accent); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.6rem; margin-bottom: 0.5rem; }
.ingredient-disclaimer { font-size: 0.82rem; color: var(--vsvr-clr-text-muted); margin-top: 1rem; }

.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.ujxj { background: var(--vsvr-clr-light-surface); border: 1px solid #e0d8f8; box-shadow: var(--vsvr-shadow-hard); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.2rem 1.5rem; font-family: 'Libre Franklin', sans-serif; font-size: 1rem; font-weight: 700; color: var(--vsvr-clr-light-text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: #7c3aed; flex-shrink: 0; }
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 1.5rem 1.25rem; color: var(--vsvr-clr-light-muted); font-size: 0.95rem; }

.stat-band { padding: var(--vsvr-space-l) 0; }
.stat-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; margin-bottom: 2.5rem; }
.stat-number { display: block; font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; color: var(--vsvr-clr-accent-soft); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.85rem; color: var(--vsvr-clr-text-muted); line-height: 1.4; }
.stat-band-image { border: 1px solid var(--vsvr-clr-border); box-shadow: var(--vsvr-shadow-hard-accent); overflow: hidden; }
.stat-band-image img { width: 100%; height: auto; max-height: 400px; object-fit: cover; }

.how-flow-img { max-width: 480px; margin: 0 auto 2.5rem; border: 1px solid #e0d8f8; box-shadow: var(--vsvr-shadow-hard); }
.how-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.how-step { display: grid; grid-template-columns: 4rem 1fr; gap: 1.5rem; background: var(--vsvr-clr-light-surface); border: 1px solid #e0d8f8; padding: 1.5rem; align-items: start; box-shadow: var(--vsvr-shadow-hard); }
.step-num { font-size: 2rem; font-weight: 800; color: #d0b0ff; line-height: 1; }
.step-body h3 { color: var(--vsvr-clr-light-text); margin-bottom: 0.4rem; }
.step-body p { color: var(--vsvr-clr-light-muted); font-size: 0.95rem; }

.section-order { padding: var(--vsvr-space-l) 0; }
.order-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.order-pack-col {}
.product-pack { border: 1px solid var(--vsvr-clr-border); box-shadow: var(--vsvr-shadow-hard-accent); overflow: hidden; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: var(--vsvr-clr-surface); }
.product-pack img { width: 100%; height: 100%; object-fit: contain; }
.pack-features { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pack-features li { font-size: 0.9rem; color: var(--vsvr-clr-text-muted); padding-left: 1.2rem; position: relative; }
.pack-features li::before { content: '✓'; position: absolute; left: 0; color: var(--vsvr-clr-accent-soft); }

.order-form-card { background: var(--vsvr-clr-surface); border: 1px solid var(--vsvr-clr-border); padding: 2rem; box-shadow: var(--vsvr-shadow-hard-accent); }
.order-form-card h2 { color: var(--vsvr-clr-text); margin-bottom: 1rem; }
.price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.5rem; }
.price-old { text-decoration: line-through; color: var(--vsvr-clr-text-muted); font-size: 1rem; }
.price-current { font-size: 1.75rem; font-weight: 800; color: var(--vsvr-clr-accent-soft); }
.price-save { background: var(--vsvr-clr-accent-2); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.15rem 0.5rem; }
.price-note { font-size: 0.82rem; color: var(--vsvr-clr-text-muted); margin-bottom: 1.25rem; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--vsvr-clr-text-muted); margin-bottom: 0.35rem; }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  background: var(--vsvr-clr-bg);
  border: 1px solid var(--vsvr-clr-border);
  color: var(--vsvr-clr-text);
  padding: 0.65rem 0.9rem;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.95rem;
  border-radius: var(--vsvr-radius);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--vsvr-clr-accent); }
.form-group.field-error input, .form-group.field-error textarea { border-color: #e04040; }
.consent-label { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: var(--vsvr-clr-text-muted); cursor: pointer; }
.consent-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--vsvr-clr-accent); }
.form-security { font-size: 0.78rem; color: var(--vsvr-clr-text-muted); margin-top: 0.75rem; }
.refund-note { font-size: 0.78rem; color: var(--vsvr-clr-text-muted); margin-top: 0.5rem; }
.refund-note a { color: var(--vsvr-clr-accent-soft); }

.section-reviews { padding: var(--vsvr-space-l) 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.review-card { background: var(--vsvr-clr-light-surface); border: 1px solid #e0d8f8; padding: 1.5rem; box-shadow: var(--vsvr-shadow-hard); display: flex; flex-direction: column; gap: 0.75rem; }
.review-card blockquote { font-size: 0.92rem; color: var(--vsvr-clr-light-muted); font-style: italic; }
.review-card cite { font-size: 0.82rem; font-weight: 700; color: var(--vsvr-clr-light-text); font-style: normal; }
.review-disclosure { font-size: 0.75rem; color: #9f8dbf; }
.review-disclaimer { font-size: 0.82rem; color: var(--vsvr-clr-light-muted); margin-top: 0.5rem; }
.reviews-disclaimer-top { background: #f0ebff; border-left: 3px solid #7c3aed; padding: 0.75rem 1rem; margin-bottom: 2rem; font-size: 0.85rem; color: var(--vsvr-clr-light-muted); }

.section-cta { padding: var(--vsvr-space-m) 0; }
.cta-wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-text h2 { color: var(--vsvr-clr-text); margin-bottom: 0.5rem; }
.cta-text p { color: var(--vsvr-clr-text-muted); font-size: 0.95rem; }
.cta-inline { margin-top: 2.5rem; text-align: center; }
.cta-inline p { margin-top: 0.75rem; font-size: 0.85rem; color: var(--vsvr-clr-light-muted); }

.page-hero-slim { padding: 3.5rem 0 2.5rem; }
.page-hero-slim h1 { color: var(--vsvr-clr-text); margin-bottom: 0.75rem; }
.page-intro { color: var(--vsvr-clr-text-muted); font-size: 1.05rem; max-width: 640px; }
.page-rating-row { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; color: var(--vsvr-clr-text-muted); font-size: 0.9rem; }

.legal-page { padding: var(--vsvr-space-l) 0; }
.legal-body { max-width: 720px; }
.legal-body h2 { color: var(--vsvr-clr-light-text); margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.2rem; }
.legal-body h3 { color: var(--vsvr-clr-light-text); margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1rem; }
.legal-body p, .legal-body li { color: var(--vsvr-clr-light-muted); font-size: 0.92rem; line-height: 1.75; margin-bottom: 0.5rem; }
.legal-body ul { padding-left: 1.5rem; }
.legal-body a { color: #7c3aed; }

.cookie-table, .nutrients-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.85rem; }
.cookie-table th, .nutrients-table th { background: #ede8ff; color: var(--vsvr-clr-light-text); padding: 0.6rem 0.8rem; text-align: left; border: 1px solid #d0c8f0; }
.cookie-table td, .nutrients-table td { padding: 0.6rem 0.8rem; border: 1px solid #e0d8f8; color: var(--vsvr-clr-light-muted); vertical-align: top; }
.nutrients-disclaimer { font-size: 0.8rem; color: var(--vsvr-clr-light-muted); margin-top: 0.75rem; }

.uyps { background: var(--vsvr-clr-light-surface); border: 1px solid #e0d8f8; padding: 1.75rem; margin-top: 2.5rem; }
.uyps h3 { color: var(--vsvr-clr-light-text); margin-bottom: 0.5rem; }
.uyps p { color: var(--vsvr-clr-light-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.calc-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.calc-row label { font-size: 0.9rem; font-weight: 600; color: var(--vsvr-clr-light-text); }
.calc-input { width: 80px; padding: 0.5rem 0.7rem; border: 1px solid #d0c8f0; font-family: 'Libre Franklin', sans-serif; font-size: 0.95rem; color: var(--vsvr-clr-light-text); border-radius: var(--vsvr-radius); }
.calc-btn { padding: 0.5rem 1.2rem; }
.calc-result { margin-top: 1rem; font-weight: 700; color: #7c3aed; font-size: 0.95rem; }
.calc-note { font-size: 0.78rem; color: var(--vsvr-clr-light-muted); margin-top: 0.5rem; }

.ubpy { background: var(--vsvr-clr-light-surface); border: 1px solid #e0d8f8; padding: 1.75rem; margin: 2.5rem 0; }
.ubpy h3 { color: var(--vsvr-clr-light-text); margin-bottom: 0.5rem; }
.ubpy > p { color: var(--vsvr-clr-light-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-q { font-weight: 700; color: var(--vsvr-clr-light-text); margin-bottom: 0.75rem; }
.quiz-options { display: flex; flex-direction: column; gap: 0.6rem; }
.quiz-opt { text-align: left; background: none; border: 1px solid #d0c8f0; padding: 0.65rem 1rem; font-family: 'Libre Franklin', sans-serif; font-size: 0.9rem; color: var(--vsvr-clr-light-text); cursor: pointer; border-radius: var(--vsvr-radius); transition: background 0.15s, border-color 0.15s; }
.quiz-opt:hover { background: #ede8ff; border-color: #7c3aed; }
.quiz-result { display: none; background: #ede8ff; border: 1px solid #b794f4; padding: 1.25rem; margin-top: 1rem; box-shadow: var(--vsvr-shadow-hard); }
.quiz-result-text { color: var(--vsvr-clr-light-text); font-size: 0.92rem; }
.quiz-disclaimer { font-size: 0.78rem; color: var(--vsvr-clr-light-muted); margin-top: 0.5rem; }

.ingredients-detail { padding: var(--vsvr-space-l) 0; }
.ingredient-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; margin-bottom: 3rem; }
.ingredient-feature.reverse { direction: rtl; }
.ingredient-feature.reverse > * { direction: ltr; }
.ingredient-img-col img { width: 100%; border: 1px solid #e0d8f8; box-shadow: var(--vsvr-shadow-hard); }
.ingredient-text-col h2 { color: var(--vsvr-clr-light-text); margin-bottom: 0.35rem; }
.ingredient-origin { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #7c3aed; margin-bottom: 0.75rem; }
.ingredient-text-col p { color: var(--vsvr-clr-light-muted); font-size: 0.92rem; margin-bottom: 0.75rem; }
.efsa-claim-note { background: #f0ebff; border-left: 3px solid #b794f4; padding: 0.6rem 0.9rem; font-size: 0.82rem !important; }
.nutrients-table-wrap { margin: 2.5rem 0; }
.nutrients-table-wrap h2 { color: var(--vsvr-clr-light-text); margin-bottom: 0.75rem; }
.nutrients-table-wrap > p { color: var(--vsvr-clr-light-muted); font-size: 0.9rem; margin-bottom: 1rem; }

.article-wrap { max-width: 720px; }
.article-lead-img { width: 100%; margin-bottom: 2rem; border: 1px solid #e0d8f8; box-shadow: var(--vsvr-shadow-hard); }
.article-body h2 { color: var(--vsvr-clr-light-text); margin-top: 2.5rem; margin-bottom: 0.75rem; }
.article-body h3 { color: var(--vsvr-clr-light-text); margin-top: 1.75rem; margin-bottom: 0.5rem; font-size: 1.05rem; }
.article-body p { color: var(--vsvr-clr-light-muted); font-size: 0.95rem; margin-bottom: 0.9rem; }
.article-cta { margin-top: 3rem; background: #ede8ff; border: 1px solid #b794f4; padding: 2rem; text-align: center; box-shadow: var(--vsvr-shadow-hard); }
.article-cta h3 { color: var(--vsvr-clr-light-text); margin-bottom: 0.5rem; }
.article-cta p { color: var(--vsvr-clr-light-muted); margin-bottom: 1.25rem; font-size: 0.9rem; }

.lifestyle-article { padding: var(--vsvr-space-l) 0; }

.reviews-page { padding: var(--vsvr-space-l) 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; align-items: start; }
.contact-info { background: var(--vsvr-clr-light-surface); border: 1px solid #e0d8f8; padding: 2rem; box-shadow: var(--vsvr-shadow-hard); }
.contact-info h2 { color: var(--vsvr-clr-light-text); margin-bottom: 1rem; }
.contact-info h3 { color: var(--vsvr-clr-light-text); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.contact-info p { color: var(--vsvr-clr-light-muted); font-size: 0.92rem; margin-bottom: 0.6rem; }
.ujph { background: var(--vsvr-clr-light-surface); border: 1px solid #e0d8f8; padding: 2rem; box-shadow: var(--vsvr-shadow-hard); }
.ujph h2 { color: var(--vsvr-clr-light-text); margin-bottom: 1.25rem; }
.ujph .form-group label { color: var(--vsvr-clr-light-muted); }
.ujph .form-group input, .ujph .form-group textarea { background: #faf8ff; border: 1px solid #d0c8f0; color: var(--vsvr-clr-light-text); }
.ujph .form-group input:focus, .ujph .form-group textarea:focus { border-color: #7c3aed; }
.ujph .consent-label { color: var(--vsvr-clr-light-muted); }
.map-container { margin-top: 2.5rem; border: 1px solid #e0d8f8; box-shadow: var(--vsvr-shadow-hard); overflow: hidden; }

.thankyou-section { min-height: 70vh; display: flex; align-items: center; }
.thankyou-inner { text-align: center; }
.thankyou-card { background: var(--vsvr-clr-surface); border: 1px solid var(--vsvr-clr-border); padding: 3rem 2.5rem; max-width: 520px; margin: 0 auto; box-shadow: var(--vsvr-shadow-hard-accent); }
.thankyou-icon { color: var(--vsvr-clr-accent-soft); margin-bottom: 1.25rem; display: flex; justify-content: center; }
.thankyou-card h1 { color: var(--vsvr-clr-text); margin-bottom: 1rem; font-size: 1.8rem; }
.thankyou-card p { color: var(--vsvr-clr-text-muted); font-size: 0.95rem; margin-bottom: 0.75rem; }
.thankyou-card a.btn-primary { margin-top: 1.5rem; }

.error-section { min-height: 70vh; display: flex; align-items: center; }
.error-inner { text-align: center; }
.error-inner h1 { font-size: clamp(4rem, 15vw, 8rem); }
.error-msg { color: var(--vsvr-clr-text-muted); font-size: 1.1rem; margin: 1rem 0 2rem; }

.site-footer { background: var(--vsvr-clr-bg-alt); border-top: 1px solid var(--vsvr-clr-border); padding-top: var(--vsvr-space-l); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; padding-bottom: var(--vsvr-space-m); }
.footer-logo { font-weight: 800; font-size: 1.1rem; color: var(--vsvr-clr-text); display: block; margin-bottom: 0.5rem; }
.footer-tagline { color: var(--vsvr-clr-text-muted); font-size: 0.85rem; margin-bottom: 0.5rem; }
.footer-abn { font-size: 0.8rem; color: var(--vsvr-clr-text-muted); margin-bottom: 0.25rem; }
.footer-contact { font-size: 0.82rem; color: var(--vsvr-clr-text-muted); }
.footer-contact a { color: var(--vsvr-clr-accent-soft); }
.footer-nav { display: flex; gap: 3rem; }
.footer-nav-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vsvr-clr-text-muted); margin-bottom: 0.25rem; }
.footer-nav-col a { font-size: 0.85rem; color: var(--vsvr-clr-text-muted); }
.footer-nav-col a:hover { color: var(--vsvr-clr-text); text-decoration: none; }
.footer-disclaimer { border-top: 1px solid var(--vsvr-clr-border); padding: 1.5rem 0; margin-top: 0; }
.footer-disclaimer p { font-size: 0.78rem; color: var(--vsvr-clr-text-muted); margin-bottom: 0.35rem; }

.uafv { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; background: rgba(22, 12, 46, 0.98); border-top: 1px solid var(--vsvr-clr-border); padding: 1.25rem 1.5rem; display: none; backdrop-filter: blur(8px); }
.uafv.is-visible { display: block; }
.cookie-inner { max-width: var(--vsvr-container); margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-inner p { font-size: 0.85rem; color: var(--vsvr-clr-text-muted); flex: 1; min-width: 200px; }
.cookie-inner p a { color: var(--vsvr-clr-accent-soft); }
.urcs { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.btn-cookie-accept { background: var(--vsvr-clr-accent); color: #fff; border: none; padding: 0.5rem 1.2rem; font-family: 'Libre Franklin', sans-serif; font-weight: 700; font-size: 0.85rem; cursor: pointer; border-radius: var(--vsvr-radius); }
.btn-cookie-accept:hover { background: var(--vsvr-clr-accent-2); }
.btn-cookie-reject { background: none; border: 1px solid var(--vsvr-clr-border); color: var(--vsvr-clr-text-muted); padding: 0.5rem 1.2rem; font-family: 'Libre Franklin', sans-serif; font-size: 0.85rem; cursor: pointer; border-radius: var(--vsvr-radius); }
.btn-cookie-reject:hover { border-color: var(--vsvr-clr-accent); color: var(--vsvr-clr-text); }
.cookie-settings-link { font-size: 0.82rem; color: var(--vsvr-clr-text-muted); }

@media (max-width: 768px) {
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--vsvr-clr-bg); padding: 1rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; border-bottom: 1px solid var(--vsvr-clr-border); }
  .site-nav.is-open { display: flex; }
  .ufan { display: flex; }
  .hero-card { max-width: 100%; }
  .ingredients-bento { grid-template-columns: 1fr; }
  .bento-main { grid-column: 1; }
  .bento-grid-right { grid-column: 1; }
  .bento-botanicals { grid-column: 1; grid-template-columns: 1fr; }
  .stat-band-grid { grid-template-columns: repeat(2, 1fr); }
  .order-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .ingredient-feature { grid-template-columns: 1fr; }
  .ingredient-feature.reverse { direction: ltr; }
  .how-step { grid-template-columns: 3rem 1fr; }
  .cta-wrap { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stat-band-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .lifestyle-grid { grid-template-columns: 1fr; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uafv{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}
.uafv.is-visible,.cookie-banner--visible,.uafv.show,.uafv.active{transform:none !important}
.uafv a{color:inherit;text-decoration:underline}
.uafv button{cursor:pointer}
.uyho{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}
.uyho.is-visible,.cookie-modal--visible,.uyho.show,.uyho.active{display:flex !important}
.uolt,.uyho>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.ugyc .ubpy,.ugyc .uyps,.ugyc .uwtf,.ugyc .uozn,.upkv .ubpy,.upkv .uyps,.upkv .uwtf,.upkv .uozn{background:#fff !important;color:#1a1a1a !important}
.ubpy,.uyps{color:#1a1a1a !important}
.ubpy label,.uyps label,.ubpy p,.uyps p,.ubpy .uatc,.ubpy span,.uyps span,.urgf,.uafc,.uwtf .ukcw,.uwtf .ukcw *{color:#1a1a1a !important}
.urgf,.uafc{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ubpy .uhgq{color:#1a1a1a !important}
.ubpy .uhgq.is-sel{color:#fff !important}
.uxjd .ucwk{display:none}
.uxjd .ucwk.is-visible{display:block !important;color:#c0392b}
.uxjd .uhyr,.uxjd [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uxjd{color:#1a1a1a}
.ugyc .uxjd,.upkv .uxjd{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uhdq{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uhdq img{width:100%;height:100%;object-fit:cover}
.ujua,.ugpf{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ujua img,.ugpf img{width:100%;height:100%;object-fit:cover;display:block}
.ujua img{opacity:.28}
.ugpf img{opacity:.07}
*:has(> .ujua),*:has(> .ugpf){position:relative}
.uuun{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)}
.uuun .uymg{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uuun .uwhq{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uyum{margin:1.4rem auto;max-width:920px}
.uyum img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uuyn{padding:3rem 0}
.uhmu{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uhmu img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uozn{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ukjo{display:flex;overflow:hidden;gap:0 !important}
.uqgg{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uqzf{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}
.umxk{left:.5rem}.uzld{right:.5rem}
.uwtf .ukcw{display:none}.uwtf .ukcw.is-active{display:block}
.ubpy .uubf{display:block !important}
.ubpy .ufmx{display:flex;flex-wrap:wrap;gap:.5rem}
.ubpy .uhgq{cursor:pointer}
