:root {
  --vzxv-clr-navy: #1a4d7a;
  --vzxv-clr-accent: #c43e8a;
  --vzxv-clr-gold: #c9b86c;
  --vzxv-clr-black: #0d0d0d;
  --vzxv-clr-white: #ffffff;
  --vzxv-clr-bg: #f5f3f7;
  --vzxv-clr-bg-tint: #ede9f2;
  --vzxv-clr-text: #1c1c2e;
  --vzxv-clr-text-muted: #5a5a72;
  --vzxv-clr-dark-band: #111122;
  --vzxv-clr-dark-band-2: #0e1a2b;
  --vzxv-clr-dashed-border: #c9b86c;
  --vzxv-radius: 12px;
  --vzxv-container: 1200px;
  --vzxv-font-head: 'Cormorant Garamond', Georgia, serif;
  --vzxv-font-body: 'Source Sans 3', Arial, sans-serif;
  --vzxv-spacing-xs: 0.5rem;
  --vzxv-spacing-sm: 1rem;
  --vzxv-spacing-md: 2rem;
  --vzxv-spacing-lg: 4rem;
  --vzxv-spacing-xl: 6rem;
}

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

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

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

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

a { color: var(--vzxv-clr-navy); text-decoration: none; }
a:hover { color: var(--vzxv-clr-accent); }

.container {
  max-width: var(--vzxv-container);
  margin: 0 auto;
  padding: 0 var(--vzxv-spacing-md);
}

h1, h2, h3, h4 {
  font-family: var(--vzxv-font-head);
  line-height: 1.15;
  color: var(--vzxv-clr-text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: var(--vzxv-spacing-sm); }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

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

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--vzxv-radius);
  font-family: var(--vzxv-font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
  border: 2px solid transparent;
}

.btn-outline {
  background: transparent;
  border-color: var(--vzxv-clr-accent);
  color: var(--vzxv-clr-accent);
}

.btn-outline:hover {
  background: var(--vzxv-clr-accent);
  color: var(--vzxv-clr-white);
}

.btn-primary {
  background: var(--vzxv-clr-accent);
  border-color: var(--vzxv-clr-accent);
  color: var(--vzxv-clr-white);
}

.btn-primary:hover {
  background: #a8336f;
  border-color: #a8336f;
}

section { padding: var(--vzxv-spacing-lg) 0; }

.ukfy {
  background: var(--vzxv-clr-dark-band);
  color: var(--vzxv-clr-white);
}

.ukfy h2, .ukfy h3, .ukfy h4 {
  color: var(--vzxv-clr-white);
}

.unyh {
  background: var(--vzxv-clr-dark-band-2);
  color: var(--vzxv-clr-white);
}

.unyh h2, .unyh h3 {
  color: var(--vzxv-clr-gold);
}

.section-tint {
  background: var(--vzxv-clr-bg-tint);
}

.label-chip {
  display: inline-block;
  font-family: var(--vzxv-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vzxv-clr-accent);
  border: 1.5px solid var(--vzxv-clr-accent);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 1rem;
}

.text-gold { color: var(--vzxv-clr-gold); }
.text-accent { color: var(--vzxv-clr-accent); }
.text-muted { color: var(--vzxv-clr-text-muted); font-size: 0.875rem; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--vzxv-clr-accent);
  margin: 1rem 0 1.5rem;
}

.divider-gold {
  background: var(--vzxv-clr-gold);
}

.eyebrow {
  font-family: var(--vzxv-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vzxv-clr-text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.upoe {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--vzxv-clr-white);
  border-bottom: 1px solid #e0dcea;
  padding: 0.85rem 0;
}

.upoe .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-family: var(--vzxv-font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--vzxv-clr-navy);
  letter-spacing: -0.01em;
  line-height: 1;
}

.site-logo span { color: var(--vzxv-clr-accent); }

