:root {
  --vyxc-c-purple: #6c1cd1;
  --vyxc-c-purple-dark: #2f016a;
  --vyxc-c-purple-light: #e1d9ff;
  --vyxc-c-purple-mid: #b9a6ff;
  --vyxc-c-cream: #fdf8f2;
  --vyxc-c-paper: #f7f2ea;
  --vyxc-c-ink: #1a1218;
  --vyxc-c-ink-soft: #3d2f50;
  --vyxc-c-white: #ffffff;
  --vyxc-c-border: #e8e0f5;
  --vyxc-c-accent-warm: #fff8cb;
  --vyxc-c-trust-dark: #18102a;
  --vyxc-c-footer-dark: #12091f;
  --vyxc-r: 12px;
  --vyxc-container: 960px;
  --vyxc-gap: 2rem;
  --vyxc-font: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--vyxc-font);
  background: var(--vyxc-c-cream);
  color: var(--vyxc-c-ink);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

a { color: var(--vyxc-c-purple); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }

.uxir {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--vyxc-c-purple-dark);
  color: var(--vyxc-c-white);
  z-index: 9999;
  padding: 1rem 1.5rem;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.uxir.is-visible { display: block; }
.cookie-banner__inner {
  max-width: var(--vyxc-container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner__text { flex: 1 1 300px; font-size: 0.9rem; }
.cookie-banner__text a { color: var(--vyxc-c-purple-light); }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--vyxc-c-purple);
  color: var(--vyxc-c-white);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--vyxc-font);
  font-weight: 600;
  font-size: 0.875rem;
}
.btn-cookie-accept:hover { background: #7d2de8; }
.btn-cookie-reject {
  background: transparent;
  color: var(--vyxc-c-purple-light);
  border: 1px solid var(--vyxc-c-purple-mid);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--vyxc-font);
  font-size: 0.875rem;
}
.btn-cookie-reject:hover { background: rgba(255,255,255,0.05); }
.btn-cookie-settings { color: var(--vyxc-c-purple-light); font-size: 0.85rem; align-self: center; }

.ugtw {
  background: var(--vyxc-c-white);
  border-bottom: 1px solid var(--vyxc-c-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.site-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--vyxc-c-purple-dark);
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-decoration: none;
}
.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--vyxc-c-ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.site-nav a:hover { color: var(--vyxc-c-purple); }
.site-nav a[aria-current="page"] { color: var(--vyxc-c-purple); font-weight: 700; }
.nav-cta {
  background: var(--vyxc-c-purple);
  color: var(--vyxc-c-white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #7d2de8; text-decoration: none !important; }

.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb ol { display: flex; gap: 0.5rem; list-style: none; font-size: 0.82rem; color: var(--vyxc-c-ink-soft); flex-wrap: wrap; }
.breadcrumb ol li::after { content: '›'; margin-left: 0.5rem; }
.breadcrumb ol li:last-child::after { content: ''; }
.breadcrumb ol li a { color: var(--vyxc-c-ink-soft); }
.breadcrumb ol li[aria-current] { color: var(--vyxc-c-purple); font-weight: 600; }

.hero-minimal {
  position: relative;
  padding: 5rem 0 4rem;
  background: var(--vyxc-c-paper);
  overflow: hidden;
}
.hero-bg-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-decor img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.08;
}
.hero-minimal .container { position: relative; z-index: 1; }
.hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vyxc-c-purple);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--vyxc-c-purple-dark);
  max-width: 620px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.hero-title em {
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--vyxc-c-purple);
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--vyxc-c-ink-soft);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--vyxc-c-purple);
  color: var(--vyxc-c-white);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--vyxc-font);
  transition: background 0.2s;
}
.btn-primary:hover { background: #7d2de8; text-decoration: none; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--vyxc-c-purple);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--vyxc-c-purple);
  transition: background 0.2s;
}
.btn-ghost:hover { background: var(--vyxc-c-purple-light); text-decoration: none; }

