:root {
  --vrhg-accent: #5a0eb5;
  --vrhg-accent-light: #a97ef0;
  --vrhg-accent-mid: #7c2fd4;
  --vrhg-accent-dark: #3a0880;
  --vrhg-accent-pale: #f0eaff;
  --vrhg-bg: #faf8ff;
  --vrhg-bg-dark: #1a0e2e;
  --vrhg-bg-mid: #2c1a4a;
  --vrhg-text: #1e1530;
  --vrhg-text-muted: #5e5473;
  --vrhg-text-light: #f5f0ff;
  --vrhg-border: #ddd6f5;
  --vrhg-white: #ffffff;
  --vrhg-gold: #F5A623;
  --vrhg-radius: 24px;
  --vrhg-radius-sm: 6px;
  --vrhg-container: 960px;
  --vrhg-font-head: 'Zilla Slab', Georgia, serif;
  --vrhg-font-body: 'Lato', Arial, sans-serif;
}

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

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

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

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

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

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

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 600; margin-bottom: 1.2rem; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: .6rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

.btn-primary {
  display: inline-block;
  background: var(--vrhg-accent);
  color: var(--vrhg-white);
  padding: .85rem 2.2rem;
  border-radius: var(--vrhg-radius-sm);
  font-family: var(--vrhg-font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--vrhg-accent-mid); text-decoration: none; }

.upjz {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vrhg-white);
  border-bottom: 1px solid var(--vrhg-border);
  box-shadow: 0 1px 8px rgba(90,14,181,.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 1rem;
}

.site-logo {
  font-family: var(--vrhg-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vrhg-accent-dark);
  text-decoration: none;
  white-space: nowrap;
}

.upkt ul {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  padding: 0;
  margin: 0;
  align-items: center;
}
.upkt a {
  font-size: .92rem;
  color: var(--vrhg-text);
  font-weight: 400;
  text-decoration: none;
  transition: color .15s;
}
.upkt a:hover, .upkt a[aria-current="page"] { color: var(--vrhg-accent); }
.upkt .nav-cta {
  background: var(--vrhg-accent);
  color: var(--vrhg-white);
  padding: .45rem 1.1rem;
  border-radius: var(--vrhg-radius-sm);
  font-weight: 700;
}
.upkt .nav-cta:hover { background: var(--vrhg-accent-mid); }

.uunp {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--vrhg-accent);
}

.breadcrumb-bar {
  background: var(--vrhg-accent-pale);
  border-bottom: 1px solid var(--vrhg-border);
  padding: .5rem 0;
}
.breadcrumb {
  list-style: none;
  display: flex;
  gap: .5rem;
  padding: 0;
  margin: 0;
  font-size: .85rem;
  color: var(--vrhg-text-muted);
}
.breadcrumb li + li::before { content: '›'; margin-right: .5rem; }
.breadcrumb a { color: var(--vrhg-accent); }

