:root {
  --vunj-accent: #3558f6;
  --vunj-accent-dark: #1f3fd4;
  --vunj-accent-soft: #e8eeff;
  --vunj-accent-red: #cc0018;
  --vunj-dark: #2b2928;
  --vunj-dark-band: #1e1d1c;
  --vunj-text: #1a1918;
  --vunj-text-muted: #5a5855;
  --vunj-bg: #f4f7ff;
  --vunj-bg-tinted: #eef2fc;
  --vunj-white: #ffffff;
  --vunj-radius: 4px;
  --vunj-container: 1080px;
  --vunj-gap: 2rem;
  --vunj-font: 'Outfit', sans-serif;
  --vunj-transition: 0.2s ease;
}

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

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

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

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

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

a { color: var(--vunj-accent); text-decoration: none; transition: color var(--vunj-transition); }
a:hover { color: var(--vunj-accent-dark); }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }

.h1-marker {
  position: relative;
  display: inline;
}
.h1-marker::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 4px;
  background: var(--vunj-accent);
  border-radius: 2px;
}

.h2-accent { color: var(--vunj-accent); }
.h2-accent-light { color: #a5baff; }

.chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--vunj-radius);
  border: 1.5px solid currentColor;
}
.chip--accent { color: var(--vunj-accent); border-color: var(--vunj-accent); background: var(--vunj-accent-soft); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--vunj-text-muted);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--vunj-text-muted); }
.breadcrumb a:hover { color: var(--vunj-accent); }

.section {
  padding: 4rem 0;
}
.section--light { background: var(--vunj-white); }
.section--tinted { background: var(--vunj-bg-tinted); }
.udcm, .stat-band {
  background: var(--vunj-dark-band);
  color: var(--vunj-white);
  padding: 4rem 0;
}
.section__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}
.section__title--light { color: var(--vunj-white); }
.section__lead {
  font-size: 1.05rem;
  color: var(--vunj-text-muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.accent-band {
  height: 5px;
  background: var(--vunj-accent);
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--vunj-font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--vunj-radius);
  cursor: pointer;
  transition: all var(--vunj-transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--vunj-accent);
  color: var(--vunj-white);
  border-color: var(--vunj-accent);
}
.btn--primary:hover { background: var(--vunj-accent-dark); border-color: var(--vunj-accent-dark); color: var(--vunj-white); }
.btn--outline {
  background: transparent;
  color: var(--vunj-accent);
  border-color: var(--vunj-accent);
}
.btn--outline:hover { background: var(--vunj-accent-soft); }
.btn--ghost {
  background: transparent;
  color: var(--vunj-text-muted);
  border-color: var(--vunj-text-muted);
}
.btn--ghost:hover { background: rgba(0,0,0,0.05); }
.btn--sm { padding: 0.4rem 0.9rem; font-size: 0.85rem; }
.btn--lg { padding: 0.85rem 2rem; font-size: 1.05rem; width: 100%; margin-top: 0.5rem; }

.unzj {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vunj-white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--vunj-dark);
  letter-spacing: -0.02em;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.site-header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vunj-text-muted);
}
.site-header__nav a:hover, .site-header__nav a[aria-current="page"] { color: var(--vunj-accent); }
.site-header__cta { margin-left: 0.5rem; }
.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vunj-dark);
  border-radius: 2px;
  transition: all var(--vunj-transition);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--vunj-dark);
}
.hero__bg-wrap {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,26,25,0.82) 0%, rgba(27,26,25,0.45) 60%, rgba(27,26,25,0.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.25rem;
  max-width: 680px;
}
.hero__content .breadcrumb a { color: rgba(255,255,255,0.6); }
.hero__content .breadcrumb { color: rgba(255,255,255,0.6); }
.hero__content .chip--accent { background: rgba(53,88,246,0.2); border-color: var(--vunj-accent); color: #a5baff; }
.hero__h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--vunj-white);
  margin: 0.75rem 0 0.6rem;
  line-height: 1.15;
}
.hero__h1 .h1-marker::after { background: var(--vunj-accent); }
.hero__byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.byline__author { font-weight: 600; }
.hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.7;
}

.page-hero {
  background: var(--vunj-dark);
  padding: 3rem 0 2.5rem;
}
.page-hero--editorial { background: var(--vunj-dark); }
.page-hero__h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--vunj-white);
  margin: 0.75rem 0 0.6rem;
}
.page-hero__h1 .h1-marker::after { background: var(--vunj-accent); }
.page-hero__byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.page-hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  line-height: 1.7;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb { color: rgba(255,255,255,0.55); }
.page-hero .chip--accent { background: rgba(53,88,246,0.2); border-color: var(--vunj-accent); color: #a5baff; }

.flat-grid {
  display: grid;
  gap: 1.25rem;
}
.flat-grid--5 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.flat-card {
  background: var(--vunj-bg-tinted);
  border-radius: var(--vunj-radius);
  padding: 1.5rem;
}
.flat-card__icon { width: 40px; height: 40px; margin-bottom: 0.75rem; }
.flat-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--vunj-dark); }
.flat-card__text { font-size: 0.9rem; color: var(--vunj-text-muted); line-height: 1.6; }

