:root {
  --vmju-clr-bg: #0d0010;
  --vmju-clr-surface: #130018;
  --vmju-clr-surface2: #1a0022;
  --vmju-clr-accent: #6c1cd1;
  --vmju-clr-accent2: #9b4dff;
  --vmju-clr-gold: #c9a84c;
  --vmju-clr-gold-light: #fff8cb;
  --vmju-clr-purple-light: #e1d9ff;
  --vmju-clr-purple-mid: #b9a6ff;
  --vmju-clr-text: #f0ebff;
  --vmju-clr-text-muted: #b0a0cc;
  --vmju-clr-border: #2e1a4a;
  --vmju-clr-dark-band: #07000e;
  --vmju-clr-card: #160020;
  --vmju-radius: 8px;
  --vmju-container: 1200px;
  --vmju-font-head: 'Playfair Display', Georgia, serif;
  --vmju-font-body: 'Source Sans 3', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--vmju-font-body);
  background: var(--vmju-clr-bg);
  color: var(--vmju-clr-text);
  line-height: 1.7;
  font-size: 1rem;
  min-contrast: auto;
}

.dark-theme { background: var(--vmju-clr-bg); color: var(--vmju-clr-text); }

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

a { color: var(--vmju-clr-accent2); text-decoration: underline; }
a:hover { color: var(--vmju-clr-gold); }

.container {
  max-width: var(--vmju-container);
  margin: 0 auto;
  padding: 0 24px;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--vmju-clr-text); }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

.uvlh { background: var(--vmju-clr-dark-band); }
.udvj { background: var(--vmju-clr-accent); }

section { padding: 72px 0; }

.section-title {
  font-family: var(--vmju-font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--vmju-clr-text);
}

.section-intro {
  color: var(--vmju-clr-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.accent-text { color: var(--vmju-clr-gold); }

.btn-primary {
  display: inline-block;
  background: var(--vmju-clr-accent);
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: var(--vmju-font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--vmju-clr-accent2); color: #fff; transform: translateY(-1px); }

.btn-header {
  display: inline-block;
  background: var(--vmju-clr-gold);
  color: #0d0010;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-header:hover { background: var(--vmju-clr-gold-light); color: #0d0010; }

.ussm {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,0,16,0.96);
  border-bottom: 1px solid var(--vmju-clr-border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-logo {
  font-family: var(--vmju-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vmju-clr-text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--vmju-clr-gold); }

.uucp {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  flex-wrap: wrap;
}
.uucp a {
  color: var(--vmju-clr-text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.uucp a:hover, .uucp a[aria-current="page"] { color: var(--vmju-clr-text); }

.ulhe {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.ulhe span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vmju-clr-text);
  border-radius: 2px;
  transition: 0.3s;
}

.uofr {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--vmju-clr-surface2);
  border-top: 1px solid var(--vmju-clr-border);
  padding: 16px 0;
}
.uofr.is-visible { display: block; }
.cookie-inner {
  max-width: var(--vmju-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: 0.9rem; color: var(--vmju-clr-text-muted); }
.ubvv { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--vmju-clr-accent);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}
.btn-cookie-accept:hover { background: var(--vmju-clr-accent2); }
.btn-cookie-reject, .btn-cookie-settings {
  background: transparent;
  color: var(--vmju-clr-text-muted);
  border: 1px solid var(--vmju-clr-border);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
}
.btn-cookie-reject:hover, .btn-cookie-settings:hover { border-color: var(--vmju-clr-accent2); color: var(--vmju-clr-text); }

.breadcrumb { margin-bottom: 1rem; }
.breadcrumb ol { display: flex; gap: 0.5rem; list-style: none; padding: 0; flex-wrap: wrap; }
.breadcrumb li { font-size: 0.85rem; color: var(--vmju-clr-text-muted); }
.breadcrumb li::after { content: '›'; margin-left: 0.5rem; }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--vmju-clr-purple-mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--vmju-clr-gold); }

.hero { position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: center; }
.urcy {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.urcy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-text { max-width: 600px; }
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--vmju-clr-text);
}
.hero-number {
  font-size: 1.4em;
  color: var(--vmju-clr-gold);
  display: inline-block;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--vmju-clr-purple-light);
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.badge {
  background: var(--vmju-clr-surface2);
  border: 1px solid var(--vmju-clr-border);
  color: var(--vmju-clr-purple-mid);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero-price {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--vmju-clr-text-muted);
}
.hero-price strong { color: var(--vmju-clr-gold); font-size: 1.2em; }
.hero-pack { flex-shrink: 0; }
.hero-pack img {
  width: 340px;
  height: 340px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 8px 32px rgba(108,28,209,0.5));
}
.pack-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  justify-content: center;
}
.pack-stars img { width: 100px; height: auto; }
.pack-stars span { font-size: 0.85rem; color: var(--vmju-clr-text-muted); }

