:root {
  --vgxk-c-primary: #6c1cd1;
  --vgxk-c-primary-dark: #2f016a;
  --vgxk-c-accent: #b9a6ff;
  --vgxk-c-accent-light: #e1d9ff;
  --vgxk-c-gold: #fff8cb;
  --vgxk-c-pink: #ffe8f9;
  --vgxk-c-dark: #0f0318;
  --vgxk-c-text: #1a1025;
  --vgxk-c-text-muted: #5a4d6b;
  --vgxk-c-bg: #fdf9f4;
  --vgxk-c-bg-cream: #faf5ee;
  --vgxk-c-bg-card: #ffffff;
  --vgxk-c-border: #e8e0f0;
  --vgxk-c-white: #ffffff;
  --vgxk-radius: 8px;
  --vgxk-radius-sm: 4px;
  --vgxk-shadow-elevated: 0 4px 24px rgba(108,28,209,0.10), 0 1px 4px rgba(108,28,209,0.06);
  --vgxk-shadow-hover: 0 8px 32px rgba(108,28,209,0.16), 0 2px 8px rgba(108,28,209,0.08);
  --vgxk-container: 960px;
  --vgxk-gap: 2rem;
  --vgxk-section-py: 5rem;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--vgxk-c-bg);
  color: var(--vgxk-c-text);
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--vgxk-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

a { color: var(--vgxk-c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--vgxk-c-primary); outline-offset: 3px; border-radius: var(--vgxk-radius-sm); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.22;
  color: var(--vgxk-c-text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

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

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

strong { font-weight: 700; color: var(--vgxk-c-primary-dark); }

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

.section-py { padding: var(--vgxk-section-py) 0; }

.udvq {
  background: var(--vgxk-c-primary-dark);
  color: var(--vgxk-c-white);
}
.udvq h2, .udvq h3, .udvq h4 { color: var(--vgxk-c-white); }
.udvq p, .udvq li { color: rgba(255,255,255,0.88); }
.udvq strong { color: var(--vgxk-c-gold); }
.udvq a { color: var(--vgxk-c-accent); }

.uypz {
  background: var(--vgxk-c-primary);
  color: var(--vgxk-c-white);
}
.uypz h2, .uypz h3 { color: var(--vgxk-c-white); }
.uypz p { color: rgba(255,255,255,0.92); }

.section-cream { background: var(--vgxk-c-bg-cream); }
.section-gold { background: var(--vgxk-c-gold); }
.section-pink { background: var(--vgxk-c-pink); }

.btn {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  text-decoration: none;
  padding: 0.78rem 1.7rem;
  border: 2px solid transparent;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--vgxk-c-primary);
  color: var(--vgxk-c-white);
  border-color: var(--vgxk-c-primary);
}
.btn-primary:hover { background: var(--vgxk-c-primary-dark); border-color: var(--vgxk-c-primary-dark); box-shadow: var(--vgxk-shadow-hover); }

.btn-ghost {
  background: transparent;
  color: var(--vgxk-c-primary);
  border-color: var(--vgxk-c-primary);
}
.btn-ghost:hover { background: var(--vgxk-c-accent-light); }

.btn-primary-inv {
  background: var(--vgxk-c-white);
  color: var(--vgxk-c-primary);
  border-color: var(--vgxk-c-white);
}
.btn-primary-inv:hover { background: var(--vgxk-c-gold); border-color: var(--vgxk-c-gold); }

.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }

.tag {
  display: inline-block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--vgxk-c-pink);
  color: var(--vgxk-c-primary);
  padding: 0.28rem 0.75rem;
  border-radius: var(--vgxk-radius-sm);
}

.tag-purple {
  background: var(--vgxk-c-accent-light);
  color: var(--vgxk-c-primary-dark);
}

.card {
  background: var(--vgxk-c-bg-card);
  border-radius: var(--vgxk-radius);
  box-shadow: var(--vgxk-shadow-elevated);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--vgxk-shadow-hover); transform: translateY(-2px); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--vgxk-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--vgxk-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--vgxk-gap); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  :root { --vgxk-section-py: 3rem; }
}
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.uodp {
  background: var(--vgxk-c-white);
  border-bottom: 1px solid var(--vgxk-c-border);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0.9rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--vgxk-c-primary-dark);
  text-decoration: none;
}
.site-logo:hover { text-decoration: none; }
.site-logo svg { flex-shrink: 0; }