.uhje {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vrhg-bg-dark);
  color: var(--vrhg-text-light);
  padding: 1.2rem 1rem;
  box-shadow: 0 -2px 16px rgba(0,0,0,.3);
}
.uhje.is-visible { display: block; }
.cookie-inner {
  max-width: var(--vrhg-container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.cookie-inner p { margin: 0; font-size: .88rem; flex: 1 1 300px; }
.cookie-inner a { color: var(--vrhg-accent-light); }
.uofu { display: flex; gap: .6rem; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--vrhg-accent);
  color: var(--vrhg-white);
  border: none;
  padding: .5rem 1.1rem;
  border-radius: var(--vrhg-radius-sm);
  cursor: pointer;
  font-weight: 700;
  font-size: .88rem;
}
.btn-cookie-reject {
  background: transparent;
  color: var(--vrhg-text-light);
  border: 1px solid rgba(255,255,255,.3);
  padding: .5rem 1.1rem;
  border-radius: var(--vrhg-radius-sm);
  cursor: pointer;
  font-size: .88rem;
}
.btn-cookie-settings {
  color: var(--vrhg-accent-light);
  font-size: .85rem;
  padding: .5rem .5rem;
  text-decoration: underline;
}

.hero-full-bleed {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,14,46,.88) 0%, rgba(58,8,128,.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-text { flex: 1 1 0; }
.hero-chip {
  display: inline-block;
  background: rgba(255,255,255,.14);
  color: var(--vrhg-text-light);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 40px;
  padding: .3rem 1rem;
  font-size: .82rem;
  letter-spacing: .04em;
  margin-bottom: 1.2rem;
}
.hero-h1 {
  color: var(--vrhg-white);
  margin-bottom: 1rem;
}
.hero-number {
  font-size: 1.4em;
  color: var(--vrhg-accent-light);
  line-height: 1;
}
.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.08rem;
  margin-bottom: 1.8rem;
  max-width: 520px;
}
.hero-disclaimer {
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  margin-top: .8rem;
}
.hero-pack {
  flex: 0 0 auto;
  width: 280px;
}
.hero-pack img {
  border-radius: var(--vrhg-radius);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.thin-dark-band {
  height: 6px;
  background: linear-gradient(90deg, var(--vrhg-accent-dark), var(--vrhg-accent-mid));
}

section {
  padding: 5rem 0;
}

.section-intro {
  color: var(--vrhg-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.4rem;
  max-width: 700px;
}
.section-intro.light { color: rgba(255,255,255,.78); }

.section-disclaimer {
  color: var(--vrhg-text-muted);
  font-size: .8rem;
  margin-top: 1.6rem;
  font-style: italic;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ingredient-card {
  background: var(--vrhg-white);
  border-radius: var(--vrhg-radius);
  overflow: hidden;
}
.ingredient-card.flat {
  box-shadow: none;
  border: none;
  background: var(--vrhg-accent-pale);
}
.ingredient-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ingredient-icon-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vrhg-bg-dark);
  aspect-ratio: 4/3;
}
.ingredient-body { padding: 1.4rem; }
.ing-claim { font-size: .95rem; margin-bottom: .6rem; }
.efsa-tag {
  display: inline-block;
  font-size: .75rem;
  color: var(--vrhg-accent);
  background: rgba(90,14,181,.08);
  border-radius: 20px;
  padding: .2rem .7rem;
}
.ing-disclaimer {
  font-size: .75rem;
  color: var(--vrhg-text-muted);
  font-style: italic;
  margin-top: .8rem;
  margin-bottom: 0;
}

.ing-facts {
  list-style: disc;
  padding-left: 1.2rem;
  font-size: .92rem;
}

.section-myths {
  background: var(--vrhg-bg-dark);
  color: var(--vrhg-text-light);
}
.section-myths h2 { color: var(--vrhg-white); }

.myths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.myth-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--vrhg-radius);
  padding: 1.6rem;
}
.myth-card.flat { border: none; }
.myth-card p { font-size: .95rem; color: rgba(255,255,255,.82); margin-bottom: .8rem; }
.myth-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: .2rem .6rem;
  margin-bottom: .5rem;
}
.myth-label.myth { background: rgba(255,80,80,.2); color: #ff9494; }
.myth-label.fact { background: rgba(90,14,181,.35); color: var(--vrhg-accent-light); }

.uxfl {
  background: var(--vrhg-bg-dark);
  color: var(--vrhg-text-light);
}
.uxfl h2, .uxfl h3 { color: var(--vrhg-white); }

.udki {
  background: var(--vrhg-accent-dark);
  color: var(--vrhg-text-light);
}
.udki h2, .udki h3 { color: var(--vrhg-white); }

.stat-band { padding: 3rem 0; }
.stat-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item {
  text-align: center;
  flex: 1 1 180px;
}
.stat-number {
  display: block;
  font-family: var(--vrhg-font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--vrhg-accent-light);
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  margin-top: .3rem;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.15);
}