.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a {
  font-family: var(--vzxv-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vzxv-clr-text);
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--vzxv-clr-accent); }

.nav-cta { margin-left: 0.5rem; }

.ugdi {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--vzxv-clr-text);
}

.ugdi svg { display: block; }

.hero {
  padding: var(--vzxv-spacing-xl) 0 var(--vzxv-spacing-lg);
  background: var(--vzxv-clr-bg);
  position: relative;
  overflow: hidden;
}

.uuif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-meta {
  font-family: var(--vzxv-font-body);
  font-size: 0.8rem;
  color: var(--vzxv-clr-text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vzxv-clr-text-muted);
  display: inline-block;
}

.hero h1 {
  margin-bottom: 1.25rem;
  max-width: 780px;
}

.hero h1 .big-num {
  display: block;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 1;
  color: var(--vzxv-clr-accent);
  letter-spacing: -0.04em;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--vzxv-clr-text-muted);
  max-width: 620px;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.trust-ribbon {
  background: var(--vzxv-clr-dark-band);
  color: var(--vzxv-clr-white);
  padding: 0.8rem 0;
}

.trust-ribbon .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--vzxv-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vzxv-clr-gold);
}

.trust-chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--vzxv-clr-gold);
  fill: none;
}

.myths-section {}

.myths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.myth-card {
  border: 2px dashed var(--vzxv-clr-dashed-border);
  border-radius: var(--vzxv-radius);
  padding: 1.5rem;
  background: var(--vzxv-clr-white);
}

.myth-card .myth-label {
  font-family: var(--vzxv-font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.myth-label-myth {
  background: #fde8e8;
  color: #b91c1c;
}

.myth-label-fact {
  background: #e6f7ee;
  color: #15803d;
}

.myth-card h4 { margin-bottom: 0.5rem; }
.myth-card p { font-size: 0.9rem; color: var(--vzxv-clr-text-muted); }

.sources-section { background: var(--vzxv-clr-bg-tint); }

.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.source-card {
  border: 2px dashed var(--vzxv-clr-dashed-border);
  border-radius: var(--vzxv-radius);
  padding: 1.25rem;
  background: var(--vzxv-clr-white);
}

.source-card h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.source-card p { font-size: 0.875rem; color: var(--vzxv-clr-text-muted); }
.source-card a { color: var(--vzxv-clr-accent); font-weight: 600; font-size: 0.85rem; }
.source-card a:hover { text-decoration: underline; }

.stat-band {
  background: var(--vzxv-clr-dark-band);
  color: var(--vzxv-clr-white);
  padding: var(--vzxv-spacing-lg) 0;
}

.stat-band h2 { color: var(--vzxv-clr-gold); text-align: center; margin-bottom: 2.5rem; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {}

.stat-num {
  font-family: var(--vzxv-font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--vzxv-clr-gold);
  line-height: 1;
  display: block;
}

.stat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.stat-source {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
  display: block;
}

.reviews-section {}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  border: 2px dashed var(--vzxv-clr-dashed-border);
  border-radius: var(--vzxv-radius);
  padding: 1.5rem;
  background: var(--vzxv-clr-white);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
  color: var(--vzxv-clr-gold);
  font-size: 1.1rem;
}

.review-body {
  font-size: 0.9rem;
  color: var(--vzxv-clr-text);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--vzxv-clr-text-muted);
}

.review-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--vzxv-clr-text-muted);
  border-left: 3px solid var(--vzxv-clr-dashed-border);
  padding-left: 0.75rem;
}