.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vgxk-c-text-muted);
  padding: 0.45rem 0.8rem;
  border-radius: var(--vgxk-radius-sm);
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover { color: var(--vgxk-c-primary); background: var(--vgxk-c-accent-light); text-decoration: none; }

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--vgxk-c-primary);
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--vgxk-c-white);
    border-top: 1px solid var(--vgxk-c-border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    gap: 0.15rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.6rem 0; font-size: 1rem; }
  .menu-toggle { display: block; }
  .uodp { position: relative; }
}

.site-hero {
  background: var(--vgxk-c-bg-cream);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--vgxk-c-border);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-text { max-width: 580px; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.hero-byline {
  font-size: 0.85rem;
  color: var(--vgxk-c-text-muted);
}

.hero-h1 {
  margin-bottom: 1.2rem;
}

.hero-h1 em {
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--vgxk-c-primary);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--vgxk-c-text-muted);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.hero-cover {
  position: relative;
  border-radius: var(--vgxk-radius);
  overflow: hidden;
  box-shadow: var(--vgxk-shadow-elevated);
}

.hero-cover img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.hero-pack-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--vgxk-c-white);
  border-radius: var(--vgxk-radius);
  box-shadow: var(--vgxk-shadow-elevated);
  padding: 0.6rem;
  width: 90px;
}
.hero-pack-badge img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.ubhy {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url('images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }

.myths-section { background: var(--vgxk-c-bg); }

.myths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 640px) {
  .myths-grid { grid-template-columns: 1fr; }
}

.myth-card {
  background: var(--vgxk-c-bg-card);
  border-radius: var(--vgxk-radius);
  box-shadow: var(--vgxk-shadow-elevated);
  overflow: hidden;
}

.myth-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem 0.75rem;
}

.myth-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.myth-icon.myth { background: #ffeaea; color: #c0392b; }
.myth-icon.fact { background: #eafff1; color: #1a7a40; }

.myth-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.myth-label.myth { color: #c0392b; }
.myth-label.fact { color: #1a7a40; }

.myth-body { padding: 0 1.25rem 1.25rem; }
.myth-body p { font-size: 0.92rem; margin-bottom: 0; }

.tips-section { background: var(--vgxk-c-bg-cream); }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) { .tips-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tips-grid { grid-template-columns: 1fr; } }

.tip-card {
  background: var(--vgxk-c-bg-card);
  border-radius: var(--vgxk-radius);
  box-shadow: var(--vgxk-shadow-elevated);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--vgxk-radius);
  background: var(--vgxk-c-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.author-section { background: var(--vgxk-c-bg); }

.author-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .author-inner { grid-template-columns: 1fr; }
}

.author-bio-block {
  background: var(--vgxk-c-bg-card);
  border-radius: var(--vgxk-radius);
  box-shadow: var(--vgxk-shadow-elevated);
  padding: 2rem;
}

.author-initials {
  width: 64px;
  height: 64px;
  background: var(--vgxk-c-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--vgxk-c-primary);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.author-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.author-role { font-size: 0.82rem; color: var(--vgxk-c-text-muted); margin-bottom: 1rem; }

.brand-block {
  padding: 2rem;
  background: var(--vgxk-c-accent-light);
  border-radius: var(--vgxk-radius);
  border-left: 4px solid var(--vgxk-c-primary);
}

.sources-section { background: var(--vgxk-c-bg-cream); }

.sources-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sources-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--vgxk-c-bg-card);
  border-radius: var(--vgxk-radius);
  box-shadow: var(--vgxk-shadow-elevated);
  padding: 1.1rem 1.25rem;
  margin-bottom: 0;
}

.source-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--vgxk-c-primary);
  flex-shrink: 0;
  min-width: 24px;
}

.compare-section { background: var(--vgxk-c-bg); }

.compare-table-wrap { overflow-x: auto; margin-top: 2.5rem; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 560px;
}

.compare-table th {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  text-align: left;
  padding: 0.9rem 1rem;
  background: var(--vgxk-c-primary);
  color: var(--vgxk-c-white);
  border-right: 1px solid rgba(255,255,255,0.15);
}
.compare-table th:first-child { border-radius: var(--vgxk-radius) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--vgxk-radius) 0 0; border-right: none; }

.compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--vgxk-c-border);
  vertical-align: top;
  background: var(--vgxk-c-bg-card);
}

.compare-table tr:nth-child(even) td { background: var(--vgxk-c-bg-cream); }

.compare-table tr:last-child td:first-child { border-radius: 0 0 0 var(--vgxk-radius); }
.compare-table tr:last-child td:last-child { border-radius: 0 0 var(--vgxk-radius) 0; }

.compare-check { color: #1a7a40; font-weight: 700; }
.compare-cross { color: #c0392b; }

.stat-band {
  background: var(--vgxk-c-primary);
  padding: 4rem 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {}

.stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--vgxk-c-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.product-section { background: var(--vgxk-c-bg-cream); }

.product-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .product-inner { grid-template-columns: 1fr; }
}

.product-pack-wrap {
  position: sticky;
  top: 5rem;
}

.product-pack-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--vgxk-c-white);
  border-radius: var(--vgxk-radius);
  box-shadow: var(--vgxk-shadow-elevated);
  padding: 1.5rem;
  display: block;
}

.product-pack-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--vgxk-c-text-muted);
  margin-top: 0.75rem;
}

.nutrient-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin: 1.5rem 0; }
.nutrient-table th, .nutrient-table td { padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--vgxk-c-border); text-align: left; }
.nutrient-table th { background: var(--vgxk-c-accent-light); font-weight: 700; font-family: 'Bricolage Grotesque', sans-serif; }
.nutrient-table tr:last-child td { border-bottom: none; }

.efsa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--vgxk-c-gold);
  border: 1px solid rgba(108,28,209,0.2);
  border-radius: var(--vgxk-radius-sm);
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--vgxk-c-primary-dark);
  margin-bottom: 0.5rem;
  margin-right: 0.4rem;
}

.reviews-section { background: var(--vgxk-c-bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--vgxk-c-bg-card);
  border-radius: var(--vgxk-radius);
  box-shadow: var(--vgxk-shadow-elevated);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-stars { color: #f0a500; font-size: 1rem; letter-spacing: 0.05em; }

.review-text { font-size: 0.92rem; color: var(--vgxk-c-text-muted); font-style: italic; flex: 1; }

.review-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vgxk-c-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--vgxk-c-primary);
  flex-shrink: 0;
}

.review-name { font-size: 0.85rem; font-weight: 600; }
.review-location { font-size: 0.78rem; color: var(--vgxk-c-text-muted); }

.review-disclaimer {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--vgxk-c-bg-cream);
  border-radius: var(--vgxk-radius-sm);
  border-left: 3px solid var(--vgxk-c-accent);
  font-size: 0.82rem;
  color: var(--vgxk-c-text-muted);
}

.order-section { background: var(--vgxk-c-primary-dark); padding: var(--vgxk-section-py) 0; }
.order-section h2 { color: var(--vgxk-c-white); }

.order-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .order-inner { grid-template-columns: 1fr; }
}

.order-benefits { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.order-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.96rem;
}
.order-benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--vgxk-radius);
  background: rgba(185,166,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.price-display {
  margin-bottom: 1.5rem;
}
.price-original {
  text-decoration: line-through;
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
}
.price-current {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--vgxk-c-gold);
  line-height: 1;
}
.price-note { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }

.order-form-card {
  background: var(--vgxk-c-white);
  border-radius: var(--vgxk-radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  padding: 2rem;
}

.order-form-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  color: var(--vgxk-c-primary-dark);
}

.ugut .form-group {
  margin-bottom: 1rem;
}

.ugut label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--vgxk-c-text);
}

.ugut input[type="text"],
.ugut input[type="tel"] {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1.5px solid var(--vgxk-c-border);
  border-radius: var(--vgxk-radius-sm);
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  color: var(--vgxk-c-text);
  background: var(--vgxk-c-bg);
  transition: border-color 0.15s;
  appearance: none;
}

.ugut input:focus {
  outline: none;
  border-color: var(--vgxk-c-primary);
  background: var(--vgxk-c-white);
}

.ugut .honeypot { display: none !important; }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  font-size: 0.82rem;
  color: var(--vgxk-c-text-muted);
  line-height: 1.45;
}
.consent-row input[type="checkbox"] { margin-top: 0.15rem; flex-shrink: 0; accent-color: var(--vgxk-c-primary); }

