:root {
  --vpwh-clr-primary: #1a5fa8;
  --vpwh-clr-primary-dark: #0f3d72;
  --vpwh-clr-accent: #e05a20;
  --vpwh-clr-accent-light: #f5ede6;
  --vpwh-clr-navy: #19417d;
  --vpwh-clr-red: #da2128;
  --vpwh-clr-sky: #00a5e6;
  --vpwh-clr-sky-pale: #e8f5fb;
  --vpwh-clr-bg: #f4f0ed;
  --vpwh-clr-bg-white: #ffffff;
  --vpwh-clr-text: #1c1c2e;
  --vpwh-clr-text-mid: #444458;
  --vpwh-clr-text-light: #6b6b82;
  --vpwh-clr-border: #d4cfc9;
  --vpwh-clr-dark-section: #0f3d72;
  --vpwh-clr-accent-section: #19417d;
  --vpwh-ff-head: 'Zilla Slab', Georgia, serif;
  --vpwh-ff-body: 'Lato', Arial, sans-serif;
  --vpwh-radius: 24px;
  --vpwh-radius-sm: 6px;
  --vpwh-container: 960px;
  --vpwh-transition: 0.2s ease;
}

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

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

body {
  font-family: var(--vpwh-ff-body);
  background: var(--vpwh-clr-bg);
  color: var(--vpwh-clr-text);
  line-height: 1.7;
  min-height: 100vh;
}

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

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

h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 700; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 600; margin-bottom: 0.75rem; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.4rem; }
h4 { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--vpwh-clr-text-mid); margin-bottom: 0.5rem; }

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