.trust-ribbon {
  padding: 1rem 0;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  list-style: none;
  justify-content: center;
  align-items: center;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--vyxc-c-purple-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.chip-icon {
  color: var(--vyxc-c-purple-mid);
  font-size: 0.7rem;
}

.uldd {
  background: var(--vyxc-c-trust-dark);
  color: var(--vyxc-c-white);
}
.uenh {
  background: var(--vyxc-c-purple-dark);
  color: var(--vyxc-c-white);
}

.section-sources { padding: 5rem 0; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--vyxc-c-purple-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.section-intro {
  color: var(--vyxc-c-ink-soft);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.source-card {
  background: var(--vyxc-c-white);
  border-radius: var(--vyxc-r);
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(108,28,209,0.08);
}
.source-tag {
  display: inline-block;
  background: var(--vyxc-c-purple-light);
  color: var(--vyxc-c-purple-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.source-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--vyxc-c-purple-dark); }
.source-card p { font-size: 0.88rem; color: var(--vyxc-c-ink-soft); margin-bottom: 0.75rem; }
.source-link { font-size: 0.85rem; font-weight: 600; color: var(--vyxc-c-purple); }

.section-checklist { padding: 5rem 0; background: var(--vyxc-c-paper); }
.checklist-wrapper { max-width: 600px; }
.interactive-checklist { list-style: none; margin-bottom: 1.5rem; }
.checklist-item { margin-bottom: 0.75rem; }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--vyxc-c-ink);
}
.check-input { display: none; }
.check-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--vyxc-c-purple-mid);
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--vyxc-c-white);
  transition: background 0.15s, border-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-input:checked + .check-box {
  background: var(--vyxc-c-purple);
  border-color: var(--vyxc-c-purple);
}
.check-input:checked + .check-box::after {
  content: '✓';
  color: white;
  font-size: 13px;
  font-weight: 700;
}
.check-input:checked ~ .check-text { color: var(--vyxc-c-ink-soft); text-decoration: line-through; }
.checklist-progress { margin-top: 1.5rem; }
.progress-bar-wrap {
  height: 8px;
  background: var(--vyxc-c-purple-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.progress-bar-fill {
  height: 100%;
  background: var(--vyxc-c-purple);
  border-radius: 8px;
  transition: width 0.3s ease;
}
.progress-label { font-size: 0.85rem; color: var(--vyxc-c-ink-soft); font-weight: 600; }
.checklist-lifestyle-img {
  margin-top: 3rem;
  border-radius: var(--vyxc-r);
  overflow: hidden;
}
.checklist-lifestyle-img img { width: 100%; height: auto; }

.section-about { padding: 5rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.about-lead { font-size: 1.05rem; font-weight: 600; color: var(--vyxc-c-ink); margin-bottom: 1rem; }
.about-text p { color: var(--vyxc-c-ink-soft); margin-bottom: 1rem; font-size: 0.95rem; }
.author-bio-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--vyxc-c-purple-light);
  border-radius: var(--vyxc-r);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}
.author-avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--vyxc-c-purple);
  color: var(--vyxc-c-white);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-bio-text strong { display: block; font-size: 0.95rem; color: var(--vyxc-c-purple-dark); }
.author-bio-text span { font-size: 0.8rem; color: var(--vyxc-c-ink-soft); }
.about-active-img { border-radius: var(--vyxc-r); overflow: hidden; }
.about-active-img img { width: 100%; height: 100%; object-fit: cover; }

.section-faq { padding: 5rem 0; background: var(--vyxc-c-paper); }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.utud {
  background: var(--vyxc-c-white);
  border-radius: var(--vyxc-r);
  border: 1px solid var(--vyxc-c-border);
  overflow: hidden;
}
.uktz {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--vyxc-c-purple-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.uktz::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--vyxc-c-purple); }
details[open] .uktz::after { content: '−'; }
.ueqt { padding: 0 1.25rem 1.1rem; font-size: 0.9rem; color: var(--vyxc-c-ink-soft); line-height: 1.7; }
.ueqt p { margin-bottom: 0.5rem; }

