:root {
  --vigw-col-accent: #1c6cd1;
  --vigw-col-accent-2: #0f4fa8;
  --vigw-col-teal: #1a9b8a;
  --vigw-col-dark: #0f1623;
  --vigw-col-dark-2: #1a0050;
  --vigw-col-cream: #fdf8f0;
  --vigw-col-light: #ffffff;
  --vigw-col-text: #1e1e2e;
  --vigw-col-text-muted: #5a5a72;
  --vigw-col-border: #e0ddf5;
  --vigw-col-purple-soft: #c4b8ff;
  --vigw-col-amber: #f59e0b;
  --vigw-font-main: 'Libre Franklin', sans-serif;
  --vigw-radius: 8px;
  --vigw-radius-lg: 16px;
  --vigw-radius-pill: 999px;
  --vigw-container: 960px;
  --vigw-shadow-soft: 0 4px 24px rgba(28,108,209,0.08), 0 1px 4px rgba(0,0,0,0.06);
  --vigw-shadow-card: 0 8px 32px rgba(28,108,209,0.10), 0 2px 8px rgba(0,0,0,0.07);
}

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

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

body {
  font-family: var(--vigw-font-main);
  color: var(--vigw-col-text);
  background: var(--vigw-col-cream);
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--vigw-col-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

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

h1, h2, h3, h4 {
  font-family: var(--vigw-font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vigw-col-text);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

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

.section-light { background: var(--vigw-col-light); }
.section-cream { background: var(--vigw-col-cream); }
.ugnn { background: var(--vigw-col-dark); color: var(--vigw-col-light); }
.ugnn h1, .ugnn h2, .ugnn h3, .ugnn h4 { color: var(--vigw-col-light); }
.ugnn a { color: var(--vigw-col-purple-soft); }
.useg { background: var(--vigw-col-accent); color: var(--vigw-col-light); }

section { padding: 56px 0; }

.uoaz {
  background: var(--vigw-col-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.uoaz .container { display: flex; align-items: center; gap: 24px; }
.logo {
  font-family: var(--vigw-font-main);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--vigw-col-light);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; color: var(--vigw-col-purple-soft); }
.uxis { display: flex; align-items: center; gap: 20px; margin-left: auto; flex-wrap: wrap; }
.uxis a { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; white-space: nowrap; }
.uxis a:hover, .uxis a[aria-current="page"] { color: var(--vigw-col-light); text-decoration: none; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vigw-radius-pill);
  font-family: var(--vigw-font-main);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 22px;
  font-size: 0.9rem;
}
.btn-primary {
  background: var(--vigw-col-accent);
  color: var(--vigw-col-light);
  border-color: var(--vigw-col-accent);
}
.btn-primary:hover { background: var(--vigw-col-accent-2); border-color: var(--vigw-col-accent-2); text-decoration: none; color: var(--vigw-col-light); }
.btn-ghost {
  background: transparent;
  color: var(--vigw-col-accent);
  border-color: var(--vigw-col-accent);
}
.btn-ghost:hover { background: var(--vigw-col-accent); color: var(--vigw-col-light); text-decoration: none; }
.ugnn .btn-ghost { color: var(--vigw-col-light); border-color: rgba(255,255,255,0.5); }
.ugnn .btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

.breadcrumb-bar { background: var(--vigw-col-cream); padding: 10px 0; border-bottom: 1px solid var(--vigw-col-border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 0.82rem; color: var(--vigw-col-text-muted); }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 8px; }
.breadcrumb a { color: var(--vigw-col-accent); }

.chip {
  display: inline-flex;
  align-items: center;
  background: rgba(28,108,209,0.1);
  color: var(--vigw-col-accent);
  border-radius: var(--vigw-radius-pill);
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.trust-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.trust-chip {
  background: rgba(28,108,209,0.08);
  color: var(--vigw-col-accent);
  border-radius: var(--vigw-radius-pill);
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(28,108,209,0.18);
}

.hero { padding: 0; position: relative; overflow: hidden; }
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 56px 20px;
}
.hero-text { display: flex; flex-direction: column; gap: 12px; }
.hero-text h1 { margin-bottom: 6px; }
.h1-accent { color: var(--vigw-col-accent); }
.hero-lead { font-size: 1.05rem; color: var(--vigw-col-text-muted); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.hero-disclaimer { font-size: 0.74rem; color: var(--vigw-col-text-muted); margin-top: 4px; }

.hero-visual { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.pack-wrap { width: 100%; max-width: 320px; }
.pack-wrap img { width: 100%; aspect-ratio: 1/1; object-fit: contain; border-radius: var(--vigw-radius-lg); box-shadow: var(--vigw-shadow-card); }

.scorecard {
  width: 100%;
  background: var(--vigw-col-light);
  border-radius: var(--vigw-radius-lg);
  padding: 18px 20px;
  box-shadow: var(--vigw-shadow-card);
  border: 1px solid var(--vigw-col-border);
}
.scorecard-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--vigw-col-text-muted); margin-bottom: 4px; font-weight: 600; }
.scorecard-rating { font-size: 1.6rem; font-weight: 800; color: var(--vigw-col-accent); margin-bottom: 10px; }
.stars-small { font-size: 1rem; color: var(--vigw-col-amber); }
.score-criteria { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.score-row { display: grid; grid-template-columns: 1fr 80px 32px; gap: 8px; align-items: center; font-size: 0.8rem; }
.bar-track { background: var(--vigw-col-border); border-radius: var(--vigw-radius-pill); height: 6px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--vigw-col-accent); border-radius: var(--vigw-radius-pill); width: var(--vigw-pct); }
.scorecard-verdict { font-size: 0.8rem; color: var(--vigw-col-text-muted); font-style: italic; border-top: 1px solid var(--vigw-col-border); padding-top: 10px; margin-top: 4px; }

.card-soft {
  background: var(--vigw-col-light);
  border-radius: var(--vigw-radius-lg);
  padding: 22px;
  box-shadow: var(--vigw-shadow-soft);
  border: 1px solid var(--vigw-col-border);
}

.myths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.myth-card { display: flex; flex-direction: column; gap: 8px; }
.myth-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: var(--vigw-radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}
.myth { background: #fef2f2; color: #c0392b; }
.fact { background: #f0faf5; color: #1a7a4a; }
.fact-card { border-left: 3px solid var(--vigw-col-teal); }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
.split-text { display: flex; flex-direction: column; gap: 14px; }
.split-visual img { border-radius: var(--vigw-radius-lg); width: 100%; object-fit: cover; box-shadow: var(--vigw-shadow-card); }

.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li { padding-left: 24px; position: relative; font-size: 0.94rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--vigw-col-teal); font-weight: 700; }

.section-intro { color: var(--vigw-col-text-muted); margin-bottom: 28px; font-size: 1rem; }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.ingredient-card { display: flex; flex-direction: column; gap: 8px; }
.ingredient-card h3 { font-size: 1rem; }
.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.icon-teal { background: rgba(26,155,138,0.12); }
.icon-purple { background: rgba(196,184,255,0.3); }
.icon-green { background: rgba(34,197,94,0.12); }
.icon-amber { background: rgba(245,158,11,0.12); }
.claim-tag { font-size: 0.74rem; color: var(--vigw-col-teal); font-style: italic; font-weight: 600; }
.ingredient-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.ingredient-images figure { display: flex; flex-direction: column; gap: 6px; }
.ingredient-images figcaption { font-size: 0.78rem; color: var(--vigw-col-text-muted); }
.ingredient-images img { border-radius: var(--vigw-radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ingredients-disclaimer { font-size: 0.78rem; color: var(--vigw-col-text-muted); margin-top: 16px; margin-bottom: 16px; }

.stat-heading { text-align: center; margin-bottom: 36px; color: var(--vigw-col-light); }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-number { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--vigw-col-purple-soft); line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

.timeline-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.timeline-step { display: flex; gap: 20px; padding-bottom: 24px; position: relative; }
.timeline-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--vigw-col-border);
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--vigw-col-accent);
  color: var(--vigw-col-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-body { padding-top: 6px; }
.step-body h3 { font-size: 1rem; margin-bottom: 4px; }

.quiz-block {
  background: var(--vigw-col-light);
  border-radius: var(--vigw-radius-lg);
  padding: 28px;
  border: 1px solid var(--vigw-col-border);
  box-shadow: var(--vigw-shadow-soft);
  margin-top: 8px;
}
.quiz-title { margin-bottom: 6px; }
.quiz-intro { color: var(--vigw-col-text-muted); margin-bottom: 18px; font-size: 0.94rem; }
.quiz-questions { }
.quiz-question { display: none; }
.quiz-question.active { display: block; }
.q-text { font-weight: 600; margin-bottom: 12px; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-opt {
  background: var(--vigw-col-cream);
  border: 1px solid var(--vigw-col-border);
  border-radius: var(--vigw-radius);
  padding: 10px 16px;
  font-family: var(--vigw-font-main);
  font-size: 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
}
.quiz-opt:hover { background: rgba(28,108,209,0.07); border-color: var(--vigw-col-accent); }
.quiz-opt.selected { background: rgba(28,108,209,0.1); border-color: var(--vigw-col-accent); font-weight: 600; }
.quiz-result { margin-top: 16px; }
.quiz-result h4 { margin-bottom: 8px; }
.result-text { margin-bottom: 14px; color: var(--vigw-col-text-muted); }

.author-card { display: flex; align-items: center; gap: 14px; padding: 16px 18px; margin: 14px 0; }
.author-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vigw-col-accent);
  color: var(--vigw-col-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; gap: 2px; font-size: 0.82rem; color: var(--vigw-col-text-muted); }
.author-info strong { color: var(--vigw-col-text); font-size: 0.9rem; }
.disclosure { font-size: 0.76rem; color: var(--vigw-col-text-muted); font-style: italic; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.testimonial-card { display: flex; flex-direction: column; gap: 10px; }
.testimonial-card img { width: 80px; height: 60px; object-fit: contain; }
.reviewer { font-size: 0.8rem; color: var(--vigw-col-text-muted); font-weight: 600; }
.testimonial-disclaimer { font-size: 0.76rem; color: var(--vigw-col-text-muted); font-style: italic; }

.faq-container { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.usso { padding: 0; overflow: hidden; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--vigw-font-main);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--vigw-col-text);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::after { content: "+"; font-size: 1.2rem; font-weight: 400; flex-shrink: 0; color: var(--vigw-col-accent); }
.faq-q[aria-expanded="true"]::after { content: "−"; }
.faq-a { padding: 0 20px 16px; font-size: 0.9rem; color: var(--vigw-col-text-muted); display: none; }
.faq-a.open { display: block; }

.order-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.order-pack { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.order-pack img { border-radius: var(--vigw-radius-lg); box-shadow: var(--vigw-shadow-card); }
.price-block { display: flex; align-items: center; gap: 10px; justify-content: center; }
.price-old { text-decoration: line-through; color: rgba(255,255,255,0.5); font-size: 1rem; }
.price-now { font-size: 2rem; font-weight: 800; color: var(--vigw-col-light); }
.price-save { background: var(--vigw-col-teal); color: var(--vigw-col-light); border-radius: var(--vigw-radius-pill); padding: 3px 10px; font-size: 0.78rem; font-weight: 700; }
.section-order .trust-chip { background: rgba(255,255,255,0.1); color: var(--vigw-col-light); border-color: rgba(255,255,255,0.2); }

.order-form-wrap { background: rgba(255,255,255,0.06); border-radius: var(--vigw-radius-lg); padding: 28px; border: 1px solid rgba(255,255,255,0.1); }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--vigw-radius);
  background: rgba(255,255,255,0.07);
  color: var(--vigw-col-light);
  font-family: var(--vigw-font-main);
  font-size: 0.92rem;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--vigw-col-accent); }
.form-check { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--vigw-col-accent); width: 16px; height: 16px; }
.form-check label { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 400; }
.form-check label a { color: var(--vigw-col-purple-soft); }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 10px; }
.order-disclaimer { font-size: 0.76rem; color: rgba(255,255,255,0.5); margin-top: 24px; text-align: center; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-list { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; margin-bottom: 20px; font-size: 0.92rem; }
.contact-list li strong { display: inline-block; min-width: 70px; }
.map-container { border-radius: var(--vigw-radius); overflow: hidden; box-shadow: var(--vigw-shadow-soft); }
.ujze .form-group label { color: var(--vigw-col-text); }
.ujze .form-group input,
.ujze .form-group textarea { background: var(--vigw-col-cream); border-color: var(--vigw-col-border); color: var(--vigw-col-text); }
.ujze .form-check label { color: var(--vigw-col-text-muted); }
.ujze .btn-primary { margin-top: 4px; }

.page-hero { padding: 48px 0 40px; }

.cta-centre { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-sub { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.thankyou-centre { max-width: 560px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.thankyou-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--vigw-col-teal); color: white; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; }

.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 { margin-top: 32px; margin-bottom: 10px; font-size: 1.2rem; }
.legal-body h3 { margin-top: 20px; margin-bottom: 8px; font-size: 1rem; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 14px; }
.legal-body ul li, .legal-body ol li { margin-bottom: 6px; font-size: 0.92rem; list-style: disc; }
.legal-body ol li { list-style: decimal; }
.legal-body p { font-size: 0.92rem; }

.cookie-table, .nutrient-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 0.84rem;
}
.cookie-table th, .nutrient-table th {
  background: var(--vigw-col-accent);
  color: var(--vigw-col-light);
  padding: 8px 12px;
  text-align: left;
  font-weight: 600;
}
.cookie-table td, .nutrient-table td { padding: 8px 12px; border-bottom: 1px solid var(--vigw-col-border); }
.cookie-table tr:nth-child(even) td, .nutrient-table tr:nth-child(even) td { background: var(--vigw-col-cream); }

.efsa-note { max-width: 720px; margin: 20px 0; }
.ingredient-detail-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--vigw-col-border); }
.ingredient-detail-block:last-of-type { border-bottom: none; }
.ingredient-detail-block.reverse { direction: rtl; }
.ingredient-detail-block.reverse > * { direction: ltr; }
.ingredient-detail-text { display: flex; flex-direction: column; gap: 12px; }
.ingredient-detail-visual img { border-radius: var(--vigw-radius-lg); width: 100%; object-fit: cover; box-shadow: var(--vigw-shadow-soft); }

.tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.tip-card { display: flex; flex-direction: column; gap: 10px; }
.tip-num { font-size: 2rem; font-weight: 800; color: var(--vigw-col-accent); line-height: 1; }
.wellness-note { max-width: 720px; margin: 8px 0; }

.site-footer { padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-logo { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer-nav h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 7px; }
.footer-nav a { color: rgba(255,255,255,0.7); font-size: 0.84rem; }
.footer-nav a:hover { color: var(--vigw-col-light); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 0.76rem; color: rgba(255,255,255,0.45); }
.footer-disclaimer p { margin-bottom: 6px; }

.urcn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vigw-col-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.urcn.is-visible { transform: translateY(0); }
.cookie-inner { max-width: var(--vigw-container); margin: 0 auto; padding: 16px 20px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-inner p { font-size: 0.82rem; color: rgba(255,255,255,0.75); flex: 1; min-width: 200px; margin: 0; }
.ubbe { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1fr; }
  .split-layout.reverse { direction: ltr; }
  .myths-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .ingredient-images { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ingredient-detail-block { grid-template-columns: 1fr; }
  .ingredient-detail-block.reverse { direction: ltr; }
  .tips-grid { grid-template-columns: 1fr; }
  .uxis { display: none; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.urcn{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}
.urcn.is-visible,.cookie-banner--visible,.urcn.show,.urcn.active{transform:none !important}
.urcn a{color:inherit;text-decoration:underline}
.urcn button{cursor:pointer}
.uaxd{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}
.uaxd.is-visible,.cookie-modal--visible,.uaxd.show,.uaxd.active{display:flex !important}
.uwfc,.uaxd>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.ugnn .ulog,.ugnn .ucro,.ugnn .uufr,.ugnn .utxw,.useg .ulog,.useg .ucro,.useg .uufr,.useg .utxw{background:#fff !important;color:#1a1a1a !important}
.ulog,.ucro{color:#1a1a1a !important}
.ulog label,.ucro label,.ulog p,.ucro p,.ulog .uuij,.ulog span,.ucro span,.uijh,.uhbf,.uufr .umvf,.uufr .umvf *{color:#1a1a1a !important}
.uijh,.uhbf{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ulog .uyis{color:#1a1a1a !important}
.ulog .uyis.is-sel{color:#fff !important}
.ueqm .uipj{display:none}
.ueqm .uipj.is-visible{display:block !important;color:#c0392b}
.ueqm .urdu,.ueqm [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ueqm{color:#1a1a1a}
.ugnn .ueqm,.useg .ueqm{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ukjo{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ukjo img{width:100%;height:100%;object-fit:cover}
.uwka,.uyhs{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uwka img,.uyhs img{width:100%;height:100%;object-fit:cover;display:block}
.uwka img{opacity:.28}
.uyhs img{opacity:.07}
*:has(> .uwka),*:has(> .uyhs){position:relative}
.ubex{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)}
.ubex .ubso{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ubex .uvkg{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.udkw{margin:1.4rem auto;max-width:920px}
.udkw img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ulxn{padding:3rem 0}
.upur{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.upur img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.utxw{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ukqf{display:flex;overflow:hidden;gap:0 !important}
.ulzs{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uten{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}
.ugzf{left:.5rem}.uttm{right:.5rem}
.uufr .umvf{display:none}.uufr .umvf.is-active{display:block}
.ulog .utbg{display:block !important}
.ulog .utve{display:flex;flex-wrap:wrap;gap:.5rem}
.ulog .uyis{cursor:pointer}
