:root {
  --vzyt-col-bg: #f4f6f9;
  --vzyt-col-surface: #ffffff;
  --vzyt-col-dark: #0d1520;
  --vzyt-col-dark2: #1a2535;
  --vzyt-col-accent: #c8431a;
  --vzyt-col-accent2: #0f5c9a;
  --vzyt-col-accent3: #a8942c;
  --vzyt-col-text: #1e2630;
  --vzyt-col-text-muted: #5a6472;
  --vzyt-col-border: #d6dce6;
  --vzyt-col-check: #2a7a3b;
  --vzyt-col-cross: #b0281a;
  --vzyt-radius: 18px;
  --vzyt-radius-sm: 8px;
  --vzyt-shadow-hard: 5px 5px 0 0 var(--vzyt-col-dark);
  --vzyt-container: 1200px;
  --vzyt-font: 'Libre Franklin', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--vzyt-font);
  background: var(--vzyt-col-bg);
  color: var(--vzyt-col-text);
  font-size: 16px;
  line-height: 1.65;
}

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

a { color: var(--vzyt-col-accent2); text-decoration: underline; }
a:hover { color: var(--vzyt-col-accent); }

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

h1, h2, h3, h4 { font-family: var(--vzyt-font); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }

.h1-outlined {
  -webkit-text-stroke: 2px currentColor;
  color: transparent;
  display: inline;
}

.section {
  padding: 56px 0;
}