.form-note { font-size: 0.78rem; color: var(--vgxk-c-text-muted); margin-top: 0.8rem; text-align: center; }

.calc-section { background: var(--vgxk-c-bg); }

.uqju {
  background: var(--vgxk-c-bg-card);
  border-radius: var(--vgxk-radius);
  box-shadow: var(--vgxk-shadow-elevated);
  padding: 2.5rem;
  max-width: 560px;
  margin: 2.5rem auto 0;
}

.uqju h3 { margin-bottom: 1.25rem; }

.calc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calc-label { font-size: 0.9rem; flex: 1; color: var(--vgxk-c-text-muted); font-weight: 500; }

.calc-input {
  width: 90px;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--vgxk-c-border);
  border-radius: var(--vgxk-radius-sm);
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  text-align: center;
  color: var(--vgxk-c-text);
  appearance: none;
  background: var(--vgxk-c-bg);
}
.calc-input:focus { outline: none; border-color: var(--vgxk-c-primary); background: var(--vgxk-c-white); }

.calc-result {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: var(--vgxk-c-accent-light);
  border-radius: var(--vgxk-radius);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vgxk-c-primary-dark);
  min-height: 52px;
  display: flex;
  align-items: center;
}

.tabs-section { background: var(--vgxk-c-bg-cream); }

.uofz { margin-top: 2.5rem; }

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--vgxk-c-border);
  overflow-x: auto;
}

.tab-btn {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.4rem;
  background: none;
  border: none;
  color: var(--vgxk-c-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.tab-btn.is-active, .tab-btn:hover {
  color: var(--vgxk-c-primary);
  border-bottom-color: var(--vgxk-c-primary);
}

.tab-panel { display: none; padding: 2rem 0 0; }
.tab-panel.is-active { display: block; }

.ingredient-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 560px) { .ingredient-list { grid-template-columns: 1fr; } }

.ingredient-item {
  background: var(--vgxk-c-bg-card);
  border-radius: var(--vgxk-radius);
  box-shadow: var(--vgxk-shadow-elevated);
  padding: 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.ingredient-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--vgxk-c-primary);
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.howto-steps { list-style: none; padding: 0; counter-reset: step-counter; }
.howto-steps li {
  counter-increment: step-counter;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.howto-steps li::before {
  content: counter(step-counter);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--vgxk-c-primary);
  min-width: 32px;
  line-height: 1.2;
  flex-shrink: 0;
}

.faq-list { margin-top: 0; }
.uzny {
  border-bottom: 1px solid var(--vgxk-c-border);
}
.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--vgxk-c-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.15s;
}
.faq-btn:hover { color: var(--vgxk-c-primary); }
.faq-btn-icon {
  font-size: 1.2rem;
  color: var(--vgxk-c-primary);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-style: normal;
}
.faq-btn[aria-expanded="true"] .faq-btn-icon { transform: rotate(45deg); }
.umrc {
  display: none;
  padding: 0 0 1.1rem;
  font-size: 0.93rem;
  color: var(--vgxk-c-text-muted);
  line-height: 1.65;
}
.umrc.is-open { display: block; }

.press-band {
  background: var(--vgxk-c-accent-light);
  padding: 2.5rem 0;
}

.press-quotes {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.press-quote {
  max-width: 280px;
  text-align: center;
}

.press-quote blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--vgxk-c-primary-dark);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.press-quote cite {
  font-size: 0.78rem;
  color: var(--vgxk-c-text-muted);
  font-style: normal;
  font-weight: 600;
}

.section-dark-final {
  background: var(--vgxk-c-dark);
  padding: var(--vgxk-section-py) 0;
}
.section-dark-final h2, .section-dark-final h3, .section-dark-final h4 { color: var(--vgxk-c-white); }
.section-dark-final p { color: rgba(255,255,255,0.75); }
.section-dark-final strong { color: var(--vgxk-c-accent); }

.footer-disclaimer {
  background: var(--vgxk-c-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 0;
}

.supplement-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.site-footer {
  background: var(--vgxk-c-primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 900px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand { }
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-logo-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--vgxk-c-white);
}

.footer-desc { font-size: 0.85rem; margin-bottom: 0.5rem; }

.footer-col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.9rem;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--vgxk-c-white); text-decoration: none; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--vgxk-c-white); }