.howto-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}
.howto-step {
  background: var(--vrhg-accent-pale);
  border-radius: var(--vrhg-radius);
  padding: 1.8rem 1.6rem;
}
.howto-step.flat { border: none; }
.step-number {
  font-family: var(--vrhg-font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--vrhg-accent-light);
  line-height: 1;
  margin-bottom: .6rem;
}
.howto-lifestyle img {
  border-radius: var(--vrhg-radius);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.lifestyle-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.tip-card {
  background: rgba(255,255,255,.07);
  border-radius: var(--vrhg-radius);
  padding: 1.4rem;
}
.tip-card.flat { border: none; }
.tip-card h3 { color: var(--vrhg-accent-light); font-size: 1.05rem; }
.tip-card p { color: rgba(255,255,255,.78); font-size: .92rem; }
.tip-icon { margin-bottom: .8rem; }

.lifestyle-image-wrap img {
  border-radius: var(--vrhg-radius);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.checklist-weeks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.week-card {
  background: var(--vrhg-accent-pale);
  border-radius: var(--vrhg-radius);
  padding: 1.6rem;
}
.week-card.flat { border: none; }
.week-label {
  display: inline-block;
  background: var(--vrhg-accent);
  color: var(--vrhg-white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: .25rem .8rem;
  margin-bottom: .7rem;
}
.week-card h3 { color: var(--vrhg-accent-dark); font-size: 1rem; }
.check-list {
  list-style: none;
  padding: 0;
  margin-top: .6rem;
}
.check-list li {
  padding-left: 1.4rem;
  position: relative;
  font-size: .92rem;
  margin-bottom: .5rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vrhg-accent);
  font-weight: 700;
}

.scorecard-table-wrap { overflow-x: auto; margin-bottom: 1.2rem; }
.scorecard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.scorecard-table th {
  background: var(--vrhg-accent);
  color: var(--vrhg-white);
  padding: .75rem 1rem;
  text-align: left;
  font-family: var(--vrhg-font-head);
}
.scorecard-table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--vrhg-border);
  color: var(--vrhg-text);
}
.scorecard-table tr:nth-child(even) td { background: var(--vrhg-accent-pale); }
.score-best { color: var(--vrhg-accent-dark); font-weight: 700; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.testimonial-card {
  background: var(--vrhg-accent-pale);
  border-radius: var(--vrhg-radius);
  padding: 1.6rem;
}
.testimonial-card.flat { border: none; }
.testimonial-card img { margin-bottom: .8rem; width: 100px; height: 20px; object-fit: contain; }
.testimonial-card blockquote {
  font-style: italic;
  color: var(--vrhg-text);
  margin-bottom: .8rem;
  font-size: .95rem;
}
.testimonial-card cite { font-size: .82rem; color: var(--vrhg-text-muted); }
.testimonial-disclaimer {
  font-size: .78rem;
  color: var(--vrhg-text-muted);
  font-style: italic;
  margin-top: 1.6rem;
}

.uhjf { max-width: 680px; margin: 0 auto; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-question {
  font-family: var(--vrhg-font-head);
  font-size: 1.15rem;
  color: var(--vrhg-white);
  margin-bottom: 1.2rem;
}
.quiz-options { display: flex; flex-direction: column; gap: .7rem; }
.quiz-option {
  background: rgba(255,255,255,.1);
  color: var(--vrhg-white);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--vrhg-radius-sm);
  padding: .8rem 1.2rem;
  text-align: left;
  cursor: pointer;
  font-size: .95rem;
  transition: background .15s;
}
.quiz-option:hover { background: rgba(255,255,255,.2); }
.quiz-option.selected { background: var(--vrhg-accent); border-color: var(--vrhg-accent); }
.quiz-result { text-align: center; padding: 2rem 0; }
.quiz-result-title { color: var(--vrhg-white); margin-bottom: .8rem; }
.quiz-result-text { color: rgba(255,255,255,.82); margin-bottom: 1.6rem; }

.mosaic-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--vrhg-radius);
  aspect-ratio: 4/3;
  display: block;
}
.mosaic-large {
  grid-row: 1 / 3;
}
.mosaic-large img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 300px;
}