.umns {
  background: var(--vzyt-col-dark);
  color: #ffffff;
}
.umns a { color: #9ac8f0; }
.umns h2, .umns h3 { color: #ffffff; }

.uulz {
  background: var(--vzyt-col-dark2);
  color: #ffffff;
}
.uulz a { color: #9ac8f0; }
.uulz h2 { color: #ffffff; }

.band-thin {
  height: 6px;
  background: var(--vzyt-col-accent);
}

.section-intro {
  color: var(--vzyt-col-text-muted);
  max-width: 760px;
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.umns .section-intro,
.uulz .section-intro { color: rgba(255,255,255,0.75); }

.uvqt {
  background: var(--vzyt-col-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--vzyt-col-accent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.site-logo {
  font-family: var(--vzyt-font);
  font-weight: 900;
  font-size: 1.25rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--vzyt-col-accent); }

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
}
.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--vzyt-radius-sm);
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--vzyt-col-accent) !important;
  color: #fff !important;
  border-radius: var(--vzyt-radius-sm) !important;
}
.nav-cta:hover { background: #a8361300 !important; border: 1px solid var(--vzyt-col-accent); }
.uzxo { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

.breadcrumbs {
  background: var(--vzyt-col-surface);
  border-bottom: 1px solid var(--vzyt-col-border);
  padding: 10px 0;
  font-size: 0.83rem;
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; }
.breadcrumbs li + li::before { content: '›'; margin-right: 4px; color: var(--vzyt-col-text-muted); }
.breadcrumbs a { color: var(--vzyt-col-text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--vzyt-col-accent); }
.breadcrumbs [aria-current="page"] { color: var(--vzyt-col-text); font-weight: 600; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.upsl {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
.hero-text { max-width: 640px; }
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vzyt-col-accent);
  margin-bottom: 12px;
}
.hero h1 { color: #ffffff; margin-bottom: 18px; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-meta { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.hero-pack { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pack-hero-img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.pack-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--vzyt-radius-sm);
  font-family: var(--vzyt-font);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}
.btn-primary {
  background: var(--vzyt-col-accent);
  color: #ffffff;
  border-color: var(--vzyt-col-accent);
}
.btn-primary:hover { background: #a8361a; border-color: #a8361a; color: #fff; }
.btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-order {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

.card-hard-shadow {
  box-shadow: var(--vzyt-shadow-hard);
  border: 1.5px solid var(--vzyt-col-dark);
}

.myths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.myth-card {
  background: var(--vzyt-col-surface);
  border-radius: var(--vzyt-radius);
  padding: 24px;
}
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.card-tag-myth { background: #fde8e6; color: var(--vzyt-col-cross); }
.card-tag-fact { background: #e6f5ea; color: var(--vzyt-col-check); margin-top: 14px; }
.myth-card p { font-size: 0.93rem; color: var(--vzyt-col-text); margin-bottom: 4px; }

.about-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
}
.about-image img { border-radius: var(--vzyt-radius); width: 100%; }
.about-text h2 { color: #fff; }
.about-text p { color: rgba(255,255,255,0.85); margin-bottom: 14px; font-size: 0.97rem; }
.about-byline { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.press-quote {
  border-left: 3px solid var(--vzyt-col-accent);
  padding: 16px 20px;
  margin-top: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 0 var(--vzyt-radius-sm) var(--vzyt-radius-sm) 0;
}
.press-quote p { font-style: italic; font-size: 0.95rem; color: rgba(255,255,255,0.9); margin-bottom: 8px; }
.press-quote cite { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

.ingredients-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.ingredients-image img { border-radius: var(--vzyt-radius); width: 100%; }
.ingredients-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.ingredients-table th { background: var(--vzyt-col-dark); color: #fff; padding: 10px 12px; text-align: left; font-weight: 700; }
.ingredients-table td { padding: 10px 12px; border-bottom: 1px solid var(--vzyt-col-border); vertical-align: top; }
.ingredients-table tr:last-child td { border-bottom: none; }
.ingredients-table tr:nth-child(even) td { background: #f9fafc; }
.ingredients-disclaimer { font-size: 0.78rem; color: var(--vzyt-col-text-muted); margin-top: 14px; font-style: italic; }

.comparison-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}
.comparison-image img { border-radius: var(--vzyt-radius); width: 100%; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; background: var(--vzyt-col-surface); border-radius: var(--vzyt-radius); overflow: hidden; }
.comparison-table th { background: var(--vzyt-col-accent); color: #fff; padding: 10px 14px; text-align: left; font-weight: 700; }
.comparison-table td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.check { color: #5dd87a; font-weight: 700; }
.partial { color: #e0c86a; }
.cross { color: #f07070; font-weight: 700; }

.utyf {
  background: var(--vzyt-col-surface);
  border-radius: var(--vzyt-radius);
  padding: 32px;
  max-width: 480px;
}
.calc-inner { display: flex; flex-direction: column; gap: 14px; }
.calc-inner label { font-weight: 700; font-size: 0.92rem; }
.calc-row { display: flex; align-items: center; gap: 10px; }
.calc-input {
  border: 2px solid var(--vzyt-col-border);
  border-radius: var(--vzyt-radius-sm);
  padding: 10px 14px;
  font-size: 1rem;
  font-family: var(--vzyt-font);
  width: 120px;
  outline: none;
}
.calc-input:focus { border-color: var(--vzyt-col-accent2); }
.calc-unit { font-size: 0.9rem; color: var(--vzyt-col-text-muted); }
.calc-btn { width: 100%; }
.calc-result {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vzyt-col-accent2);
  min-height: 24px;
  padding-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}
.review-card {
  background: var(--vzyt-col-surface);
  border-radius: var(--vzyt-radius);
  padding: 24px;
}
.review-stars { color: #e0a000; font-size: 1.1rem; margin-bottom: 10px; }
.review-text { font-size: 0.95rem; font-style: italic; margin-bottom: 10px; }
.review-author { font-weight: 700; font-size: 0.85rem; color: var(--vzyt-col-text-muted); }
.review-disclaimer { font-size: 0.75rem; color: var(--vzyt-col-text-muted); margin-top: 6px; font-style: italic; }
.reviews-aggregate { font-size: 0.88rem; color: var(--vzyt-col-text-muted); text-align: center; }

.references-list { padding-left: 20px; display: flex; flex-direction: column; gap: 12px; }
.references-list li { font-size: 0.92rem; color: var(--vzyt-col-text-muted); }
.references-list a { color: var(--vzyt-col-accent2); }

.lifestyle-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: start;
}
.lifestyle-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.lifestyle-list li { display: flex; gap: 14px; align-items: flex-start; }
.lifestyle-list strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.lifestyle-list p { font-size: 0.92rem; color: var(--vzyt-col-text-muted); margin: 0; }
.lifestyle-image img { border-radius: var(--vzyt-radius); width: 100%; }
.lifestyle-disclaimer { font-size: 0.8rem; color: var(--vzyt-col-text-muted); font-style: italic; margin-top: 24px; }

.icon-duo {
  font-size: 1.1rem;
  color: var(--vzyt-col-accent);
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: -4px;
}

.uroy { background: var(--vzyt-col-surface); border-radius: var(--vzyt-radius); overflow: hidden; box-shadow: var(--vzyt-shadow-hard); border: 1.5px solid var(--vzyt-col-dark); }
.tabs-nav { display: flex; border-bottom: 2px solid var(--vzyt-col-border); background: #f9fafc; }
.tab-btn {
  flex: 1;
  padding: 14px 10px;
  font-family: var(--vzyt-font);
  font-size: 0.9rem;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--vzyt-col-text-muted);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active, .tab-btn[aria-selected="true"] { color: var(--vzyt-col-accent); border-bottom-color: var(--vzyt-col-accent); }
.tab-panel { padding: 28px; }
.faq-dl dt { font-weight: 700; margin-bottom: 6px; color: var(--vzyt-col-dark); font-size: 0.97rem; }
.faq-dl dd { margin-left: 0; margin-bottom: 20px; font-size: 0.93rem; color: var(--vzyt-col-text-muted); }
.usage-steps { display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; gap: 16px; align-items: flex-start; background: var(--vzyt-col-bg); border-radius: var(--vzyt-radius); padding: 18px; }
.step-num { font-size: 1.6rem; font-weight: 900; color: var(--vzyt-col-accent); line-height: 1; flex-shrink: 0; width: 40px; }
.delivery-info { display: flex; flex-direction: column; gap: 16px; }
.delivery-item { display: flex; gap: 14px; align-items: flex-start; background: var(--vzyt-col-bg); border-radius: var(--vzyt-radius); padding: 18px; }
.delivery-item strong { display: block; margin-bottom: 4px; }
.delivery-item p { font-size: 0.92rem; color: var(--vzyt-col-text-muted); margin: 0; }

.order-section { padding: 72px 0; }
.order-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.order-product-info { display: flex; gap: 28px; align-items: flex-start; flex-direction: column; }
.order-pack-img { width: 200px; height: 200px; object-fit: contain; border-radius: var(--vzyt-radius); }
.order-product-details h2 { color: #fff; font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 10px; }
.order-tagline { color: rgba(255,255,255,0.75); margin-bottom: 16px; font-size: 0.95rem; }
.price-block { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.price-original { font-size: 1rem; color: rgba(255,255,255,0.45); text-decoration: line-through; }
.price-current { font-size: 2rem; font-weight: 900; color: #fff; }
.price-badge { background: var(--vzyt-col-accent); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }
.order-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.order-bullets li { font-size: 0.92rem; color: rgba(255,255,255,0.8); padding-left: 18px; position: relative; }
.order-bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--vzyt-col-check); font-weight: 700; }
.order-supplement-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-style: italic; }
.order-form-wrap {
  background: var(--vzyt-col-surface);
  border-radius: var(--vzyt-radius);
  padding: 32px;
  box-shadow: var(--vzyt-shadow-hard);
  border: 1.5px solid rgba(255,255,255,0.1);
}
.order-form-wrap h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--vzyt-col-dark); }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-weight: 700; font-size: 0.88rem; color: var(--vzyt-col-text); }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  border: 2px solid var(--vzyt-col-border);
  border-radius: var(--vzyt-radius-sm);
  padding: 11px 14px;
  font-size: 1rem;
  font-family: var(--vzyt-font);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  color: var(--vzyt-col-text);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--vzyt-col-accent2); }
.form-checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-checkbox input { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--vzyt-col-accent); }
.form-checkbox label { font-size: 0.83rem; font-weight: 400; color: var(--vzyt-col-text-muted); }
.form-note { font-size: 0.78rem; color: var(--vzyt-col-text-muted); margin-top: 10px; }

.cta-band { padding: 48px 0; }
.cta-band-inner { display: flex; align-items: center; gap: 32px; }
.cta-band-inner img { border-radius: var(--vzyt-radius); flex-shrink: 0; }
.cta-band-inner h2 { color: #fff; margin-bottom: 8px; }
.cta-band-inner p { color: rgba(255,255,255,0.8); margin-bottom: 16px; }

.site-footer { background: var(--vzyt-col-dark); color: rgba(255,255,255,0.75); padding: 48px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.footer-logo { font-family: var(--vzyt-font); font-weight: 900; font-size: 1.15rem; color: #fff; display: block; margin-bottom: 6px; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-legal-id { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.footer-nav a { color: rgba(255,255,255,0.65); font-size: 0.85rem; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.4); grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; flex-direction: column; gap: 8px; }

.ucgf {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vzyt-col-dark2);
  border-top: 3px solid var(--vzyt-col-accent);
  z-index: 999;
  padding: 16px 24px;
}
.ucgf.is-visible { display: block; }
.cookie-inner { max-width: var(--vzyt-container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-inner p { font-size: 0.88rem; color: rgba(255,255,255,0.85); flex: 1; min-width: 220px; }
.cookie-inner a { color: #9ac8f0; }
.uiud { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-cookie-accept, .btn-cookie-reject {
  padding: 9px 20px;
  border-radius: var(--vzyt-radius-sm);
  font-family: var(--vzyt-font);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s;
}
.btn-cookie-accept { background: var(--vzyt-col-accent); color: #fff; }
.btn-cookie-accept:hover { background: #a8361a; }
.btn-cookie-reject { background: transparent; color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.3); }
.btn-cookie-reject:hover { border-color: #fff; color: #fff; }
.cookie-settings-link { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-decoration: underline; }

.page-hero { padding: 56px 0 48px; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-lead { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 680px; }

.legal-section { padding: 56px 0; }
.legal-content { max-width: 860px; }
.legal-content h2 { font-size: 1.15rem; margin-top: 32px; margin-bottom: 10px; color: var(--vzyt-col-dark); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 0.93rem; color: var(--vzyt-col-text); margin-bottom: 10px; line-height: 1.7; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin-bottom: 14px; }
.legal-content li { margin-bottom: 6px; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.88rem; }
.cookie-table th { background: var(--vzyt-col-dark); color: #fff; padding: 10px 14px; text-align: left; }
.cookie-table td { padding: 10px 14px; border-bottom: 1px solid var(--vzyt-col-border); }

.thankyou-section { min-height: 60vh; display: flex; align-items: center; }
.thankyou-inner { max-width: 540px; margin: 0 auto; text-align: center; padding: 60px 24px; }
.thankyou-icon { font-size: 4rem; color: var(--vzyt-col-check); font-weight: 900; margin-bottom: 20px; }
.error-icon { color: var(--vzyt-col-cross); }
.thankyou-inner h1 { font-size: 2rem; margin-bottom: 16px; }
.thankyou-inner p { font-size: 0.97rem; color: var(--vzyt-col-text-muted); margin-bottom: 12px; }
.thankyou-inner .btn { margin-top: 16px; }

.about-page .about-inner { grid-template-columns: 400px 1fr; }
.about-text h2 { color: var(--vzyt-col-dark); margin-top: 28px; }
.about-text h2:first-child { margin-top: 0; }
.about-text p { color: var(--vzyt-col-text); }

.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 1.3rem; margin-bottom: 16px; }
.contact-info p { font-size: 0.93rem; color: var(--vzyt-col-text-muted); margin-bottom: 8px; }
.contact-info a { color: var(--vzyt-col-accent2); }
.map-container { margin-top: 20px; border-radius: var(--vzyt-radius); overflow: hidden; }
.contact-form-wrap h2 { font-size: 1.3rem; margin-bottom: 16px; }

.ingredient-deep-list { display: flex; flex-direction: column; gap: 20px; }
.ingredient-item { background: var(--vzyt-col-surface); border-radius: var(--vzyt-radius); padding: 22px; }
.ingredient-item h2 { font-size: 1.1rem; margin-bottom: 8px; color: var(--vzyt-col-dark); }
.ingredient-item p { font-size: 0.92rem; color: var(--vzyt-col-text); margin-bottom: 8px; }
.ingredient-item em { font-size: 0.82rem; color: var(--vzyt-col-text-muted); }

.lifestyle-page-inner { display: flex; flex-direction: column; gap: 32px; }
.lifestyle-image-full img { border-radius: var(--vzyt-radius); width: 100%; }
.lifestyle-article h2 { margin-bottom: 12px; color: var(--vzyt-col-dark); }
.lifestyle-article h3 { font-size: 1.05rem; margin-top: 24px; margin-bottom: 8px; color: var(--vzyt-col-dark); }
.lifestyle-article p { font-size: 0.95rem; color: var(--vzyt-col-text); margin-bottom: 12px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-pack { display: none; }
  .about-inner, .ingredients-layout, .comparison-layout, .lifestyle-inner, .order-inner, .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .uzxo { display: block; }
  .site-nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--vzyt-col-dark); padding: 16px 24px; }
  .site-nav.open ul { flex-direction: column; gap: 4px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.7rem; }
  .section { padding: 36px 0; }
  .myths-grid, .reviews-grid { grid-template-columns: 1fr; }
  .pack-hero-img { width: 200px; height: 200px; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ucgf{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}
.ucgf.is-visible,.cookie-banner--visible,.ucgf.show,.ucgf.active{transform:none !important}
.ucgf a{color:inherit;text-decoration:underline}
.ucgf button{cursor:pointer}
.usnf{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}
.usnf.is-visible,.cookie-modal--visible,.usnf.show,.usnf.active{display:flex !important}
.uiuz,.usnf>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.umns .ujxo,.umns .utyf,.umns .uroy,.umns .uzbq,.uulz .ujxo,.uulz .utyf,.uulz .uroy,.uulz .uzbq{background:#fff !important;color:#1a1a1a !important}
.ujxo,.utyf{color:#1a1a1a !important}
.ujxo label,.utyf label,.ujxo p,.utyf p,.ujxo .uzbs,.ujxo span,.utyf span,.uexq,.uexu,.uroy .usxc,.uroy .usxc *{color:#1a1a1a !important}
.uexq,.uexu{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ujxo .uild{color:#1a1a1a !important}
.ujxo .uild.is-sel{color:#fff !important}
.uynw .uoco{display:none}
.uynw .uoco.is-visible{display:block !important;color:#c0392b}
.uynw .usbm,.uynw [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uynw{color:#1a1a1a}
.umns .uynw,.uulz .uynw{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uwke{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uwke img{width:100%;height:100%;object-fit:cover}
.upsl,.uqmd{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.upsl img,.uqmd img{width:100%;height:100%;object-fit:cover;display:block}
.upsl img{opacity:.28}
.uqmd img{opacity:.07}
*:has(> .upsl),*:has(> .uqmd){position:relative}
.uijn{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)}
.uijn .uxfo{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uijn .ucca{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uypc{margin:1.4rem auto;max-width:920px}
.uypc img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ulgj{padding:3rem 0}
.uvvl{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uvvl img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uzbq{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ujdx{display:flex;overflow:hidden;gap:0 !important}
.ucdz{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.urlz{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}
.uqwx{left:.5rem}.unrt{right:.5rem}
.uroy .usxc{display:none}.uroy .usxc.is-active{display:block}
.ujxo .uaid{display:block !important}
.ujxo .uiqm{display:flex;flex-wrap:wrap;gap:.5rem}
.ujxo .uild{cursor:pointer}
