:root {
  --vzqd-clr-bg: #0d0b1a;
  --vzqd-clr-surface: #13102a;
  --vzqd-clr-surface-2: #1c1838;
  --vzqd-clr-accent: #5c0ec0;
  --vzqd-clr-accent-2: #c89b00;
  --vzqd-clr-accent-light: #c8a8ff;
  --vzqd-clr-text: #e8e2ff;
  --vzqd-clr-text-muted: #9d93c8;
  --vzqd-clr-border: rgba(200,168,255,0.18);
  --vzqd-clr-dark-band: #0a0818;
  --vzqd-clr-myth-label: #ff6b6b;
  --vzqd-clr-fact-label: #4ecdc4;
  --vzqd-clr-score-good: #4ecdc4;
  --vzqd-clr-score-neutral: #9d93c8;
  --vzqd-clr-score-mixed: #f7b731;
  --vzqd-radius: 24px;
  --vzqd-radius-sm: 12px;
  --vzqd-radius-pill: 9999px;
  --vzqd-container-w: 960px;
  --vzqd-container-narrow-w: 760px;
  --vzqd-font-head: 'Sora', sans-serif;
  --vzqd-font-body: 'Inter', sans-serif;
  --vzqd-spacing-section: 5rem;
  --vzqd-spacing-section-sm: 3rem;
}

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

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

body {
  font-family: var(--vzqd-font-body);
  background: var(--vzqd-clr-bg);
  color: var(--vzqd-clr-text);
  line-height: 1.7;
  min-height: 100vh;
}

.dark-theme { background: var(--vzqd-clr-bg); color: var(--vzqd-clr-text); }

.container {
  max-width: var(--vzqd-container-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: var(--vzqd-container-narrow-w);
  margin: 0 auto;
  padding: 0 2rem;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--vzqd-clr-accent-light); text-decoration: underline; transition: color 0.2s; }