.section-order.uxfl { padding: 5rem 0; }
.order-wrap {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.order-info { flex: 1 1 0; }
.order-info h2 { color: var(--vrhg-white); }
.order-info p { color: rgba(255,255,255,.82); }
.order-price-block { margin: 1.4rem 0; }
.price-original {
  display: block;
  text-decoration: line-through;
  color: rgba(255,255,255,.45);
  font-size: 1rem;
}
.price-current {
  display: block;
  font-family: var(--vrhg-font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--vrhg-accent-light);
  line-height: 1.2;
}
.price-note {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: .4rem;
}
.order-trust-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
}
.order-trust-list li {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: .4rem;
}
.order-trust-list li::before { content: '✓'; position: absolute; left: 0; color: var(--vrhg-accent-light); }
.order-pack-img {
  border-radius: var(--vrhg-radius);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-top: 1rem;
}

.order-form-wrap {
  flex: 0 0 340px;
  background: var(--vrhg-white);
  border-radius: var(--vrhg-radius);
  padding: 2rem;
}
.order-form-wrap h3 {
  color: var(--vrhg-accent-dark);
  margin-bottom: 1.4rem;
  font-size: 1.3rem;
}

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--vrhg-text);
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--vrhg-border);
  border-radius: var(--vrhg-radius-sm);
  font-family: var(--vrhg-font-body);
  font-size: .95rem;
  color: var(--vrhg-text);
  background: var(--vrhg-bg);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--vrhg-accent);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.form-consent input[type="checkbox"] {
  margin-top: .2rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.form-consent label {
  font-size: .82rem;
  font-weight: 400;
  color: var(--vrhg-text-muted);
}
.btn-order { width: 100%; text-align: center; margin-top: .4rem; }
.form-micro { font-size: .75rem; color: var(--vrhg-text-muted); margin-top: .7rem; }

.faq-list { max-width: 720px; }
.uuoy { border-bottom: 1px solid var(--vrhg-border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--vrhg-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vrhg-text);
  padding: 1.1rem 2rem 1.1rem 0;
  cursor: pointer;
  position: relative;
  transition: color .15s;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--vrhg-accent);
  transition: transform .2s;
}
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-a {
  display: none;
  padding-bottom: 1rem;
  font-size: .95rem;
  color: var(--vrhg-text-muted);
}
.faq-a.open { display: block; }

.page-hero-simple {
  background: var(--vrhg-accent-pale);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--vrhg-border);
}
.page-hero-simple h1 { color: var(--vrhg-accent-dark); margin-bottom: .8rem; }
.page-hero-sub { color: var(--vrhg-text-muted); font-size: 1.05rem; max-width: 680px; }

.review-meta { font-size: .82rem; color: var(--vrhg-text-muted); margin-top: 1rem; }

.at-a-glance {
  background: var(--vrhg-accent-pale);
  border-radius: var(--vrhg-radius);
  padding: 2rem;
  margin-bottom: 3rem;
}
.glance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}
.glance-item { }
.glance-label { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--vrhg-text-muted); margin-bottom: .2rem; }
.glance-value { font-size: .95rem; color: var(--vrhg-text); font-weight: 600; }
.glance-rating { color: var(--vrhg-accent); font-size: 1.15rem; }

.criteria-ratings { margin-bottom: 3rem; }
.rating-bar-list { display: flex; flex-direction: column; gap: 1rem; }
.rating-bar-item { display: flex; align-items: center; gap: 1rem; }
.rb-label { width: 220px; font-size: .92rem; flex-shrink: 0; }
.rb-bar-wrap { flex: 1; background: var(--vrhg-border); border-radius: 8px; height: 10px; }
.rb-bar { height: 10px; background: var(--vrhg-accent); border-radius: 8px; }
.rb-score { width: 48px; text-align: right; font-size: .88rem; font-weight: 700; color: var(--vrhg-accent); }

.verdict-box {
  background: var(--vrhg-accent-pale);
  border-radius: var(--vrhg-radius);
  padding: 2rem;
  margin-top: 2.4rem;
}
.verdict-box h2 { color: var(--vrhg-accent-dark); }
.verdict-disclaimer { font-size: .8rem; color: var(--vrhg-text-muted); font-style: italic; margin-top: 1rem; }
.verdict-box .btn-primary { margin-top: 1.2rem; }