.myths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.myth-card { position: relative; padding-top: 2.2rem; }
.myth-label {
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.myth-card--myth .myth-label { color: var(--vunj-accent-red); }
.myth-card--fact .myth-label { color: #1a8c4e; }
.myth-card--myth { border-left: 3px solid var(--vunj-accent-red); }
.myth-card--fact { border-left: 3px solid #1a8c4e; }
.myth-card p { font-size: 0.92rem; color: var(--vunj-text-muted); }

.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item__number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--vunj-white);
  line-height: 1;
}
.stat-item__unit {
  font-size: 1.5rem;
  font-weight: 600;
  color: #a5baff;
  margin-left: 0.2rem;
}
.stat-item__label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.review-card { padding: 1.5rem; }
.review-card__stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 0.5rem; }
.review-card__quote {
  font-size: 0.92rem;
  color: var(--vunj-text-muted);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.review-card__author { font-size: 0.82rem; font-weight: 600; color: var(--vunj-dark); }
.reviews-disclaimer {
  font-size: 0.8rem;
  color: var(--vunj-text-muted);
  border-left: 3px solid var(--vunj-accent-soft);
  padding-left: 0.75rem;
  line-height: 1.5;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.lifestyle-img {
  width: 100%;
  border-radius: var(--vunj-radius);
  object-fit: cover;
}
.tips-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.tips-list__item { display: flex; gap: 1rem; align-items: flex-start; }
.tips-list__num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--vunj-accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.tips-list__item strong { display: block; margin-bottom: 0.2rem; }
.tips-list__item p { font-size: 0.9rem; color: var(--vunj-text-muted); }

.table-wrap { overflow-x: auto; margin-bottom: 1rem; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.comparison-table th, .comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.comparison-table thead th {
  background: var(--vunj-bg-tinted);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.col-highlight { background: var(--vunj-accent-soft); font-weight: 600; }
.comparison-table thead .col-highlight { color: var(--vunj-accent); }
.check { color: #1a8c4e; font-weight: 700; }
.cross { color: var(--vunj-text-muted); }
.table-note { font-size: 0.8rem; color: var(--vunj-text-muted); }

.product-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}
.product-pack { background: var(--vunj-bg-tinted); border-radius: var(--vunj-radius); padding: 1.5rem; }
.product-pack__img { width: 100%; height: auto; object-fit: contain; }
.trust-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vunj-dark);
}
.trust-row img { width: 40px; height: 40px; flex-shrink: 0; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--vunj-text-muted);
}
.stars { color: #f5a623; font-size: 1rem; }
.product-name { font-size: 1.8rem; margin-bottom: 0.3rem; }
.product-tagline { font-size: 1rem; color: var(--vunj-text-muted); margin-bottom: 1.25rem; }
.ingredient-claims {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.ingredient-claims li {
  font-size: 0.9rem;
  color: var(--vunj-text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.ingredient-claims li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--vunj-accent);
  font-size: 0.8rem;
}
.supplement-note {
  font-size: 0.78rem;
  color: var(--vunj-text-muted);
  margin-bottom: 1rem;
  font-style: italic;
}
.ingredients-images { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.ingredient-thumb { border-radius: var(--vunj-radius); flex: 1; object-fit: cover; height: 140px; }
.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.price-block__now { font-size: 2rem; font-weight: 800; color: var(--vunj-dark); }
.price-block__was { font-size: 1.1rem; color: var(--vunj-text-muted); }
.price-block__tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a8c4e;
  background: #e8f5ee;
  padding: 0.2rem 0.5rem;
  border-radius: var(--vunj-radius);
}
.price-note { font-size: 0.8rem; color: var(--vunj-text-muted); margin-bottom: 1.25rem; }

.uiyf, .uthq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--vunj-dark); }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field textarea {
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: var(--vunj-radius);
  padding: 0.65rem 0.85rem;
  font-family: var(--vunj-font);
  font-size: 0.95rem;
  color: var(--vunj-text);
  background: var(--vunj-white);
  transition: border-color var(--vunj-transition);
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--vunj-accent);
}
.form-field--check { flex-direction: row; align-items: flex-start; gap: 0.5rem; }
.form-field--check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--vunj-accent); }
.form-field--check label { font-size: 0.82rem; font-weight: 400; color: var(--vunj-text-muted); }
.form-submit { margin-top: 0.25rem; }
.form-sub { font-size: 0.78rem; color: var(--vunj-text-muted); text-align: center; margin-top: 0.4rem; }