a:hover { color: #fff; }

h1, h2, h3, h4 { font-family: var(--vzqd-font-head); line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1rem; margin-top: 2.5rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; margin-bottom: 0.75rem; }
h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

.uagl { background: var(--vzqd-clr-dark-band); padding: var(--vzqd-spacing-section) 0; }
.section-light { background: var(--vzqd-clr-surface); padding: var(--vzqd-spacing-section) 0; }
.uufd { background: var(--vzqd-clr-accent); padding: var(--vzqd-spacing-section) 0; }

.udtl {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,11,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vzqd-clr-border);
}
.udtl .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.site-logo {
  font-family: var(--vzqd-font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--vzqd-clr-text);
  text-decoration: none;
  white-space: nowrap;
}
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { color: var(--vzqd-clr-text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.site-nav a:hover { color: #fff; }
.uzoo { display: none; background: none; border: none; color: var(--vzqd-clr-text); font-size: 1.5rem; cursor: pointer; }

.btn-pill {
  display: inline-block;
  border-radius: var(--vzqd-radius-pill);
  padding: 0.65rem 1.6rem;
  font-family: var(--vzqd-font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--vzqd-clr-accent);
  color: #fff;
  border-color: var(--vzqd-clr-accent);
}
.btn-primary:hover { background: #7a1af0; border-color: #7a1af0; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--vzqd-clr-text);
  border-color: var(--vzqd-clr-border);
}
.btn-ghost:hover { border-color: var(--vzqd-clr-accent-light); color: var(--vzqd-clr-accent-light); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-full { width: 100%; text-align: center; }

.uicf {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vzqd-clr-surface-2);
  border-top: 1px solid var(--vzqd-clr-border);
  padding: 1rem;
  display: none;
}
.uicf.is-visible { display: block; }
.cookie-inner { max-width: var(--vzqd-container-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cookie-inner p { margin: 0; font-size: 0.875rem; color: var(--vzqd-clr-text-muted); }
.ucho { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.cookie-link { font-size: 0.85rem; color: var(--vzqd-clr-text-muted); }

.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.25rem 0.5rem; font-size: 0.85rem; color: var(--vzqd-clr-text-muted); }
.breadcrumb li + li::before { content: '›'; margin-right: 0.5rem; }
.breadcrumb a { color: var(--vzqd-clr-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--vzqd-clr-accent-light); }

.category-chip {
  display: inline-block;
  background: rgba(92,14,192,0.35);
  color: var(--vzqd-clr-accent-light);
  border-radius: var(--vzqd-radius-pill);
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.editorial-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.ufem {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.editorial-hero .container-narrow { position: relative; z-index: 1; }

.headline-hook { color: #fff; }
.accent-num { color: var(--vzqd-clr-accent-light); }

.byline-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--vzqd-clr-text-muted); margin-bottom: 1.5rem; }
.byline-name { font-weight: 600; color: var(--vzqd-clr-text); }
.byline-sep { opacity: 0.4; }

.lead-para { font-size: 1.15rem; color: var(--vzqd-clr-text); margin-bottom: 2rem; line-height: 1.75; }

.cover-figure { margin: 2rem auto; max-width: 480px; }
.cover-figure img { border-radius: var(--vzqd-radius); }
.cover-figure figcaption { font-size: 0.8rem; color: var(--vzqd-clr-text-muted); text-align: center; margin-top: 0.5rem; }

.stat-band { padding: 3rem 0; }
.stat-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-num { display: block; font-family: var(--vzqd-font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 0.4rem; display: block; }

.myths-section { }
.myths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.myth-card { padding: 1.75rem; border-radius: var(--vzqd-radius); }
.dashed-card { border: 2px dashedvar(--vzqd-clr-border); }
.myth-label { display: inline-block; background: rgba(255,107,107,0.15); color: var(--vzqd-clr-myth-label); border-radius: var(--vzqd-radius-pill); padding: 0.2rem 0.75rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.myth-text { font-size: 0.95rem; color: var(--vzqd-clr-text-muted); margin-bottom: 1rem; font-style: italic; }
.fact-label { display: inline-block; background: rgba(78,205,196,0.15); color: var(--vzqd-clr-fact-label); border-radius: var(--vzqd-radius-pill); padding: 0.2rem 0.75rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.fact-text { font-size: 0.95rem; color: var(--vzqd-clr-text); margin-bottom: 0; }

.ingredient-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.ingredient-card { padding: 1.5rem; border-radius: var(--vzqd-radius); }
.ing-icon-wrap { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(92,14,192,0.4); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.ing-icon { color: var(--vzqd-clr-accent-light); font-size: 0.75rem; }
.efsa-note { display: block; font-size: 0.75rem; color: var(--vzqd-clr-text-muted); margin-top: 0.75rem; line-height: 1.5; }
.ingredient-figure { margin: 2rem 0; border-radius: var(--vzqd-radius); overflow: hidden; }
.ingredient-figure img { width: 100%; border-radius: var(--vzqd-radius); }

.nrv-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.nrv-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.nrv-table th { background: rgba(92,14,192,0.3); color: var(--vzqd-clr-accent-light); padding: 0.75rem 1rem; text-align: left; font-family: var(--vzqd-font-head); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
.nrv-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--vzqd-clr-border); color: var(--vzqd-clr-text); vertical-align: top; }
.nrv-table tr:last-child td { border-bottom: none; }
.nrv-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.table-note { font-size: 0.8rem; color: var(--vzqd-clr-text-muted); margin-top: 0.5rem; }

.scorecard-wrap { overflow-x: auto; margin: 1.5rem 0; }
.scorecard-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.scorecard-table th { background: rgba(92,14,192,0.3); color: var(--vzqd-clr-accent-light); padding: 0.75rem 1rem; text-align: left; font-family: var(--vzqd-font-head); font-size: 0.8rem; }
.scorecard-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--vzqd-clr-border); }
.scorecard-table tr:last-child td { border-bottom: none; }
.score-good { color: var(--vzqd-clr-score-good); font-weight: 600; }
.score-neutral { color: var(--vzqd-clr-score-neutral); }
.score-mixed { color: var(--vzqd-clr-score-mixed); }

.uhbd { background: var(--vzqd-clr-surface-2); border-radius: var(--vzqd-radius); padding: 2rem; margin: 2.5rem 0; border: 1px solid var(--vzqd-clr-border); }
.calc-title { margin-top: 0; }
.calc-sub { color: var(--vzqd-clr-text-muted); font-size: 0.9rem; }
.calc-row { display: flex; align-items: center; gap: 1rem; margin: 1.25rem 0; flex-wrap: wrap; }
.calc-row label { font-weight: 600; font-size: 0.9rem; min-width: 160px; }
.calc-row select { background: var(--vzqd-clr-surface); border: 1px solid var(--vzqd-clr-border); color: var(--vzqd-clr-text); border-radius: var(--vzqd-radius-sm); padding: 0.5rem 1rem; font-family: var(--vzqd-font-body); font-size: 0.9rem; cursor: pointer; }
.calc-result { background: rgba(92,14,192,0.2); border-radius: var(--vzqd-radius-sm); padding: 1rem 1.25rem; font-size: 0.95rem; color: var(--vzqd-clr-text); }

.reviews-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.review-card { padding: 1.5rem; border-radius: var(--vzqd-radius); }
.review-stars img { margin-bottom: 0.75rem; }
.review-card blockquote { font-size: 0.9rem; color: var(--vzqd-clr-text); line-height: 1.65; margin: 0 0 0.75rem; font-style: italic; }
.review-card cite { font-size: 0.8rem; color: var(--vzqd-clr-text-muted); font-style: normal; font-weight: 600; }
.reviews-note { color: var(--vzqd-clr-text-muted); font-size: 0.9rem; margin-bottom: 0; }
.reviews-disclaimer { font-size: 0.8rem; color: var(--vzqd-clr-text-muted); margin-top: 1.5rem; }

.steps-band { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin: 2.5rem 0; }
.step-item { padding: 1.5rem; background: var(--vzqd-clr-surface-2); border-radius: var(--vzqd-radius); }
.step-num { display: block; font-family: var(--vzqd-font-head); font-size: 2.5rem; font-weight: 800; color: var(--vzqd-clr-accent-light); opacity: 0.6; line-height: 1; margin-bottom: 0.75rem; }
.lifestyle-figure { margin: 2rem 0; border-radius: var(--vzqd-radius); overflow: hidden; }
.lifestyle-figure img { width: 100%; border-radius: var(--vzqd-radius); }

.order-section { }
.order-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin: 2.5rem 0; }
.pack-display { }
.pack-img { border-radius: var(--vzqd-radius); width: 100%; max-width: 360px; margin: 0 auto 1.5rem; }
.pack-features { list-style: none; padding: 0; }
.pack-features li { padding: 0.4rem 0; border-bottom: 1px solid var(--vzqd-clr-border); font-size: 0.9rem; color: var(--vzqd-clr-text); }
.pack-features li::before { content: '✓ '; color: var(--vzqd-clr-fact-label); font-weight: 700; }
.pack-features li:last-child { border-bottom: none; }

.price-display { margin-bottom: 1.5rem; }
.price-original { display: inline-block; text-decoration: line-through; color: var(--vzqd-clr-text-muted); font-size: 1rem; margin-right: 0.5rem; }
.price-current { display: inline-block; font-family: var(--vzqd-font-head); font-size: 2rem; font-weight: 800; color: #fff; }
.price-badge { display: inline-block; background: var(--vzqd-clr-accent-2); color: #000; border-radius: var(--vzqd-radius-pill); padding: 0.2rem 0.75rem; font-size: 0.75rem; font-weight: 700; margin-left: 0.5rem; vertical-align: middle; }
.payment-note { font-size: 0.85rem; color: var(--vzqd-clr-text-muted); margin-bottom: 1.5rem; }

.umas { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label { font-size: 0.875rem; font-weight: 600; color: var(--vzqd-clr-text); }
.form-field input, .form-field textarea, .form-field select {
  background: var(--vzqd-clr-surface);
  border: 1px solid var(--vzqd-clr-border);
  border-radius: var(--vzqd-radius-sm);
  padding: 0.75rem 1rem;
  color: var(--vzqd-clr-text);
  font-family: var(--vzqd-font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--vzqd-clr-accent-light); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--vzqd-clr-text-muted); }
.form-check input[type="checkbox"] { margin-top: 0.15rem; flex-shrink: 0; width: 1rem; height: 1rem; cursor: pointer; accent-color: var(--vzqd-clr-accent); }
.order-refund { font-size: 0.8rem; color: var(--vzqd-clr-text-muted); margin-top: 0.75rem; text-align: center; }
.supplement-disclaimer { font-size: 0.8rem; color: var(--vzqd-clr-text-muted); line-height: 1.6; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--vzqd-clr-border); }

.faq-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.ufjp { background: var(--vzqd-clr-surface-2); border-radius: var(--vzqd-radius-sm); border: 1px solid var(--vzqd-clr-border); overflow: hidden; }
.ufjp summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--vzqd-clr-text); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.ufjp summary::after { content: '+'; font-size: 1.25rem; color: var(--vzqd-clr-accent-light); flex-shrink: 0; }
.ufjp[open] summary::after { content: '−'; }
.ufjp p { padding: 0 1.25rem 1rem; font-size: 0.9rem; color: var(--vzqd-clr-text-muted); margin: 0; }

.page-hero { padding: 4rem 0 3rem; }

.ing-detail-card { padding: 2rem; border-radius: var(--vzqd-radius); margin-bottom: 2rem; }
.ing-detail-card img { margin-bottom: 1.5rem; border-radius: var(--vzqd-radius-sm); }
.micro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.micro-card { padding: 1.25rem 1.5rem; border-radius: var(--vzqd-radius-sm); }
.micro-card h4 { color: var(--vzqd-clr-accent-light); margin-bottom: 0.5rem; }
.micro-card p { font-size: 0.875rem; color: var(--vzqd-clr-text-muted); margin: 0; }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.95rem; }
.map-container { margin-top: 1.5rem; border-radius: var(--vzqd-radius); overflow: hidden; }

.legal-page { padding: var(--vzqd-spacing-section) 0; }
.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page h2 { font-size: 1.15rem; margin-top: 2rem; margin-bottom: 0.5rem; color: var(--vzqd-clr-accent-light); }
.legal-page h3 { font-size: 1rem; margin-top: 1.5rem; color: var(--vzqd-clr-text); }
.legal-page code { background: var(--vzqd-clr-surface-2); padding: 0.15rem 0.4rem; border-radius: 4px; font-size: 0.85rem; color: var(--vzqd-clr-accent-light); }

.site-footer { background: var(--vzqd-clr-dark-band); border-top: 1px solid var(--vzqd-clr-border); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand p { font-size: 0.875rem; color: var(--vzqd-clr-text-muted); margin-top: 0.75rem; }
.footer-abn { font-size: 0.8rem; color: var(--vzqd-clr-text-muted); }
.footer-nav, .footer-legal { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav h4, .footer-legal h4 { color: var(--vzqd-clr-text); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.footer-nav a, .footer-legal a { color: var(--vzqd-clr-text-muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--vzqd-clr-accent-light); }
.footer-bottom { border-top: 1px solid var(--vzqd-clr-border); padding-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--vzqd-clr-text-muted); margin: 0; }
.supplement-disclaimer-footer { font-size: 0.78rem; color: var(--vzqd-clr-text-muted); line-height: 1.5; }

.ty-icon { font-size: 3rem; color: var(--vzqd-clr-fact-label); margin-bottom: 1rem; }

.article-wrap { }

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--vzqd-clr-surface); padding: 1rem 2rem; border-bottom: 1px solid var(--vzqd-clr-border); z-index: 99; }
  .uzoo { display: block; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .myths-grid { grid-template-columns: 1fr; }
  .ingredient-feature-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-band { grid-template-columns: 1fr; }
  .order-split { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .micro-grid { grid-template-columns: 1fr; }
  .scorecard-table { font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 1.6rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uicf{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}
.uicf.is-visible,.cookie-banner--visible,.uicf.show,.uicf.active{transform:none !important}
.uicf a{color:inherit;text-decoration:underline}
.uicf button{cursor:pointer}
.ugej{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}
.ugej.is-visible,.cookie-modal--visible,.ugej.show,.ugej.active{display:flex !important}
.ukgz,.ugej>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uagl .uzty,.uagl .uhbd,.uagl .uduf,.uagl .uhrm,.uufd .uzty,.uufd .uhbd,.uufd .uduf,.uufd .uhrm{background:#fff !important;color:#1a1a1a !important}
.uzty,.uhbd{color:#1a1a1a !important}
.uzty label,.uhbd label,.uzty p,.uhbd p,.uzty .urxe,.uzty span,.uhbd span,.ukah,.ukhb,.uduf .ugfi,.uduf .ugfi *{color:#1a1a1a !important}
.ukah,.ukhb{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uzty .uaas{color:#1a1a1a !important}
.uzty .uaas.is-sel{color:#fff !important}
.umas .uqbo{display:none}
.umas .uqbo.is-visible{display:block !important;color:#c0392b}
.umas .umlx,.umas [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.umas{color:#1a1a1a}
.uagl .umas,.uufd .umas{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uirf{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uirf img{width:100%;height:100%;object-fit:cover}
.ufem,.uudg{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ufem img,.uudg img{width:100%;height:100%;object-fit:cover;display:block}
.ufem img{opacity:.28}
.uudg img{opacity:.07}
*:has(> .ufem),*:has(> .uudg){position:relative}
.uwha{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)}
.uwha .ubsn{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uwha .ukvo{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uejc{margin:1.4rem auto;max-width:920px}
.uejc img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uznr{padding:3rem 0}
.uzxl{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uzxl img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uhrm{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.unvp{display:flex;overflow:hidden;gap:0 !important}
.ugmf{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ulaw{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}
.ummk{left:.5rem}.utni{right:.5rem}
.uduf .ugfi{display:none}.uduf .ugfi.is-active{display:block}
.uzty .uugs{display:block !important}
.uzty .uiln{display:flex;flex-wrap:wrap;gap:.5rem}
.uzty .uaas{cursor:pointer}