.stat-band { padding: 32px 0; }
.stat-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--vmju-font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.reviews-grid-full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.review-card {
  background: var(--vmju-clr-card);
  padding: 1.5rem;
  border-radius: 8px;
}
.review-card.flat { box-shadow: none; border: none; }
.review-card img { margin-bottom: 0.75rem; }
.review-card blockquote {
  font-style: italic;
  color: var(--vmju-clr-purple-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  quotes: none;
}
.review-card footer { font-size: 0.82rem; color: var(--vmju-clr-text-muted); }
.review-card footer strong { color: var(--vmju-clr-text); }

.section-lifestyle-img { margin-top: 2.5rem; }
.section-lifestyle-img img { width: 100%; max-height: 400px; object-fit: cover; border-radius: 8px; }

.disclaimer-inline {
  font-size: 0.82rem;
  color: var(--vmju-clr-text-muted);
  font-style: italic;
  margin-top: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.step-card {
  background: var(--vmju-clr-surface);
  padding: 1.75rem;
  border-radius: 8px;
  position: relative;
}
.step-card.flat { box-shadow: none; border: none; }
.step-num {
  font-family: var(--vmju-font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--vmju-clr-accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.infographic-wrap img { border-radius: 8px; margin: 0 auto; }

.routine-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.routine-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--vmju-clr-card);
  padding: 1.5rem;
  border-radius: 8px;
}
.routine-step.flat { box-shadow: none; border: none; }
.routine-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }

.lifestyle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lifestyle-img img { border-radius: 8px; width: 100%; height: auto; }
.lifestyle-tips { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.lifestyle-tips li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--vmju-clr-card);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--vmju-clr-purple-light);
}
.lifestyle-tips li.flat { box-shadow: none; border: none; }
.tip-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.compare-table th, .compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--vmju-clr-border);
}
.compare-table th {
  background: var(--vmju-clr-surface2);
  color: var(--vmju-clr-purple-mid);
  font-family: var(--vmju-font-head);
  font-weight: 600;
}
.compare-table tbody tr:nth-child(even) { background: rgba(108,28,209,0.06); }
.highlight-col { background: rgba(108,28,209,0.14); }
.score-high { color: var(--vmju-clr-gold); font-weight: 600; }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.ingredient-card {
  background: var(--vmju-clr-card);
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 1.25rem;
}
.ingredient-card.flat { box-shadow: none; border: none; }
.ingredient-card img { width: 100%; height: 200px; object-fit: cover; }
.ingredient-card h3, .ingredient-card p, .efsa-tag { padding: 0 1.25rem; }
.ingredient-card h3 { margin-top: 1rem; }
.ingredient-icon-only {
  font-size: 3rem;
  padding: 1.5rem 1.25rem 0;
}
.efsa-tag {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--vmju-clr-purple-mid);
  font-style: italic;
}

.nutrition-table-wrap { margin-top: 2.5rem; }
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.nutrition-table th, .nutrition-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--vmju-clr-border);
  text-align: left;
}
.nutrition-table th {
  background: var(--vmju-clr-surface2);
  color: var(--vmju-clr-purple-mid);
  font-weight: 600;
}
.nrv-note { font-size: 0.8rem; color: var(--vmju-clr-text-muted); margin-top: 0.75rem; font-style: italic; }
.food-supplement-label {
  font-size: 0.82rem;
  color: var(--vmju-clr-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.myths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.myth-card {
  background: var(--vmju-clr-card);
  border-radius: 8px;
  padding: 1.5rem;
}
.myth-card.flat { box-shadow: none; border: none; }
.myth-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.myth-label.myth { background: rgba(185,166,255,0.15); color: var(--vmju-clr-purple-mid); }
.fact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin: 0.75rem 0 0.4rem;
  background: rgba(201,168,76,0.15);
  color: var(--vmju-clr-gold);
}

.unaf {
  background: var(--vmju-clr-card);
  border-radius: 8px;
  padding: 2rem;
  max-width: 560px;
}
.unaf.flat { box-shadow: none; border: none; }
.calc-form { display: flex; flex-direction: column; gap: 1.25rem; }
.calc-field label { display: block; font-size: 0.9rem; color: var(--vmju-clr-text-muted); margin-bottom: 0.4rem; font-weight: 500; }
.calc-field input {
  width: 100%;
  padding: 10px 14px;
  background: var(--vmju-clr-surface2);
  border: 1px solid var(--vmju-clr-border);
  border-radius: 8px;
  color: var(--vmju-clr-text);
  font-size: 1rem;
  font-family: var(--vmju-font-body);
}
.calc-field input:focus { outline: 2px solid var(--vmju-clr-accent2); border-color: transparent; }
.btn-calc { align-self: flex-start; }
.calc-result {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--vmju-clr-surface2);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--vmju-clr-gold);
  font-weight: 600;
  min-height: 48px;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.order-pack-col { text-align: center; }