.about-section { background: var(--vzxv-clr-bg-tint); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.about-col img {
  border-radius: var(--vzxv-radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.author-bio {
  border: 2px dashed var(--vzxv-clr-dashed-border);
  border-radius: var(--vzxv-radius);
  padding: 1.5rem;
  background: var(--vzxv-clr-white);
  margin-top: 1.5rem;
}

.author-bio .author-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vzxv-clr-navy);
  color: var(--vzxv-clr-white);
  font-family: var(--vzxv-font-head);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.author-bio h4 { margin-bottom: 0.25rem; }
.author-bio p { font-size: 0.875rem; color: var(--vzxv-clr-text-muted); }

.routine-section {}

.routine-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  counter-reset: steps;
}

.routine-step {
  border: 2px dashed var(--vzxv-clr-dashed-border);
  border-radius: var(--vzxv-radius);
  padding: 1.5rem;
  background: var(--vzxv-clr-white);
  counter-increment: steps;
  position: relative;
}

.routine-step::before {
  content: counter(steps);
  font-family: var(--vzxv-font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vzxv-clr-accent);
  opacity: 0.18;
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  line-height: 1;
}

.routine-step h4 { margin-bottom: 0.4rem; }
.routine-step p { font-size: 0.875rem; color: var(--vzxv-clr-text-muted); }

.review-product-section { background: var(--vzxv-clr-bg-tint); }

.review-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.pack-visual {
  position: sticky;
  top: 5rem;
  text-align: center;
}

.pack-visual img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 1rem;
  border-radius: var(--vzxv-radius);
  aspect-ratio: 1/1;
  object-fit: contain;
}

.nrv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.nrv-table th {
  background: var(--vzxv-clr-navy);
  color: var(--vzxv-clr-white);
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-weight: 600;
}

.nrv-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #e0dcea;
  vertical-align: middle;
}

.nrv-table tr:nth-child(even) td { background: rgba(26,77,122,0.04); }

.verdict-box {
  border: 2px dashed var(--vzxv-clr-accent);
  border-radius: var(--vzxv-radius);
  padding: 1.25rem;
  background: var(--vzxv-clr-white);
  margin-top: 1.5rem;
}