.section-ingredients { padding: 5rem 0; }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.ingredient-card {
  background: var(--vyxc-c-white);
  border-radius: var(--vyxc-r);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(108,28,209,0.07);
}
.ingredient-img-wrap { aspect-ratio: 4/3; overflow: hidden; background: var(--vyxc-c-purple-light); }
.ingredient-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ingredient-img-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--vyxc-c-purple-dark), var(--vyxc-c-purple));
}
.nutrient-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--vyxc-c-white);
}
.nutrient-letter { font-size: 3rem; font-weight: 800; line-height: 1; }
.nutrient-name { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; margin-top: 0.25rem; }
.nutrient-b6 { background: linear-gradient(135deg, #3d006b, #8a3df0); }
.ingredient-body { padding: 1.25rem; }
.ingredient-body h3 { font-size: 1rem; color: var(--vyxc-c-purple-dark); margin-bottom: 0.5rem; }
.ingredient-body p { font-size: 0.87rem; color: var(--vyxc-c-ink-soft); line-height: 1.6; }
.efsa-badge {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--vyxc-c-purple-light);
  color: var(--vyxc-c-purple-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.nutrition-table-wrap { margin-bottom: 2.5rem; }
.table-title { font-size: 1rem; font-weight: 700; color: var(--vyxc-c-purple-dark); margin-bottom: 0.75rem; }
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--vyxc-c-white);
  border-radius: var(--vyxc-r);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.nutrition-table th {
  background: var(--vyxc-c-purple-dark);
  color: var(--vyxc-c-white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.nutrition-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--vyxc-c-border);
  color: var(--vyxc-c-ink);
}
.nutrition-table tr:last-child td { border-bottom: none; }
.nutrition-table tfoot td {
  font-size: 0.78rem;
  color: var(--vyxc-c-ink-soft);
  padding: 0.5rem 1rem;
  background: var(--vyxc-c-paper);
}
.supplement-disclaimer-inline {
  font-size: 0.78rem;
  color: var(--vyxc-c-ink-soft);
  margin-top: 0.5rem;
  font-style: italic;
}

.section-order { padding: 5rem 0; }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.order-pack-col { display: flex; flex-direction: column; gap: 1.5rem; }
.product-pack-wrap, .pack-detail-wrap {
  border-radius: var(--vyxc-r);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.product-pack-wrap img, .pack-detail-wrap img {
  width: 100%; height: auto;
  border-radius: var(--vyxc-r);
}
.order-form-col { }
.order-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--vyxc-c-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.price-current { font-size: 2.2rem; font-weight: 800; color: var(--vyxc-c-white); }
.price-old { font-size: 1rem; color: var(--vyxc-c-purple-mid); text-decoration: line-through; }
.price-badge {
  background: var(--vyxc-c-accent-warm);
  color: #7a4500;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.order-perks {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.order-perks li {
  font-size: 0.88rem;
  color: var(--vyxc-c-purple-light);
  padding-left: 1.2rem;
  position: relative;
}
.order-perks li::before { content: '✓'; position: absolute; left: 0; color: var(--vyxc-c-purple-mid); font-weight: 700; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--vyxc-c-purple-light); margin-bottom: 0.35rem; }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  border: 1.5px solid rgba(185,166,255,0.3);
  background: rgba(255,255,255,0.07);
  color: var(--vyxc-c-white);
  font-family: var(--vyxc-font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--vyxc-c-purple-mid); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-consent { }
.consent-label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--vyxc-c-purple-light);
  cursor: pointer;
  line-height: 1.5;
}
.consent-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--vyxc-c-purple); }
.consent-label a { color: var(--vyxc-c-purple-mid); }
.btn-order {
  width: 100%;
  background: var(--vyxc-c-cream);
  color: var(--vyxc-c-purple-dark);
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 4px;
  font-family: var(--vyxc-font);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.btn-order:hover { background: var(--vyxc-c-white); }
.order-legal { font-size: 0.76rem; color: rgba(185,166,255,0.6); margin-top: 0.75rem; line-height: 1.5; }
.order-legal a { color: var(--vyxc-c-purple-mid); }

.section-reviews { padding: 5rem 0; background: var(--vyxc-c-paper); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.review-card {
  background: var(--vyxc-c-white);
  border-radius: var(--vyxc-r);
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(108,28,209,0.06);
}
.review-stars { margin-bottom: 0.75rem; }
.review-stars img { height: 20px; width: auto; }
.review-text p { font-size: 0.9rem; color: var(--vyxc-c-ink); line-height: 1.65; font-style: italic; }
.review-author { display: block; margin-top: 0.75rem; font-size: 0.8rem; font-weight: 700; color: var(--vyxc-c-purple-dark); }
.review-disclaimer {
  font-size: 0.78rem;
  color: var(--vyxc-c-ink-soft);
  font-style: italic;
  max-width: 640px;
  line-height: 1.6;
}

.section-calc-gallery { padding: 5rem 0; }
.calc-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.uihh { }
.calc-field { margin-bottom: 1rem; }
.calc-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--vyxc-c-ink-soft); margin-bottom: 0.35rem; }
.calc-input {
  width: 100%;
  max-width: 180px;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  border: 1.5px solid var(--vyxc-c-border);
  font-family: var(--vyxc-font);
  font-size: 0.95rem;
  color: var(--vyxc-c-ink);
  background: var(--vyxc-c-white);
  outline: none;
}
.calc-input:focus { border-color: var(--vyxc-c-purple-mid); }
.btn-calc {
  background: var(--vyxc-c-purple);
  color: var(--vyxc-c-white);
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  font-family: var(--vyxc-font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 0.25rem;
}
.btn-calc:hover { background: #7d2de8; }
.calc-result {
  margin-top: 1.25rem;
  background: var(--vyxc-c-purple-light);
  border-radius: var(--vyxc-r);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--vyxc-c-purple-dark);
  display: none;
  line-height: 1.6;
}

.mosaic-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.mosaic-item { border-radius: var(--vyxc-r); overflow: hidden; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mosaic-large { grid-column: 1 / 3; }
.mosaic-small { }
.mosaic-medium { }

.site-footer { }
.footer-top { padding: 3rem 0 2rem; }
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--vyxc-c-white);
  margin-bottom: 0.75rem;
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 0.75rem; line-height: 1.6; }
.footer-operator { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; }
.footer-email { font-size: 0.85rem; }
.footer-email a { color: var(--vyxc-c-purple-light); }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: var(--vyxc-c-purple-light); text-decoration: none; }
.footer-bottom {
  background: var(--vyxc-c-footer-dark);
  padding: 1.25rem 0;
}
.supplement-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.page-hero { padding: 3.5rem 0 2.5rem; background: var(--vyxc-c-paper); }
.page-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--vyxc-c-purple-dark);
  max-width: 620px;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.page-title em {
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--vyxc-c-purple);
}
.page-lead { font-size: 1rem; color: var(--vyxc-c-ink-soft); max-width: 540px; line-height: 1.7; }