.product-pack {
  width: 320px;
  height: 320px;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(108,28,209,0.5));
}
.order-trust { margin-top: 1.25rem; }
.order-trust p { font-size: 0.88rem; color: var(--vmju-clr-text-muted); margin-bottom: 0.3rem; }
.order-price { font-size: 1.1rem; margin-bottom: 0.25rem; }
.order-price strong { color: var(--vmju-clr-gold); font-size: 1.5em; }
.order-sub { font-size: 0.88rem; color: var(--vmju-clr-text-muted); margin-bottom: 1.5rem; }

.uhfa, .uuvk {
  background: var(--vmju-clr-surface);
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-field label { display: block; font-size: 0.88rem; color: var(--vmju-clr-text-muted); margin-bottom: 0.4rem; font-weight: 500; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--vmju-clr-surface2);
  border: 1px solid var(--vmju-clr-border);
  border-radius: 8px;
  color: var(--vmju-clr-text);
  font-size: 0.95rem;
  font-family: var(--vmju-font-body);
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--vmju-clr-accent2); border-color: transparent; }
.form-field textarea { resize: vertical; }
.form-checkbox { display: flex; gap: 0.75rem; align-items: flex-start; }
.form-checkbox input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--vmju-clr-accent2); width: 16px; height: 16px; }
.form-checkbox label { font-size: 0.83rem; color: var(--vmju-clr-text-muted); line-height: 1.5; }
.btn-order { width: 100%; text-align: center; padding: 15px; font-size: 1.05rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.uuah {
  background: var(--vmju-clr-card);
  border-radius: 8px;
  overflow: hidden;
}
.uuah.flat { box-shadow: none; border: none; }
.uuah summary {
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--vmju-clr-text);
}
.uuah summary::-webkit-details-marker { display: none; }
.uuah summary::after { content: '+'; font-size: 1.2rem; color: var(--vmju-clr-accent2); transition: transform 0.2s; flex-shrink: 0; }
.uuah[open] summary::after { transform: rotate(45deg); }
.uuah p { padding: 0 1.5rem 1.25rem; font-size: 0.93rem; color: var(--vmju-clr-purple-light); }

.site-footer { padding: 56px 0 32px; border-top: 1px solid var(--vmju-clr-border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--vmju-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vmju-clr-text);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--vmju-clr-text-muted); margin-bottom: 0.3rem; }
.footer-abn { font-size: 0.8rem; color: var(--vmju-clr-text-muted); margin-top: 0.5rem; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-content: flex-start;
}
.footer-nav a { color: var(--vmju-clr-text-muted); font-size: 0.85rem; text-decoration: none; }
.footer-nav a:hover { color: var(--vmju-clr-gold); }
.footer-legal { border-top: 1px solid var(--vmju-clr-border); padding-top: 1.25rem; }
.footer-legal p { font-size: 0.78rem; color: var(--vmju-clr-text-muted); margin-bottom: 0.3rem; }

.page-hero { padding: 64px 0 48px; }
.page-intro { font-size: 1.05rem; color: var(--vmju-clr-text-muted); margin-top: 0.75rem; }

.section-content, .section-ingredients-detail, .section-reviews-full,
.section-faq-full, .section-legal, .section-contact, .section-myths,
.section-calc, .section-routine, .section-lifestyle { padding: 64px 0; }

.content-body { max-width: 800px; }
.content-body h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.content-img { border-radius: 8px; margin-bottom: 2rem; }
.info-box {
  background: var(--vmju-clr-surface2);
  border-left: 3px solid var(--vmju-clr-accent2);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}
.info-box.flat { box-shadow: none; }
.info-box h3 { color: var(--vmju-clr-gold); margin-bottom: 0.5rem; }

.ingredient-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  background: var(--vmju-clr-card);
  border-radius: 8px;
  overflow: hidden;
}
.ingredient-detail-card.flat { box-shadow: none; border: none; }
.ingredient-detail-card.reverse { direction: rtl; }
.ingredient-detail-card.reverse > * { direction: ltr; }
.ingredient-detail-card img { width: 100%; height: 300px; object-fit: cover; }
.ingredient-detail-text { padding: 2rem; }
.ingredient-detail-text h2 { margin-bottom: 0.75rem; }
.ingredient-icon-large { font-size: 5rem; padding: 2rem; display: flex; align-items: center; justify-content: center; }