.ugov { background: var(--vunj-white); border-radius: var(--vunj-radius); padding: 2rem; max-width: 520px; }
.lf-calc__form { display: flex; align-items: flex-end; gap: 1rem; margin-bottom: 1rem; }
.lf-calc__field { flex: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.lf-calc__field label { font-size: 0.85rem; font-weight: 600; }
.lf-calc__field select {
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: var(--vunj-radius);
  padding: 0.6rem 0.85rem;
  font-family: var(--vunj-font);
  font-size: 0.95rem;
  background: var(--vunj-bg);
}
.lf-calc__btn { flex-shrink: 0; }
.lf-calc__result {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vunj-accent);
  min-height: 1.5rem;
}

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.uoah {
  border-radius: var(--vunj-radius);
  overflow: hidden;
  background: var(--vunj-white);
  border: 1.5px solid rgba(0,0,0,0.07);
}
.faq-item__q {
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--vunj-dark);
}
.faq-item__q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--vunj-accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--vunj-transition);
}
details[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  padding: 0.5rem 1.25rem 1.1rem;
  font-size: 0.92rem;
  color: var(--vunj-text-muted);
  line-height: 1.65;
}

.uiff {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vunj-dark);
  color: var(--vunj-white);
  border-top: 3px solid var(--vunj-accent);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.uiff.is-visible { display: block; }