.section-cta-strip { padding: 2.5rem 0; }
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-strip-inner p { color: var(--vrhg-white); font-size: 1.1rem; font-family: var(--vrhg-font-head); font-weight: 600; margin: 0; }

.contact-wrap {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.contact-info { flex: 1 1 0; }
.contact-details { list-style: none; padding: 0; margin-bottom: 1.2rem; }
.contact-details li { margin-bottom: .6rem; font-size: .95rem; }
.map-container { margin-top: 1.6rem; border-radius: var(--vrhg-radius); overflow: hidden; }
.map-container iframe { display: block; }
.contact-form-wrap { flex: 0 0 380px; }

.section-contact { padding: 4rem 0 5rem; }

.howto-hero-image { margin-bottom: 3rem; }
.howto-hero-image img { border-radius: var(--vrhg-radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; max-height: 440px; }

.howto-instructions { margin-bottom: 3rem; }
.howto-ordered { padding-left: 1.4rem; }
.howto-ordered li { margin-bottom: 1rem; font-size: .97rem; }
.howto-note {
  background: var(--vrhg-accent-pale);
  border-radius: var(--vrhg-radius-sm);
  padding: 1rem 1.2rem;
  font-size: .88rem;
  color: var(--vrhg-text-muted);
  margin-top: 1.2rem;
}

.fourweek-plan { margin-bottom: 3rem; }
.lifestyle-tips-section { border-radius: var(--vrhg-radius); padding: 3rem; margin-top: 2rem; }

.ingredient-detail-block {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--vrhg-border);
}
.ingredient-detail-block:last-of-type { border-bottom: none; }
.ingredient-detail-block.reverse { flex-direction: row-reverse; }
.ing-detail-image { flex: 0 0 320px; }
.ing-detail-image img { border-radius: var(--vrhg-radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ing-detail-text { flex: 1 1 0; }

.supplement-facts-box {
  background: var(--vrhg-accent-pale);
  border-radius: var(--vrhg-radius);
  padding: 2rem;
  margin-top: 1rem;
}
.supp-facts-table { width: 100%; border-collapse: collapse; font-size: .9rem; margin-top: 1rem; }
.supp-facts-table th { background: var(--vrhg-accent); color: var(--vrhg-white); padding: .6rem .9rem; text-align: left; }
.supp-facts-table td { padding: .6rem .9rem; border-bottom: 1px solid var(--vrhg-border); }
.supp-facts-table tr:nth-child(even) td { background: rgba(90,14,181,.05); }
.facts-note { font-size: .78rem; color: var(--vrhg-text-muted); margin-top: 1rem; font-style: italic; }

.section-scorecard-detail { padding: 4rem 0 5rem; }

.cookie-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin: 1rem 0; }
.cookie-table th { background: var(--vrhg-accent); color: var(--vrhg-white); padding: .6rem .8rem; text-align: left; }
.cookie-table td { padding: .6rem .8rem; border-bottom: 1px solid var(--vrhg-border); vertical-align: top; }
.cookie-table tr:nth-child(even) td { background: var(--vrhg-accent-pale); }

.impressum-table { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 1rem 0; }
.impressum-table td { padding: .65rem .8rem; border-bottom: 1px solid var(--vrhg-border); vertical-align: top; }
.impressum-table tr:nth-child(even) td { background: var(--vrhg-accent-pale); }

.legal-main { padding: 4rem 0 5rem; }
.legal-container { max-width: 740px; }
.legal-container h1 { margin-bottom: 1.6rem; }
.legal-container h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: .6rem; color: var(--vrhg-accent-dark); }
.legal-updated { color: var(--vrhg-text-muted); font-size: .85rem; margin-bottom: 2rem; }

.thankyou-main { min-height: 60vh; display: flex; align-items: center; }
.thankyou-content { text-align: center; padding: 4rem 0; max-width: 520px; margin: 0 auto; }
.thankyou-icon { margin-bottom: 1.4rem; }
.thankyou-content h1 { margin-bottom: 1rem; }
.thankyou-content .btn-primary { margin-top: 1.4rem; }

.site-footer {
  background: var(--vrhg-bg-dark);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-logo {
  font-family: var(--vrhg-font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vrhg-white);
  display: block;
  margin-bottom: .4rem;
}
.footer-tagline { font-size: .85rem; margin-bottom: .4rem; }
.footer-abn { font-size: .78rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: .4rem; }
.footer-nav a { color: rgba(255,255,255,.65); font-size: .88rem; }
.footer-nav a:hover { color: var(--vrhg-accent-light); }
.footer-legal p { font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: .5rem; }

.section-ingredients-detail { padding: 4rem 0 5rem; }
.section-howto-detail { padding: 3rem 0 5rem; }

@media (max-width: 768px) {
  .upkt { display: none; }
  .uunp { display: block; }
  .hero-content { flex-direction: column; gap: 2rem; }
  .hero-pack { width: 200px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .myths-grid { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: 1fr; }
  .lifestyle-tips-grid { grid-template-columns: 1fr; }
  .checklist-weeks { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mosaic-gallery { grid-template-columns: 1fr; }
  .mosaic-large { grid-row: auto; }
  .order-wrap { flex-direction: column; }
  .order-form-wrap { flex: 1 1 auto; width: 100%; }
  .contact-wrap { flex-direction: column; }
  .contact-form-wrap { flex: 1 1 auto; width: 100%; }
  .ingredient-detail-block { flex-direction: column; }
  .ingredient-detail-block.reverse { flex-direction: column; }
  .ing-detail-image { flex: 1 1 auto; width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .glance-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-bar-item { flex-wrap: wrap; }
  .rb-label { width: 100%; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uhje{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}
.uhje.is-visible,.cookie-banner--visible,.uhje.show,.uhje.active{transform:none !important}
.uhje a{color:inherit;text-decoration:underline}
.uhje button{cursor:pointer}
.uosm{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}
.uosm.is-visible,.cookie-modal--visible,.uosm.show,.uosm.active{display:flex !important}
.ulcs,.uosm>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uxfl .uhjf,.uxfl .unux,.uxfl .ufft,.uxfl .ubrj,.udki .uhjf,.udki .unux,.udki .ufft,.udki .ubrj{background:#fff !important;color:#1a1a1a !important}
.uhjf,.unux{color:#1a1a1a !important}
.uhjf label,.unux label,.uhjf p,.unux p,.uhjf .upyd,.uhjf span,.unux span,.uqpe,.uodl,.ufft .ukct,.ufft .ukct *{color:#1a1a1a !important}
.uqpe,.uodl{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uhjf .uefc{color:#1a1a1a !important}
.uhjf .uefc.is-sel{color:#fff !important}
.urfl .udmb{display:none}
.urfl .udmb.is-visible{display:block !important;color:#c0392b}
.urfl .uxnb,.urfl [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.urfl{color:#1a1a1a}
.uxfl .urfl,.udki .urfl{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ufmv{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ufmv img{width:100%;height:100%;object-fit:cover}
.unur,.urho{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.unur img,.urho img{width:100%;height:100%;object-fit:cover;display:block}
.unur img{opacity:.28}
.urho img{opacity:.07}
*:has(> .unur),*:has(> .urho){position:relative}
.usat{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)}
.usat .uswx{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.usat .uoqg{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uwga{margin:1.4rem auto;max-width:920px}
.uwga img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uqtd{padding:3rem 0}
.urjz{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.urjz img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ubrj{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ubnu{display:flex;overflow:hidden;gap:0 !important}
.ujda{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uocu{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}
.ucvn{left:.5rem}.uads{right:.5rem}
.ufft .ukct{display:none}.ufft .ukct.is-active{display:block}
.uhjf .uuwc{display:block !important}
.uhjf .uqzd{display:flex;flex-wrap:wrap;gap:.5rem}
.uhjf .uefc{cursor:pointer}