.verdict-box h4 { color: var(--vzxv-clr-accent); margin-bottom: 0.5rem; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.pros, .cons {
  border-radius: var(--vzxv-radius);
  padding: 1rem;
}

.pros { background: #e6f7ee; }
.cons { background: #fdf2f2; }

.pros h5 { color: #15803d; margin-bottom: 0.4rem; font-size: 0.85rem; }
.cons h5 { color: #b91c1c; margin-bottom: 0.4rem; font-size: 0.85rem; }

.pros li, .cons li {
  font-size: 0.82rem;
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
  color: var(--vzxv-clr-text);
}

.pros li::before { content: "✓"; position: absolute; left: 0; color: #15803d; font-weight: 700; }
.cons li::before { content: "–"; position: absolute; left: 0; color: #b91c1c; font-weight: 700; }

.order-section {
  background: var(--vzxv-clr-dark-band-2);
  color: var(--vzxv-clr-white);
}

.order-section h2 { color: var(--vzxv-clr-gold); }

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.order-details p, .order-details li {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.order-details ul {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.order-details li {
  padding-left: 1.25rem;
  position: relative;
}

.order-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--vzxv-clr-gold);
  font-weight: 700;
}

.price-display {
  margin: 1.25rem 0;
}

.price-display .price-main {
  font-family: var(--vzxv-font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--vzxv-clr-gold);
  line-height: 1;
}

.price-display .price-was {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.price-display .price-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  display: block;
}

.uorx {
  background: var(--vzxv-clr-white);
  border-radius: var(--vzxv-radius);
  padding: 2rem;
  color: var(--vzxv-clr-text);
}

.uorx h3 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vzxv-clr-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input, .form-group textarea {
  font-family: var(--vzxv-font-body);
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #d1cce0;
  border-radius: 8px;
  background: var(--vzxv-clr-bg);
  color: var(--vzxv-clr-text);
  transition: border-color 0.15s;
  width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--vzxv-clr-accent);
}

.form-honey { display: none !important; }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--vzxv-clr-text-muted);
}

.consent-row input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--vzxv-clr-accent);
}

.consent-row a { color: var(--vzxv-clr-accent); }

.quiz-section {}

.umav {
  background: var(--vzxv-clr-white);
  border: 2px dashed var(--vzxv-clr-dashed-border);
  border-radius: var(--vzxv-radius);
  padding: 2rem;
  max-width: 700px;
  margin: 2rem auto 0;
}

.umav h3 { margin-bottom: 0.5rem; }
.umav .quiz-intro { font-size: 0.9rem; color: var(--vzxv-clr-text-muted); margin-bottom: 1.5rem; }

.quiz-step { display: none; }
.quiz-step.active { display: block; }

.quiz-question {
  font-family: var(--vzxv-font-head);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1cce0;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.9rem;
  background: var(--vzxv-clr-bg);
}

.quiz-option:hover {
  border-color: var(--vzxv-clr-accent);
  background: #fdf0f7;
}

.quiz-option input[type="radio"] { accent-color: var(--vzxv-clr-accent); }

.quiz-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: flex-end;
}

.quiz-result {
  display: none;
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}

.quiz-result h4 { margin-bottom: 0.5rem; color: var(--vzxv-clr-accent); }
.quiz-result p { font-size: 0.9rem; color: var(--vzxv-clr-text-muted); }
.quiz-result .btn { margin-top: 1rem; }

.quiz-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.quiz-progress-dot {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: #d1cce0;
  transition: background 0.2s;
}

.quiz-progress-dot.done { background: var(--vzxv-clr-accent); }

.faq-section { background: var(--vzxv-clr-bg-tint); }

.faq-list {
  max-width: 780px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.utoy {
  border: 2px dashed var(--vzxv-clr-dashed-border);
  border-radius: var(--vzxv-radius);
  background: var(--vzxv-clr-white);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  font-family: var(--vzxv-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vzxv-clr-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.15s;
}

.faq-q:hover { color: var(--vzxv-clr-accent); }
.faq-q[aria-expanded="true"] { color: var(--vzxv-clr-accent); }

.faq-q .faq-icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a.open { max-height: 400px; }

.faq-a-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--vzxv-clr-text-muted);
  line-height: 1.65;
}

.ingredients-img {
  border-radius: var(--vzxv-radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-top: 1rem;
}

.site-footer {
  background: var(--vzxv-clr-black);
  color: rgba(255,255,255,0.65);
  padding: var(--vzxv-spacing-lg) 0 var(--vzxv-spacing-md);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand-name {
  font-family: var(--vzxv-font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vzxv-clr-white);
  margin-bottom: 0.5rem;
}

.footer-col h5 {
  font-family: var(--vzxv-font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vzxv-clr-gold);
  margin-bottom: 0.75rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-col a { color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--vzxv-clr-gold); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 1.5rem 0 1rem;
}

.footer-legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--vzxv-clr-gold);
  padding: 0.75rem 1rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}

.ujen {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vzxv-clr-dark-band);
  color: rgba(255,255,255,0.88);
  padding: 1rem 0;
  border-top: 2px solid var(--vzxv-clr-gold);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.ujen.is-visible { transform: translateY(0); }

.ujen .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.ujen p { font-size: 0.8rem; margin: 0; }
.ujen a { color: var(--vzxv-clr-gold); }

.uvcg { display: flex; gap: 0.6rem; flex-wrap: wrap; flex-shrink: 0; }

.cookie-btn {
  font-family: var(--vzxv-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  border: 1.5px solid var(--vzxv-clr-gold);
  transition: background 0.15s, color 0.15s;
}

.cookie-btn-accept {
  background: var(--vzxv-clr-gold);
  color: var(--vzxv-clr-black);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--vzxv-clr-gold);
}

.cookie-btn-reject:hover { background: var(--vzxv-clr-gold); color: var(--vzxv-clr-black); }

.breadcrumb {
  font-size: 0.78rem;
  color: var(--vzxv-clr-text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--vzxv-clr-text-muted); }
.breadcrumb a:hover { color: var(--vzxv-clr-accent); }
.breadcrumb span { color: var(--vzxv-clr-text-muted); }

.page-hero {
  padding: var(--vzxv-spacing-lg) 0 var(--vzxv-spacing-md);
  background: var(--vzxv-clr-bg-tint);
}

.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.prose {
  max-width: 760px;
}

.prose h2 { margin-bottom: 1rem; margin-top: 2rem; }
.prose h3 { margin-bottom: 0.75rem; margin-top: 1.5rem; }
.prose p { color: var(--vzxv-clr-text-muted); }
.prose ul { list-style: disc; padding-left: 1.4rem; }
.prose ul li { color: var(--vzxv-clr-text-muted); margin-bottom: 0.3rem; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .review-product-grid, .order-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .pack-visual { position: static; }
}

@media (max-width: 640px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--vzxv-clr-white); padding: 1rem; border-bottom: 1px solid #e0dcea; z-index: 800; gap: 0.75rem; }
  .site-nav.open { display: flex; }
  .ugdi { display: block; }
  .upoe .container { position: relative; }
  .hero h1 .big-num { font-size: clamp(3.5rem, 18vw, 6rem); }
  .trust-ribbon .container { gap: 1rem; justify-content: flex-start; overflow-x: auto; padding: 0 1rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .myths-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .routine-steps { grid-template-columns: 1fr; }
  .sources-grid { grid-template-columns: 1fr; }
  .uorx { padding: 1.25rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ujen{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}
.ujen.is-visible,.cookie-banner--visible,.ujen.show,.ujen.active{transform:none !important}
.ujen a{color:inherit;text-decoration:underline}
.ujen button{cursor:pointer}
.ufgs{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}
.ufgs.is-visible,.cookie-modal--visible,.ufgs.show,.ufgs.active{display:flex !important}
.uqui,.ufgs>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}
.ukfy .umav,.ukfy .ualp,.ukfy .uuyc,.ukfy .ubqx,.unyh .umav,.unyh .ualp,.unyh .uuyc,.unyh .ubqx{background:#fff !important;color:#1a1a1a !important}
.umav,.ualp{color:#1a1a1a !important}
.umav label,.ualp label,.umav p,.ualp p,.umav .udaa,.umav span,.ualp span,.ugsm,.uepr,.uuyc .uuwu,.uuyc .uuwu *{color:#1a1a1a !important}
.ugsm,.uepr{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.umav .ubsx{color:#1a1a1a !important}
.umav .ubsx.is-sel{color:#fff !important}
.uorx .uxpm{display:none}
.uorx .uxpm.is-visible{display:block !important;color:#c0392b}
.uorx .uzyz,.uorx [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uorx{color:#1a1a1a}
.ukfy .uorx,.unyh .uorx{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uzhf{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uzhf img{width:100%;height:100%;object-fit:cover}
.uuif,.uazx{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uuif img,.uazx img{width:100%;height:100%;object-fit:cover;display:block}
.uuif img{opacity:.28}
.uazx img{opacity:.07}
*:has(> .uuif),*:has(> .uazx){position:relative}
.uwfg{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)}
.uwfg .ufcr{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uwfg .uuop{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.udth{margin:1.4rem auto;max-width:920px}
.udth img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.unau{padding:3rem 0}
.uayq{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uayq img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ubqx{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uvfy{display:flex;overflow:hidden;gap:0 !important}
.ujkz{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uzbz{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}
.umwo{left:.5rem}.ucmg{right:.5rem}
.uuyc .uuwu{display:none}.uuyc .uuwu.is-active{display:block}
.umav .ubcf{display:block !important}
.umav .usbp{display:flex;flex-wrap:wrap;gap:.5rem}
.umav .ubsx{cursor:pointer}