.review-disclaimer-box {
  background: var(--vmju-clr-surface2);
  border-left: 3px solid var(--vmju-clr-accent);
  padding: 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--vmju-clr-text-muted);
}
.review-disclaimer-box.flat { box-shadow: none; }
.reviews-hero-img { border-radius: 8px; margin-bottom: 2.5rem; max-height: 380px; width: 100%; object-fit: cover; }
.reviews-cta { text-align: center; margin-top: 2.5rem; }

.faq-cta { text-align: center; margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.faq-cta p { color: var(--vmju-clr-text-muted); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.uuvk h2 { margin-bottom: 1.25rem; }
.map-container { margin-top: 1rem; }
.map-container h2 { margin-bottom: 1rem; }
.map-container iframe { border-radius: 8px; }

.thankyou-section { min-height: 60vh; display: flex; align-items: center; }
.thankyou-content { text-align: center; max-width: 600px; margin: 0 auto; }
.thankyou-content h1 { margin-bottom: 1.25rem; }
.thankyou-content p { color: var(--vmju-clr-text-muted); margin-bottom: 1rem; }
.thankyou-content .btn-primary { margin-top: 1rem; }

.legal-body { max-width: 820px; }
.legal-body h2 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.25rem; }
.legal-body ul, .legal-body ol { margin-bottom: 1rem; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1rem 0;
}
.cookie-table th, .cookie-table td {
  padding: 10px 12px;
  border: 1px solid var(--vmju-clr-border);
  text-align: left;
}
.cookie-table th { background: var(--vmju-clr-surface2); color: var(--vmju-clr-purple-mid); font-weight: 600; }

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-pack { display: flex; flex-direction: column; align-items: center; }
  .hero-pack img { width: 260px; height: 260px; }
  .hero-badges { justify-content: center; }
  .lifestyle-split { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .ingredient-detail-card { grid-template-columns: 1fr; }
  .ingredient-detail-card.reverse { direction: ltr; }
  .stat-row { gap: 2rem; }
}

@media (max-width: 680px) {
  .uucp { display: none; }
  .uucp.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--vmju-clr-dark-band); padding: 1.5rem 24px; border-bottom: 1px solid var(--vmju-clr-border); z-index: 99; }
  .ulhe { display: flex; }
  .hero-layout { padding-top: 48px; padding-bottom: 48px; }
  section { padding: 48px 0; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uofr{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}
.uofr.is-visible,.cookie-banner--visible,.uofr.show,.uofr.active{transform:none !important}
.uofr a{color:inherit;text-decoration:underline}
.uofr button{cursor:pointer}
.ucut{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}
.ucut.is-visible,.cookie-modal--visible,.ucut.show,.ucut.active{display:flex !important}
.uzxz,.ucut>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uvlh .uija,.uvlh .unaf,.uvlh .ubeq,.uvlh .upzv,.udvj .uija,.udvj .unaf,.udvj .ubeq,.udvj .upzv{background:#fff !important;color:#1a1a1a !important}
.uija,.unaf{color:#1a1a1a !important}
.uija label,.unaf label,.uija p,.unaf p,.uija .udxs,.uija span,.unaf span,.ucvz,.uwme,.ubeq .uzcs,.ubeq .uzcs *{color:#1a1a1a !important}
.ucvz,.uwme{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uija .uqkx{color:#1a1a1a !important}
.uija .uqkx.is-sel{color:#fff !important}
.uhfa .ubfh{display:none}
.uhfa .ubfh.is-visible{display:block !important;color:#c0392b}
.uhfa .upfx,.uhfa [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uhfa{color:#1a1a1a}
.uvlh .uhfa,.udvj .uhfa{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ueyw{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ueyw img{width:100%;height:100%;object-fit:cover}
.urcy,.uypv{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.urcy img,.uypv img{width:100%;height:100%;object-fit:cover;display:block}
.urcy img{opacity:.28}
.uypv img{opacity:.07}
*:has(> .urcy),*:has(> .uypv){position:relative}
.uhhc{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)}
.uhhc .uvpx{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uhhc .uxdb{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uwrx{margin:1.4rem auto;max-width:920px}
.uwrx img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ulya{padding:3rem 0}
.uepf{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uepf img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.upzv{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.upkd{display:flex;overflow:hidden;gap:0 !important}
.umin{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.urbe{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}
.uqzn{left:.5rem}.uukr{right:.5rem}
.ubeq .uzcs{display:none}.ubeq .uzcs.is-active{display:block}
.uija .usvy{display:block !important}
.uija .urmm{display:flex;flex-wrap:wrap;gap:.5rem}
.uija .uqkx{cursor:pointer}