.cookie-banner__inner {
  max-width: var(--vunj-container);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { font-size: 0.88rem; flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-banner__text a { color: #a5baff; }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-settings-modal[hidden] { display: none; }
.cookie-settings-modal__box {
  background: var(--vunj-white);
  border-radius: var(--vunj-radius);
  padding: 2rem;
  max-width: 440px;
  width: 100%;
}
.cookie-settings-modal__title { margin-bottom: 0.75rem; }
.cookie-settings-modal__row { margin: 0.75rem 0; display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; }
.cookie-settings-modal__actions { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.site-footer { background: var(--vunj-dark); color: rgba(255,255,255,0.75); }
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 3rem 0 2rem;
}
.site-footer__logo { font-size: 1.1rem; font-weight: 800; color: var(--vunj-white); display: block; margin-bottom: 0.5rem; }
.site-footer__tagline { font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.5rem; }
.site-footer__legal-id { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.site-footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.site-footer__col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.site-footer__col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; }
.site-footer__col a:hover { color: var(--vunj-white); }
.site-footer__disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
}
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.site-footer__bottom-inner a { color: rgba(255,255,255,0.55); }
.site-footer__bottom-inner a:hover { color: var(--vunj-white); }

.legal-section { min-height: 60vh; }
.legal-content {
  max-width: 760px;
}
.legal-content h1 { font-size: 2rem; margin-bottom: 0.4rem; }
.legal-content h2 { font-size: 1.15rem; margin: 2rem 0 0.5rem; color: var(--vunj-dark); }
.legal-content p, .legal-content li { font-size: 0.93rem; color: var(--vunj-text-muted); line-height: 1.7; margin-bottom: 0.6rem; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 0.75rem; }
.legal-updated { font-size: 0.82rem; color: var(--vunj-text-muted); margin-bottom: 2rem; }

.cookie-table, .nrv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.cookie-table th, .cookie-table td,
.nrv-table th, .nrv-table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  text-align: left;
}
.cookie-table thead th, .nrv-table thead th {
  background: var(--vunj-bg-tinted);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.content-article { max-width: 760px; }
.content-article h2 { font-size: 1.3rem; margin: 2rem 0 0.6rem; }
.content-article p { font-size: 0.95rem; color: var(--vunj-text-muted); margin-bottom: 1rem; line-height: 1.72; }
.content-article ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-article ul li { font-size: 0.93rem; color: var(--vunj-text-muted); margin-bottom: 0.4rem; }
.article-img { border-radius: var(--vunj-radius); margin-bottom: 2rem; }
.article-img--full { width: 100%; height: auto; }
.article-disclaimer {
  font-size: 0.8rem;
  color: var(--vunj-text-muted);
  margin-top: 2rem;
  border-left: 3px solid var(--vunj-accent-soft);
  padding-left: 0.75rem;
}

.ingredient-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.ingredient-showcase--rev { direction: rtl; }
.ingredient-showcase--rev > * { direction: ltr; }
.ingredient-showcase__img img { border-radius: var(--vunj-radius); width: 100%; object-fit: cover; }
.ingredient-showcase__list { display: flex; flex-direction: column; gap: 0.75rem; }
.ing-card { padding: 1.1rem 1.25rem; }
.ing-card__name { font-size: 1rem; font-weight: 700; color: var(--vunj-accent); margin-bottom: 0.3rem; }
.ing-card__claim { font-size: 0.88rem; color: var(--vunj-text-muted); line-height: 1.55; margin-bottom: 0.4rem; }
.ing-card__nrv { font-size: 0.78rem; font-weight: 600; color: var(--vunj-dark); background: var(--vunj-accent-soft); padding: 0.15rem 0.5rem; border-radius: var(--vunj-radius); display: inline-block; }

.nrv-table-wrap { margin-top: 2rem; overflow-x: auto; }
.nrv-table-wrap h2 { font-size: 1.15rem; margin-bottom: 1rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-layout h2 { font-size: 1.3rem; margin-bottom: 1.25rem; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.93rem; margin-bottom: 1.5rem; }
.map-container { border-radius: var(--vunj-radius); overflow: hidden; border: 1.5px solid rgba(0,0,0,0.07); }

.thankyou-section { min-height: 60vh; display: flex; align-items: center; }
.thankyou-box { max-width: 520px; text-align: center; padding: 3rem 2rem; }
.thankyou-icon { margin: 0 auto 1.5rem; }
.thankyou-box h1 { font-size: 2rem; margin-bottom: 1rem; }
.thankyou-box p { font-size: 0.95rem; color: var(--vunj-text-muted); margin-bottom: 1rem; }
.thankyou-box .btn { margin-top: 1rem; }
.error-code { font-size: 5rem; font-weight: 800; color: var(--vunj-accent); line-height: 1; margin-bottom: 0.5rem; }

@media (max-width: 860px) {
  .site-header__nav, .site-header__cta { display: none; }
  .site-header__burger { display: flex; }
  .site-header__nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--vunj-white);
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    z-index: 99;
    gap: 1rem;
  }
  .product-layout { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .ingredient-showcase { grid-template-columns: 1fr; }
  .ingredient-showcase--rev { direction: ltr; }
  .site-footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__nav { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .flat-grid--5 { grid-template-columns: 1fr 1fr; }
  .myths-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .site-footer__nav { grid-template-columns: 1fr 1fr; }
  .ingredients-images { flex-direction: column; }
  .lf-calc__form { flex-direction: column; align-items: stretch; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uiff{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}
.uiff.is-visible,.cookie-banner--visible,.uiff.show,.uiff.active{transform:none !important}
.uiff a{color:inherit;text-decoration:underline}
.uiff button{cursor:pointer}
.uwqk{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}
.uwqk.is-visible,.cookie-modal--visible,.uwqk.show,.uwqk.active{display:flex !important}
.umte,.uwqk>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.udcm .uqwx,.udcm .ugov,.udcm .uhed,.udcm .ufmm,.uwgw .uqwx,.uwgw .ugov,.uwgw .uhed,.uwgw .ufmm{background:#fff !important;color:#1a1a1a !important}
.uqwx,.ugov{color:#1a1a1a !important}
.uqwx label,.ugov label,.uqwx p,.ugov p,.uqwx .uofe,.uqwx span,.ugov span,.uefe,.uzjy,.uhed .uizz,.uhed .uizz *{color:#1a1a1a !important}
.uefe,.uzjy{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uqwx .urei{color:#1a1a1a !important}
.uqwx .urei.is-sel{color:#fff !important}
.uiyf .uqdv{display:none}
.uiyf .uqdv.is-visible{display:block !important;color:#c0392b}
.uiyf .umdg,.uiyf [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uiyf{color:#1a1a1a}
.udcm .uiyf,.uwgw .uiyf{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uagu{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uagu img{width:100%;height:100%;object-fit:cover}
.urxm,.usdv{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.urxm img,.usdv img{width:100%;height:100%;object-fit:cover;display:block}
.urxm img{opacity:.28}
.usdv img{opacity:.07}
*:has(> .urxm),*:has(> .usdv){position:relative}
.unfn{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)}
.unfn .uqqn{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.unfn .ufgn{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uuxc{margin:1.4rem auto;max-width:920px}
.uuxc img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.unxd{padding:3rem 0}
.urya{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.urya img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ufmm{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.unko{display:flex;overflow:hidden;gap:0 !important}
.uutl{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uflu{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}
.uglo{left:.5rem}.uriz{right:.5rem}
.uhed .uizz{display:none}.uhed .uizz.is-active{display:block}
.uqwx .ujrm{display:block !important}
.uqwx .uhxe{display:flex;flex-wrap:wrap;gap:.5rem}
.uqwx .urei{cursor:pointer}