.container {
  max-width: var(--vpwh-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow { max-width: 720px; }

.section {
  padding: 4rem 0;
}

.section-sub {
  color: var(--vpwh-clr-text-mid);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 640px;
}

.btn {
  display: inline-block;
  font-family: var(--vpwh-ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--vpwh-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--vpwh-transition), color var(--vpwh-transition), border-color var(--vpwh-transition);
  text-align: center;
  line-height: 1.3;
}
.btn-primary {
  background: var(--vpwh-clr-accent);
  color: #fff;
  border-color: var(--vpwh-clr-accent);
}
.btn-primary:hover { background: #bf4a15; border-color: #bf4a15; text-decoration: none; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--vpwh-clr-accent);
  border-color: var(--vpwh-clr-accent);
}
.btn-ghost:hover { background: var(--vpwh-clr-accent-light); text-decoration: none; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.875rem; }
.btn-full { width: 100%; display: block; }

.uylx {
  background: var(--vpwh-clr-bg-white);
  border-bottom: 2px solid var(--vpwh-clr-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.uylx .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: 1rem;
}
.site-logo {
  font-family: var(--vpwh-ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vpwh-clr-navy);
  white-space: nowrap;
}
.site-logo:hover { text-decoration: none; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 1.25rem; padding: 0; margin: 0; flex-wrap: wrap; }
.site-nav a { font-size: 0.9rem; color: var(--vpwh-clr-text-mid); font-weight: 700; }
.site-nav a:hover, .site-nav a.active { color: var(--vpwh-clr-primary); text-decoration: none; }
.uhgf { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--vpwh-clr-navy); }

.breadcrumb-nav { background: var(--vpwh-clr-sky-pale); border-bottom: 1px solid var(--vpwh-clr-border); }
.breadcrumb { list-style: none; display: flex; gap: 0.5rem; padding: 0.5rem 0; font-size: 0.85rem; color: var(--vpwh-clr-text-light); }
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; }
.breadcrumb a { color: var(--vpwh-clr-primary); }

.section-hero {
  position: relative;
  background: var(--vpwh-clr-sky-pale);
  overflow: hidden;
  padding: 4rem 0;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  z-index: 0;
}
.section-hero .container { position: relative; z-index: 1; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}
.hero-label {
  display: inline-block;
  background: var(--vpwh-clr-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--vpwh-radius-sm);
  margin-bottom: 1rem;
}
.hero-text h1 { margin-bottom: 1rem; }
.accent-word { color: var(--vpwh-clr-accent); }
.hero-sub { font-size: 1.05rem; color: var(--vpwh-clr-text-mid); margin-bottom: 1.25rem; }
.hero-trust { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.stars { color: #e6a817; font-size: 1.1rem; }
.trust-label { font-size: 0.9rem; color: var(--vpwh-clr-text-mid); font-weight: 700; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-disclaimer { font-size: 0.78rem; color: var(--vpwh-clr-text-light); }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.pack-img { border-radius: var(--vpwh-radius); box-shadow: 0 12px 48px rgba(25,65,125,0.15); max-width: 340px; width: 100%; aspect-ratio: 1/1; object-fit: contain; }

.page-hero.section-hero--slim {
  padding: 2.5rem 0;
  background: var(--vpwh-clr-sky-pale);
}
.page-hero.section-hero--slim h1 { margin-bottom: 0.5rem; }

.section-scorecard {
  position: relative;
  overflow: hidden;
  background: var(--vpwh-clr-bg-white);
}
.scorecard-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
}
.section-scorecard .container { position: relative; z-index: 1; }
.scorecard-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.2fr 1fr;
  gap: 0;
  border: 2px dashed var(--vpwh-clr-border);
  border-radius: var(--vpwh-radius);
  overflow: hidden;
  margin-bottom: 1rem;
}
.scorecard-card {
  display: contents;
}
.scorecard-card > * {
  padding: 0.7rem 1rem;
  border-bottom: 1px dashed var(--vpwh-clr-border);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.scorecard-criteria { font-weight: 700; color: var(--vpwh-clr-text); }
.scorecard-col-header { font-weight: 700; color: var(--vpwh-clr-navy); background: var(--vpwh-clr-sky-pale); justify-content: center; text-align: center; }
.scorecard-val { justify-content: center; text-align: center; }
.scorecard-val.positive { color: #237a3a; font-weight: 700; }
.scorecard-val.neutral { color: var(--vpwh-clr-text-light); }
.scorecard-disclaimer { font-size: 0.8rem; color: var(--vpwh-clr-text-light); }

.checklist-steps { display: grid; gap: 1rem; margin-bottom: 2rem; }
.step-card {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border: 2px dashed var(--vpwh-clr-border);
  border-radius: var(--vpwh-radius);
  background: var(--vpwh-clr-bg-white);
}
.step-num {
  font-family: var(--vpwh-ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vpwh-clr-accent);
  line-height: 1;
}
.checklist-image { border-radius: var(--vpwh-radius); overflow: hidden; }
.checklist-image img { width: 100%; object-fit: cover; max-height: 360px; }

.section-lifestyle { padding: 4rem 0; }
.uezh { background: var(--vpwh-clr-dark-section); color: #e8f0f8; }
.uezh h2, .uezh h3 { color: #cfe4f8; }
.uezh .section-sub { color: #a8c4e0; }
.uezh .lifestyle-icon { color: var(--vpwh-clr-sky); }
.uezh p { color: #cad9ea; }
.ubwf { background: var(--vpwh-clr-accent-section); color: #e8f0f8; }
.ubwf h2 { color: #d0e8ff; }
.ubwf .section-sub { color: #a8c4e0; }

.lifestyle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.lifestyle-card {
  padding: 1.5rem;
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: var(--vpwh-radius);
  background: rgba(255,255,255,0.06);
}
.lifestyle-icon { font-size: 1.3rem; margin-bottom: 0.5rem; }
.lifestyle-feature-img { border-radius: var(--vpwh-radius); overflow: hidden; }
.lifestyle-feature-img img { width: 100%; object-fit: cover; max-height: 400px; }

.section-ingredients { background: var(--vpwh-clr-bg-white); }
.ingredient-spotlight { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.ingredient-card {
  border: 2px dashed var(--vpwh-clr-border);
  border-radius: var(--vpwh-radius);
  overflow: hidden;
  background: var(--vpwh-clr-bg);
}
.ingredient-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ingredient-info { padding: 1.25rem; }
.ingredient-badge {
  display: inline-block;
  background: var(--vpwh-clr-sky-pale);
  color: var(--vpwh-clr-primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--vpwh-radius-sm);
  margin-top: 0.5rem;
  border: 1px solid var(--vpwh-clr-sky);
}
.ingredient-badge.efsa { background: #eaf5ea; color: #237a3a; border-color: #8bc48b; }

.ingredient-deep-grid { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
.ingredient-deep-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  border: 2px dashed var(--vpwh-clr-border);
  border-radius: var(--vpwh-radius);
  background: var(--vpwh-clr-bg-white);
}
.ingredient-deep-card img { border-radius: calc(var(--vpwh-radius) - 8px); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.claim-list { margin-top: 0.5rem; }
.claim-list li { color: var(--vpwh-clr-text-mid); font-size: 0.93rem; }

.table-heading { margin: 2rem 0 0.75rem; }
.nutrient-table-wrap { overflow-x: auto; margin-bottom: 1rem; }
.nutrient-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.nutrient-table th { background: var(--vpwh-clr-navy); color: #fff; padding: 0.65rem 1rem; text-align: left; font-family: var(--vpwh-ff-head); font-size: 0.88rem; }
.nutrient-table td { padding: 0.6rem 1rem; border-bottom: 1px solid var(--vpwh-clr-border); }
.nutrient-table tr:nth-child(even) td { background: var(--vpwh-clr-sky-pale); }
.nutrient-note { font-size: 0.8rem; color: var(--vpwh-clr-text-light); }

.sources-list { list-style: none; padding: 0; display: grid; gap: 0.75rem; }
.sources-list li {
  padding: 0.9rem 1.1rem;
  border: 2px dashed var(--vpwh-clr-border);
  border-radius: var(--vpwh-radius);
  background: var(--vpwh-clr-bg-white);
  font-size: 0.93rem;
}

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.review-card {
  padding: 1.5rem;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--vpwh-radius);
  background: rgba(255,255,255,0.07);
}
.review-stars { color: #f0c040; font-size: 1rem; margin-bottom: 0.5rem; }
.review-card p { color: #d0e4f5; font-style: italic; margin-bottom: 0.5rem; }
.review-meta { font-size: 0.82rem; color: #8ab0cc; }
.review-disclaimer { font-size: 0.8rem; color: #8ab0cc; }

.section-order { padding: 4rem 0; }
.order-split { display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: start; }
.order-perks { list-style: none; padding: 0; margin-bottom: 1.25rem; }
.order-perks li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: #cde3f5; font-size: 0.95rem; }
.perk-icon { color: #56c96e; font-weight: 700; flex-shrink: 0; }
.link-light { color: #7ec8f0; }
.order-legal { font-size: 0.78rem; color: #8ab0cc; }
.order-form-wrap { background: var(--vpwh-clr-bg-white); border-radius: var(--vpwh-radius); padding: 2rem; box-shadow: 0 8px 40px rgba(0,0,0,0.2); }
.order-price-badge { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.price-original { font-size: 1rem; color: var(--vpwh-clr-text-light); text-decoration: line-through; }
.price-current { font-family: var(--vpwh-ff-head); font-size: 2rem; font-weight: 700; color: var(--vpwh-clr-accent); }
.price-saving { background: #237a3a; color: #fff; font-size: 0.8rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: var(--vpwh-radius-sm); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--vpwh-clr-text-mid); margin-bottom: 0.3rem; }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 2px solid var(--vpwh-clr-border);
  border-radius: var(--vpwh-radius-sm);
  font-family: var(--vpwh-ff-body);
  font-size: 0.95rem;
  color: var(--vpwh-clr-text);
  background: var(--vpwh-clr-bg);
  transition: border-color var(--vpwh-transition);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--vpwh-clr-primary); }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; }
.form-check input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; width: 1.1rem; height: 1.1rem; accent-color: var(--vpwh-clr-primary); }
.form-check label { font-size: 0.82rem; color: var(--vpwh-clr-text-mid); font-weight: 400; }
.form-note { font-size: 0.8rem; color: var(--vpwh-clr-text-light); margin-top: 0.75rem; }

.uxed { background: var(--vpwh-clr-sky-pale); border: 2px dashed var(--vpwh-clr-sky); border-radius: var(--vpwh-radius); padding: 1.5rem; margin-bottom: 2rem; }
.calc-intro { font-size: 0.93rem; color: var(--vpwh-clr-text-mid); margin-bottom: 1rem; }
.calc-controls { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.calc-controls label { font-size: 0.88rem; font-weight: 700; color: var(--vpwh-clr-text-mid); }
.calc-controls input[type="number"] { width: 5rem; padding: 0.45rem 0.65rem; border: 2px solid var(--vpwh-clr-border); border-radius: var(--vpwh-radius-sm); font-size: 1rem; }
.calc-result { margin-top: 0.75rem; font-weight: 700; color: var(--vpwh-clr-primary); font-size: 1rem; min-height: 1.4em; }

.ujyj { margin-bottom: 2rem; }
.ujyj .tab-nav { display: flex; flex-wrap: wrap; gap: 0; border-bottom: 2px solid var(--vpwh-clr-border); margin-bottom: 1.5rem; }
.ujyj .tab-btn {
  background: none;
  border: none;
  padding: 0.65rem 1.1rem;
  font-family: var(--vpwh-ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vpwh-clr-text-mid);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--vpwh-transition), border-color var(--vpwh-transition);
}
.ujyj .tab-btn.active { color: var(--vpwh-clr-primary); border-bottom-color: var(--vpwh-clr-accent); }
.ujyj .tab-panel { display: none; }
.ujyj .tab-panel.active { display: block; }
.ujyj .tab-panel h3 { margin-top: 1rem; margin-bottom: 0.3rem; }
.ujyj .tab-panel h3:first-child { margin-top: 0; }

.faq-block { margin-bottom: 2rem; }
.faq-block h2 { margin-bottom: 1rem; }
.utir {
  border: 2px dashed var(--vpwh-clr-border);
  border-radius: var(--vpwh-radius);
  margin-bottom: 0.75rem;
  background: var(--vpwh-clr-bg-white);
  overflow: hidden;
}
.utir summary {
  padding: 0.9rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--vpwh-ff-head);
  font-size: 1rem;
  color: var(--vpwh-clr-navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utir summary::after { content: '+'; font-size: 1.2rem; color: var(--vpwh-clr-accent); flex-shrink: 0; }
.utir[open] summary::after { content: '−'; }
.utir p { padding: 0 1.1rem 1rem; color: var(--vpwh-clr-text-mid); font-size: 0.93rem; }

.cta-band { background: var(--vpwh-clr-sky-pale); border: 2px dashed var(--vpwh-clr-sky); border-radius: var(--vpwh-radius); padding: 2rem; text-align: center; margin-top: 2.5rem; }
.cta-band h2 { margin-bottom: 0.5rem; }
.cta-band p { color: var(--vpwh-clr-text-mid); margin-bottom: 1rem; }

.prose-list li { margin-bottom: 0.5rem; color: var(--vpwh-clr-text-mid); }
.drop-cap::first-letter {
  font-family: var(--vpwh-ff-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--vpwh-clr-accent);
  float: left;
  line-height: 0.8;
  margin: 0.05em 0.1em 0 0;
}
.article-figure { margin: 2rem 0; border-radius: var(--vpwh-radius); overflow: hidden; }
.article-figure img { width: 100%; object-fit: cover; max-height: 480px; }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.contact-detail { border: 2px dashed var(--vpwh-clr-border); border-radius: var(--vpwh-radius); padding: 1rem 1.25rem; margin-bottom: 0.75rem; display: flex; flex-direction: column; gap: 0.2rem; background: var(--vpwh-clr-bg-white); }
.contact-detail strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--vpwh-clr-text-light); }
.map-container { margin-top: 2rem; border-radius: var(--vpwh-radius); overflow: hidden; border: 2px solid var(--vpwh-clr-border); }
.map-container iframe { display: block; }

.thankyou-section { min-height: 60vh; display: flex; align-items: center; }
.thankyou-wrap { text-align: center; padding: 4rem 1rem; }
.thankyou-icon { font-size: 4rem; color: #237a3a; margin-bottom: 1rem; font-weight: 700; }
.error-icon { color: var(--vpwh-clr-accent); }
.thankyou-wrap h1 { margin-bottom: 1rem; }
.thankyou-wrap p { color: var(--vpwh-clr-text-mid); margin-bottom: 1rem; }
.thankyou-wrap .btn { margin-top: 1rem; }

.site-footer { background: var(--vpwh-clr-primary-dark); color: #cdddf0; padding: 3rem 0 1.5rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { font-family: var(--vpwh-ff-head); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; color: #9bbad4; line-height: 1.5; margin-bottom: 0.4rem; }
.footer-contact a { color: #7ec8f0; }
.footer-legal-id { font-size: 0.78rem; color: #7a9ab8; margin-top: 0.5rem; }
.footer-nav ul, .footer-legal ul { list-style: none; padding: 0; }
.footer-nav li, .footer-legal li { margin-bottom: 0.4rem; }
.footer-nav a, .footer-legal a { color: #9bbad4; font-size: 0.88rem; }
.footer-nav a:hover, .footer-legal a:hover { color: #fff; text-decoration: none; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; margin-top: 1rem; }
.footer-disclaimer p { font-size: 0.8rem; color: #7a9ab8; margin-bottom: 0.4rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; margin-top: 1.25rem; }
.footer-bottom p { font-size: 0.8rem; color: #607a90; text-align: center; }

.ubrw {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--vpwh-clr-primary-dark);
  color: #cdddf0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 2px solid var(--vpwh-clr-sky);
}
.ubrw.is-visible { transform: translateY(0); }
.cookie-banner__inner { max-width: var(--vpwh-container); margin: 0 auto; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: space-between; }
.cookie-banner__inner p { font-size: 0.88rem; margin: 0; }
.cookie-banner__inner a { color: #7ec8f0; }
.cookie-banner__actions { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.cookie-link { font-size: 0.82rem; color: #7ec8f0; white-space: nowrap; }

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .pack-img { max-width: 220px; margin: 0 auto; }
  .scorecard-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .scorecard-card > *:last-child { display: none; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .ingredient-spotlight { grid-template-columns: 1fr; }
  .ingredient-deep-card { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .order-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--vpwh-clr-bg-white); border-bottom: 2px solid var(--vpwh-clr-border); padding: 1rem; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0.5rem; }
  .uhgf { display: block; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ubrw{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}
.ubrw.is-visible,.cookie-banner--visible,.ubrw.show,.ubrw.active{transform:none !important}
.ubrw a{color:inherit;text-decoration:underline}
.ubrw button{cursor:pointer}
.uhrk{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}
.uhrk.is-visible,.cookie-modal--visible,.uhrk.show,.uhrk.active{display:flex !important}
.ucfq,.uhrk>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uezh .uiah,.uezh .uxed,.uezh .ujyj,.uezh .ubvh,.ubwf .uiah,.ubwf .uxed,.ubwf .ujyj,.ubwf .ubvh{background:#fff !important;color:#1a1a1a !important}
.uiah,.uxed{color:#1a1a1a !important}
.uiah label,.uxed label,.uiah p,.uxed p,.uiah .ugfj,.uiah span,.uxed span,.ueph,.unya,.ujyj .ujzq,.ujyj .ujzq *{color:#1a1a1a !important}
.ueph,.unya{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uiah .uqdy{color:#1a1a1a !important}
.uiah .uqdy.is-sel{color:#fff !important}
.umoa .uknu{display:none}
.umoa .uknu.is-visible{display:block !important;color:#c0392b}
.umoa .uknm,.umoa [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.umoa{color:#1a1a1a}
.uezh .umoa,.ubwf .umoa{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ulgh{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ulgh img{width:100%;height:100%;object-fit:cover}
.utfk,.ugkc{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.utfk img,.ugkc img{width:100%;height:100%;object-fit:cover;display:block}
.utfk img{opacity:.28}
.ugkc img{opacity:.07}
*:has(> .utfk),*:has(> .ugkc){position:relative}
.uemr{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)}
.uemr .uely{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uemr .uadr{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ugvg{margin:1.4rem auto;max-width:920px}
.ugvg img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ulgj{padding:3rem 0}
.uori{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uori img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ubvh{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ukuh{display:flex;overflow:hidden;gap:0 !important}
.ufdx{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ugjs{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}
.unrt{left:.5rem}.upow{right:.5rem}
.ujyj .ujzq{display:none}.ujyj .ujzq.is-active{display:block}
.uiah .uatx{display:block !important}
.uiah .usrn{display:flex;flex-wrap:wrap;gap:.5rem}
.uiah .uqdy{cursor:pointer}