.section-ingredients-detail { padding: 4rem 0; }
.ingredient-detail-list { display: flex; flex-direction: column; gap: 2.5rem; margin-bottom: 3rem; }
.ingredient-detail-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--vyxc-c-white);
  border-radius: var(--vyxc-r);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(108,28,209,0.06);
}
.idc-img { aspect-ratio: 4/3; overflow: hidden; background: var(--vyxc-c-purple-light); }
.idc-img img { width: 100%; height: 100%; object-fit: cover; }
.idc-stat-bg {
  background: linear-gradient(135deg, var(--vyxc-c-purple-dark), var(--vyxc-c-purple));
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
}
.idc-zinc { background: linear-gradient(135deg, #1a0540, #6c1cd1); }
.idc-b6 { background: linear-gradient(135deg, #3d006b, #8a3df0); }
.big-stat-nutrient {
  display: flex; flex-direction: column; align-items: center;
  color: var(--vyxc-c-white);
}
.bsn-symbol { font-size: 3.5rem; font-weight: 800; line-height: 1; }
.bsn-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; margin-top: 0.25rem; }
.bsn-value { font-size: 0.85rem; font-weight: 700; opacity: 0.9; margin-top: 0.5rem; }
.idc-body { padding: 1.75rem 1.75rem 1.75rem 0; }
.idc-body h2 { font-size: 1.2rem; color: var(--vyxc-c-purple-dark); margin: 0.5rem 0 0.75rem; }
.idc-body p { font-size: 0.9rem; color: var(--vyxc-c-ink-soft); margin-bottom: 0.75rem; line-height: 1.65; }
.efsa-tag {
  display: inline-block;
  background: var(--vyxc-c-purple-light);
  color: var(--vyxc-c-purple-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.efsa-approved { background: var(--vyxc-c-purple); color: var(--vyxc-c-white); }
.ingredients-mosaic-bottom { border-radius: var(--vyxc-r); overflow: hidden; margin-bottom: 2.5rem; }
.ingredients-mosaic-bottom img { width: 100%; height: auto; }
.cta-block {
  background: var(--vyxc-c-purple-light);
  border-radius: var(--vyxc-r);
  padding: 2rem;
  text-align: center;
}
.cta-block h3 { font-size: 1.3rem; color: var(--vyxc-c-purple-dark); margin-bottom: 0.5rem; }
.cta-block p { color: var(--vyxc-c-ink-soft); margin-bottom: 1.25rem; font-size: 0.9rem; }

.section-reviews-full { padding: 4rem 0; }
.rating-summary {
  text-align: center;
  margin-bottom: 2.5rem;
  background: var(--vyxc-c-white);
  border-radius: var(--vyxc-r);
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(108,28,209,0.06);
}
.rating-big { font-size: 3.5rem; font-weight: 800; color: var(--vyxc-c-purple-dark); line-height: 1; }
.rating-stars-row { margin: 0.5rem 0; display: flex; justify-content: center; }
.rating-stars-row img { height: 28px; width: auto; }
.rating-count { font-size: 0.85rem; color: var(--vyxc-c-ink-soft); }
.reviews-long-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
.review-card-full {
  background: var(--vyxc-c-white);
  border-radius: var(--vyxc-r);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(108,28,209,0.05);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.review-header img { height: 18px; width: auto; }
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--vyxc-c-purple-dark); }
.review-date { font-size: 0.78rem; color: var(--vyxc-c-ink-soft); margin-left: auto; }
.review-card-full blockquote p { font-size: 0.92rem; color: var(--vyxc-c-ink); font-style: italic; line-height: 1.65; }
.review-disclaimer-prominent {
  font-size: 0.8rem;
  color: var(--vyxc-c-ink-soft);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--vyxc-c-paper);
  border-radius: var(--vyxc-r);
  border-left: 3px solid var(--vyxc-c-purple-light);
}

.sources-article { max-width: 720px; }
.sources-article h2 { font-size: 1.3rem; color: var(--vyxc-c-purple-dark); margin: 2rem 0 0.5rem; }
.sources-article p { font-size: 0.92rem; color: var(--vyxc-c-ink-soft); margin-bottom: 0.75rem; line-height: 1.7; }
.sources-article a { color: var(--vyxc-c-purple); font-weight: 600; }
.section-sources-full { padding: 4rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-col h2, .contact-info-col h2 { font-size: 1.3rem; color: var(--vyxc-c-purple-dark); margin-bottom: 1.25rem; }
.ujxi .form-group input,
.ujxi .form-group textarea {
  background: var(--vyxc-c-white);
  color: var(--vyxc-c-ink);
  border-color: var(--vyxc-c-border);
}
.ujxi .form-group input::placeholder,
.ujxi .form-group textarea::placeholder { color: #aaa; }
.ujxi .form-group label { color: var(--vyxc-c-ink-soft); }
.ujxi .consent-label { color: var(--vyxc-c-ink-soft); }
.ujxi .consent-label a { color: var(--vyxc-c-purple); }
.contact-info-block { margin-bottom: 1.5rem; }
.contact-info-block p { font-size: 0.9rem; color: var(--vyxc-c-ink-soft); margin-bottom: 0.35rem; }
.map-container { border-radius: var(--vyxc-r); overflow: hidden; }
.section-contact { padding: 4rem 0; }

.legal-page { padding: 4rem 0; }
.legal-page h1 { font-size: 2rem; color: var(--vyxc-c-purple-dark); margin-bottom: 0.5rem; }
.legal-updated { font-size: 0.82rem; color: var(--vyxc-c-ink-soft); margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.1rem; color: var(--vyxc-c-purple-dark); margin: 1.75rem 0 0.5rem; }
.legal-page h3 { font-size: 0.95rem; color: var(--vyxc-c-ink); margin: 1.25rem 0 0.4rem; }
.legal-page p { font-size: 0.9rem; color: var(--vyxc-c-ink-soft); margin-bottom: 0.75rem; line-height: 1.7; }
.legal-page ul { margin: 0 0 0.75rem 1.25rem; }
.legal-page ul li { font-size: 0.9rem; color: var(--vyxc-c-ink-soft); margin-bottom: 0.4rem; line-height: 1.6; }
.legal-page a { color: var(--vyxc-c-purple); }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 0.75rem 0 1.5rem;
}
.cookie-table th { background: var(--vyxc-c-purple-light); color: var(--vyxc-c-purple-dark); padding: 0.5rem 0.75rem; text-align: left; font-weight: 700; }
.cookie-table td { padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--vyxc-c-border); color: var(--vyxc-c-ink-soft); }

.thankyou-page { padding: 6rem 0; }
.thankyou-inner { text-align: center; }
.thankyou-icon {
  width: 72px; height: 72px;
  background: var(--vyxc-c-purple);
  color: var(--vyxc-c-white);
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.thankyou-inner h1 { font-size: 2rem; color: var(--vyxc-c-purple-dark); margin-bottom: 1rem; }
.thankyou-inner p { font-size: 0.95rem; color: var(--vyxc-c-ink-soft); margin-bottom: 0.75rem; line-height: 1.7; }
.thankyou-inner .btn-primary { margin-top: 1.25rem; }

.error-page { padding: 6rem 0; }
.error-inner { text-align: center; }
.error-code { font-size: 6rem; font-weight: 800; color: var(--vyxc-c-purple-light); line-height: 1; margin-bottom: 0.5rem; }
.error-inner h1 { font-size: 2rem; color: var(--vyxc-c-purple-dark); margin-bottom: 0.75rem; }
.error-inner p { color: var(--vyxc-c-ink-soft); margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-active-img { display: none; }
  .order-grid { grid-template-columns: 1fr; }
  .order-pack-col { flex-direction: row; }
  .product-pack-wrap, .pack-detail-wrap { flex: 1; }
  .calc-gallery-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-cols .footer-col:first-child { grid-column: 1 / 3; }
  .contact-grid { grid-template-columns: 1fr; }
  .ingredient-detail-card { grid-template-columns: 1fr; }
  .idc-body { padding: 1.25rem; }
  .site-nav { gap: 0.75rem; }
  .site-nav a:not(.nav-cta) { display: none; }
  .mosaic-large { grid-column: 1 / 3; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-cols .footer-col:first-child { grid-column: 1; }
  .order-pack-col { flex-direction: column; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uxir{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}
.uxir.is-visible,.cookie-banner--visible,.uxir.show,.uxir.active{transform:none !important}
.uxir a{color:inherit;text-decoration:underline}
.uxir button{cursor:pointer}
.ubiq{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}
.ubiq.is-visible,.cookie-modal--visible,.ubiq.show,.ubiq.active{display:flex !important}
.utxe,.ubiq>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uldd .uxyj,.uldd .uihh,.uldd .ughd,.uldd .uxeh,.uenh .uxyj,.uenh .uihh,.uenh .ughd,.uenh .uxeh{background:#fff !important;color:#1a1a1a !important}
.uxyj,.uihh{color:#1a1a1a !important}
.uxyj label,.uihh label,.uxyj p,.uihh p,.uxyj .udyr,.uxyj span,.uihh span,.ugpn,.uxvg,.ughd .uueb,.ughd .uueb *{color:#1a1a1a !important}
.ugpn,.uxvg{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uxyj .uvpy{color:#1a1a1a !important}
.uxyj .uvpy.is-sel{color:#fff !important}
.uquk .ufcg{display:none}
.uquk .ufcg.is-visible{display:block !important;color:#c0392b}
.uquk .unkj,.uquk [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uquk{color:#1a1a1a}
.uldd .uquk,.uenh .uquk{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uzbj{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uzbj img{width:100%;height:100%;object-fit:cover}
.ujey,.ugng{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ujey img,.ugng img{width:100%;height:100%;object-fit:cover;display:block}
.ujey img{opacity:.28}
.ugng img{opacity:.07}
*:has(> .ujey),*:has(> .ugng){position:relative}
.ukbt{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)}
.ukbt .uzrr{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ukbt .ugkw{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.usdb{margin:1.4rem auto;max-width:920px}
.usdb img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.utnt{padding:3rem 0}
.uelm{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uelm img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uxeh{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uezt{display:flex;overflow:hidden;gap:0 !important}
.umdd{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uens{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}
.uclh{left:.5rem}.uvau{right:.5rem}
.ughd .uueb{display:none}.ughd .uueb.is-active{display:block}
.uxyj .ubrg{display:block !important}
.uxyj .urjr{display:flex;flex-wrap:wrap;gap:.5rem}
.uxyj .uvpy{cursor:pointer}