.ufwx {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--vgxk-c-primary-dark);
  color: var(--vgxk-c-white);
  padding: 1.25rem 1.5rem;
  display: none;
  border-top: 2px solid var(--vgxk-c-primary);
}

.ufwx.is-visible { display: block; }

.cookie-inner {
  max-width: var(--vgxk-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.unqh { font-size: 0.85rem; flex: 1; min-width: 200px; line-height: 1.5; }
.unqh a { color: var(--vgxk-c-accent); }

.umij { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.cookie-settings-panel {
  display: none;
  background: var(--vgxk-c-white);
  color: var(--vgxk-c-text);
  border-top: 1px solid var(--vgxk-c-border);
  padding: 1.5rem;
}
.cookie-settings-panel.is-open { display: block; }

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--vgxk-c-border);
  font-size: 0.88rem;
}

.cookie-setting-row:last-child { border-bottom: none; }

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-slider::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: white;
  transition: transform 0.2s;
}
.cookie-toggle input:checked + .cookie-slider { background: var(--vgxk-c-primary); }
.cookie-toggle input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-slider { opacity: 0.6; cursor: not-allowed; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--vgxk-c-text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--vgxk-c-text-muted); }
.breadcrumb a:hover { color: var(--vgxk-c-primary); }
.breadcrumb-sep { color: var(--vgxk-c-border); }

.lifestyle-img-wrap {
  border-radius: var(--vgxk-radius);
  overflow: hidden;
  box-shadow: var(--vgxk-shadow-elevated);
}
.lifestyle-img-wrap img { width: 100%; object-fit: cover; display: block; }

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 768px) { .split-block { grid-template-columns: 1fr; } }

.ingredient-img-wrap {
  border-radius: var(--vgxk-radius);
  overflow: hidden;
  box-shadow: var(--vgxk-shadow-elevated);
}
.ingredient-img-wrap img { width: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vgxk-c-text-muted);
  margin-bottom: 0.6rem;
}

@media print {
  .ufwx, .uodp, .menu-toggle { display: none !important; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ufwx{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}
.ufwx.is-visible,.cookie-banner--visible,.ufwx.show,.ufwx.active{transform:none !important}
.ufwx a{color:inherit;text-decoration:underline}
.ufwx button{cursor:pointer}
.uriz{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}
.uriz.is-visible,.cookie-modal--visible,.uriz.show,.uriz.active{display:flex !important}
.ulxj,.uriz>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}
.udvq .ubna,.udvq .uqju,.udvq .uofz,.udvq .upef,.uypz .ubna,.uypz .uqju,.uypz .uofz,.uypz .upef{background:#fff !important;color:#1a1a1a !important}
.ubna,.uqju{color:#1a1a1a !important}
.ubna label,.uqju label,.ubna p,.uqju p,.ubna .ulol,.ubna span,.uqju span,.ucbr,.ufbo,.uofz .uglq,.uofz .uglq *{color:#1a1a1a !important}
.ucbr,.ufbo{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ubna .uhbc{color:#1a1a1a !important}
.ubna .uhbc.is-sel{color:#fff !important}
.ugut .unib{display:none}
.ugut .unib.is-visible{display:block !important;color:#c0392b}
.ugut .upyl,.ugut [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ugut{color:#1a1a1a}
.udvq .ugut,.uypz .ugut{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uhaw{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uhaw img{width:100%;height:100%;object-fit:cover}
.ubhy,.umfn{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ubhy img,.umfn img{width:100%;height:100%;object-fit:cover;display:block}
.ubhy img{opacity:.28}
.umfn img{opacity:.07}
*:has(> .ubhy),*:has(> .umfn){position:relative}
.ummg{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)}
.ummg .unoi{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ummg .umri{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uivj{margin:1.4rem auto;max-width:920px}
.uivj img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ujgf{padding:3rem 0}
.uqub{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uqub img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.upef{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ucrt{display:flex;overflow:hidden;gap:0 !important}
.uyph{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uksw{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}
.uqhi{left:.5rem}.uxen{right:.5rem}
.uofz .uglq{display:none}.uofz .uglq.is-active{display:block}
.ubna .uxor{display:block !important}
.ubna .ujax{display:flex;flex-wrap:wrap;gap:.5rem}
.ubna .uhbc{cursor:pointer}
