:root {
  --vfal-clr-primary: #1a6b9a;
  --vfal-clr-primary-dark: #0f4a6e;
  --vfal-clr-accent: #e05a1a;
  --vfal-clr-accent-light: #f2c4a0;
  --vfal-clr-bg: #f5f0eb;
  --vfal-clr-bg-white: #ffffff;
  --vfal-clr-dark: #12202e;
  --vfal-clr-dark-mid: #1e3248;
  --vfal-clr-text: #1c2a38;
  --vfal-clr-text-muted: #5a6e80;
  --vfal-clr-border: #c8d8e4;
  --vfal-clr-star: #d4820a;
  --vfal-font-head: 'Zilla Slab', Georgia, serif;
  --vfal-font-body: 'Lato', system-ui, sans-serif;
  --vfal-radius: 24px;
  --vfal-radius-sm: 12px;
  --vfal-container: 1320px;
  --vfal-gap: 2rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--vfal-font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--vfal-clr-text);
  background: var(--vfal-clr-bg);
}

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

a { color: var(--vfal-clr-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--vfal-font-head);
  line-height: 1.2;
  color: var(--vfal-clr-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }

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

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

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

.section { padding: 5rem 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--vfal-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.75rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--vfal-clr-accent);
  color: #fff;
  border-color: var(--vfal-clr-accent);
}
.btn-primary:hover {
  background: var(--vfal-clr-primary-dark);
  border-color: var(--vfal-clr-primary-dark);
  text-decoration: none;
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--vfal-clr-primary-dark);
  border-color: var(--vfal-clr-primary-dark);
}
.btn-ghost:hover {
  background: var(--vfal-clr-primary-dark);
  color: #fff;
  text-decoration: none;
}
.btn-lg { padding: 0.9rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

.chip {
  display: inline-block;
  background: var(--vfal-clr-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.chip-outline {
  background: transparent;
  color: var(--vfal-clr-primary);
  border: 2px solid var(--vfal-clr-primary);
}

.uthm {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vfal-clr-bg-white);
  border-bottom: 1px solid var(--vfal-clr-border);
  padding: 0.9rem 0;
}
.uthm .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-logo {
  font-family: var(--vfal-font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--vfal-clr-dark);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo:hover { text-decoration: none; color: var(--vfal-clr-primary); }
.ukyb { flex: 1; }
.ukyb ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ukyb a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vfal-clr-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ukyb a:hover, .ukyb a[aria-current="page"] { color: var(--vfal-clr-primary); text-decoration: none; }
.header-cta { flex-shrink: 0; }
.uhul {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--vfal-clr-text);
  margin-left: auto;
}

.breadcrumb-bar {
  background: var(--vfal-clr-bg-white);
  border-bottom: 1px solid var(--vfal-clr-border);
  padding: 0.6rem 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--vfal-clr-text-muted);
}
.breadcrumb li:not(:last-child)::after { content: " /"; margin-left: 0.4rem; }
.breadcrumb a { color: var(--vfal-clr-primary); }

.section-hero {
  background: var(--vfal-clr-bg);
  padding: 6rem 0 5rem;
}
.hero-inner { max-width: 820px; }
.hero-meta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.hero-h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.h1-outlined {
  -webkit-text-stroke: 2px var(--vfal-clr-primary);
  color: transparent;
}

.hero-deck {
  font-size: 1.15rem;
  color: var(--vfal-clr-text-muted);
  max-width: 640px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--vfal-clr-text-muted); }
.stars { color: var(--vfal-clr-star); font-size: 1.1rem; letter-spacing: 0.05em; }

.stat-band { padding: 4rem 0; }
.ujmk {
  background: var(--vfal-clr-primary);
  color: #fff;
}
.ujmk h2, .ujmk h3, .ujmk p, .ujmk li { color: #fff; }
.ujmk a { color: var(--vfal-clr-accent-light); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--vfal-font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.85); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

.source-list { list-style: none; padding: 0; }
.source-list li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--vfal-clr-border);
  font-size: 0.95rem;
}
.editorial-note {
  font-size: 0.85rem;
  color: var(--vfal-clr-text-muted);
  font-style: italic;
  margin-top: 1rem;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.ingredient-card {
  border-radius: var(--vfal-radius-sm);
  overflow: hidden;
  background: var(--vfal-clr-bg-white);
}
.ingredient-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ingredient-card-body { padding: 1.25rem; }
.efsa-badge {
  display: inline-block;
  background: var(--vfal-clr-bg);
  color: var(--vfal-clr-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-top: 0.75rem;
  border: 1px solid var(--vfal-clr-primary);
}

.card-dashed { border: 2px dashed var(--vfal-clr-border); }

.pack-showcase {
  display: flex;
  gap: 3rem;
  align-items: center;
  background: var(--vfal-clr-bg-white);
  border-radius: var(--vfal-radius);
  padding: 2.5rem;
  margin-top: 3rem;
  border: 2px dashed var(--vfal-clr-border);
}
.product-pack {
  width: 220px;
  height: 220px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--vfal-radius-sm);
}

.habit-checklist { list-style: none; padding: 0; display: grid; gap: 1rem; }
.habit-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--vfal-radius-sm);
  background: var(--vfal-clr-bg-white);
}
.habit-num {
  font-family: var(--vfal-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vfal-clr-primary);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.review-card {
  background: var(--vfal-clr-bg-white);
  border-radius: var(--vfal-radius-sm);
  padding: 1.5rem;
}
.review-stars { color: var(--vfal-clr-star); font-size: 1.1rem; margin-bottom: 0.75rem; }
blockquote { font-style: italic; color: var(--vfal-clr-text); margin-bottom: 0.75rem; quotes: none; }
cite { font-size: 0.85rem; color: var(--vfal-clr-text-muted); font-style: normal; display: block; margin-bottom: 0.5rem; }
.review-disclosure { margin-top: 0.5rem; }
.reviews-aggregate { text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: var(--vfal-clr-text-muted); }

.lifestyle-tips-list { list-style: none; padding: 0; }
.lifestyle-tips-list li {
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--vfal-clr-border);
}

.uivf {
  background: var(--vfal-clr-dark);
  color: #fff;
}
.uivf h2, .uivf h3, .uivf p, .uivf li, .uivf label { color: #fff; }
.uivf a { color: var(--vfal-clr-accent-light); }
.uivf .supplement-disclaimer { color: rgba(255,255,255,0.7); }

.section-dark-mid {
  background: var(--vfal-clr-dark-mid);
  color: #fff;
}
.section-dark-mid h2, .section-dark-mid p, .section-dark-mid li { color: #fff; }
.section-dark-mid a { color: var(--vfal-clr-accent-light); }

.order-section { padding: 5rem 0; }
.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.order-features { list-style: none; padding: 0; margin: 1.5rem 0; }
.order-features li { padding: 0.4rem 0; font-size: 0.95rem; }
.price-display { margin: 1.5rem 0; }
.price-old {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  margin-right: 0.75rem;
}
.price-current {
  font-family: var(--vfal-font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.price-note { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

.order-form-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: var(--vfal-radius);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.order-form-wrap h3 { color: #fff; margin-bottom: 0.5rem; }
.order-form-wrap p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.9);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--vfal-radius-sm);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--vfal-font-body);
  font-size: 0.95rem;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--vfal-clr-accent-light);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  accent-color: var(--vfal-clr-accent);
}
.form-consent label { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 400; }
.form-consent a { color: var(--vfal-clr-accent-light); }
.supplement-disclaimer {
  font-size: 0.78rem;
  color: var(--vfal-clr-text-muted);
  line-height: 1.5;
  margin-top: 1rem;
}

.quiz-section { padding: 5rem 0; }
.quiz-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.quiz-wrap h2 { margin-bottom: 0.75rem; }
.quiz-wrap p { color: var(--vfal-clr-text-muted); margin-bottom: 2.5rem; }

.uadm { text-align: left; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-question {
  font-family: var(--vfal-font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--vfal-clr-text);
}
.quiz-options { display: grid; gap: 0.75rem; }
.quiz-opt {
  background: var(--vfal-clr-bg-white);
  border: 2px dashed var(--vfal-clr-border);
  border-radius: var(--vfal-radius-sm);
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-family: var(--vfal-font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: var(--vfal-clr-text);
}
.quiz-opt:hover {
  border-color: var(--vfal-clr-primary);
  background: var(--vfal-clr-bg);
}
.quiz-result { text-align: center; padding: 2rem; background: var(--vfal-clr-bg-white); border-radius: var(--vfal-radius); border: 2px dashed var(--vfal-clr-border); }
.quiz-result-title { margin-bottom: 1rem; }
.quiz-result-text { color: var(--vfal-clr-text-muted); margin-bottom: 1.5rem; }

.faq-section { padding: 5rem 0; }
.accordion { max-width: 860px; margin: 2rem auto 0; }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.15); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--vfal-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  padding: 1.2rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.accordion-trigger::after { content: "+"; font-size: 1.4rem; flex-shrink: 0; }
.accordion-trigger[aria-expanded="true"]::after { content: "−"; }
.accordion-panel { display: none; padding: 0 0 1.25rem; }
.accordion-panel p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 0.75rem; }
.accordion-panel a { color: var(--vfal-clr-accent-light); }

.site-footer { padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo { font-family: var(--vfal-font-head); font-size: 1.2rem; font-weight: 700; color: #fff; display: block; margin-bottom: 0.5rem; }
.footer-tagline { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-nzbn { color: rgba(255,255,255,0.55); font-size: 0.78rem; margin-bottom: 0.5rem; }
.footer-nav h3, .footer-legal-nav h3, .footer-disclaimer h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.footer-nav ul, .footer-legal-nav ul { list-style: none; padding: 0; }
.footer-nav a, .footer-legal-nav a { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.footer-nav a:hover, .footer-legal-nav a:hover { color: #fff; text-decoration: none; }
.footer-disclaimer p { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-only { padding: 1.25rem 0; }

.uqsk {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vfal-clr-dark);
  color: #fff;
  z-index: 999;
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.uqsk.is-visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--vfal-container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ugew { font-size: 0.88rem; color: rgba(255,255,255,0.85); flex: 1; min-width: 220px; margin: 0; }
.ugew a { color: var(--vfal-clr-accent-light); }
.unpc { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.page-hero {
  background: var(--vfal-clr-bg-white);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--vfal-clr-border);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-intro { font-size: 1.1rem; color: var(--vfal-clr-text-muted); max-width: 680px; }
.page-hero .chip { margin-bottom: 1rem; }

.article-body { max-width: 820px; }
.article-body h2 { margin-top: 2.5rem; }

.legal-body { max-width: 820px; }
.legal-body h2 { margin-top: 2.5rem; font-size: 1.3rem; }

.ingredient-hero-img { margin-bottom: 2.5rem; }
.ingredient-hero-img figcaption { font-size: 0.82rem; color: var(--vfal-clr-text-muted); margin-top: 0.5rem; text-align: center; }
.ingredient-table-wrap { overflow-x: auto; margin: 2rem 0; }
.ingredient-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.ingredient-table th { background: var(--vfal-clr-primary); color: #fff; padding: 0.75rem 1rem; text-align: left; font-size: 0.82rem; }
.ingredient-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--vfal-clr-border); vertical-align: top; }
.ingredient-table tr:nth-child(even) td { background: var(--vfal-clr-bg); }
.table-note { font-size: 0.8rem; color: var(--vfal-clr-text-muted); }

.contact-info-panel { padding: 1.5rem; border-radius: var(--vfal-radius-sm); margin-bottom: 1.5rem; background: var(--vfal-clr-bg-white); }
.map-container { border-radius: var(--vfal-radius-sm); overflow: hidden; margin-top: 1.5rem; }

.udwj .form-group label { color: var(--vfal-clr-text); }
.udwj .form-group input,
.udwj .form-group textarea {
  background: var(--vfal-clr-bg-white);
  border-color: var(--vfal-clr-border);
  color: var(--vfal-clr-text);
}
.udwj .form-group input::placeholder,
.udwj .form-group textarea::placeholder { color: var(--vfal-clr-text-muted); }
.udwj .form-consent label { color: var(--vfal-clr-text); }
.udwj .form-consent a { color: var(--vfal-clr-primary); }

.thank-you-page { text-align: center; min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.thank-you-page .container { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.thankyou-icon { font-size: 3.5rem; color: var(--vfal-clr-primary); }

.section-intro { color: var(--vfal-clr-text-muted); margin-bottom: 1.5rem; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-reverse { direction: ltr; }
  .order-inner { grid-template-columns: 1fr; }
  .pack-showcase { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .ukyb { display: none; }
  .ukyb.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--vfal-clr-bg-white); padding: 1rem 2rem; border-bottom: 1px solid var(--vfal-clr-border); z-index: 99; }
  .ukyb.open ul { flex-direction: column; gap: 0.75rem; }
  .uhul { display: block; }
  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .unpc { width: 100%; }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .habit-item { flex-direction: column; gap: 0.75rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uqsk{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}
.uqsk.is-visible,.cookie-banner--visible,.uqsk.show,.uqsk.active{transform:none !important}
.uqsk a{color:inherit;text-decoration:underline}
.uqsk button{cursor:pointer}
.uqbd{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}
.uqbd.is-visible,.cookie-modal--visible,.uqbd.show,.uqbd.active{display:flex !important}
.udyr,.uqbd>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uivf .uadm,.uivf .uigs,.uivf .ukco,.uivf .uxhh,.ujmk .uadm,.ujmk .uigs,.ujmk .ukco,.ujmk .uxhh{background:#fff !important;color:#1a1a1a !important}
.uadm,.uigs{color:#1a1a1a !important}
.uadm label,.uigs label,.uadm p,.uigs p,.uadm .udph,.uadm span,.uigs span,.uktx,.uprc,.ukco .unmp,.ukco .unmp *{color:#1a1a1a !important}
.uktx,.uprc{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uadm .uyiv{color:#1a1a1a !important}
.uadm .uyiv.is-sel{color:#fff !important}
.ungn .uyyf{display:none}
.ungn .uyyf.is-visible{display:block !important;color:#c0392b}
.ungn .uqxj,.ungn [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ungn{color:#1a1a1a}
.uivf .ungn,.ujmk .ungn{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ujab{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ujab img{width:100%;height:100%;object-fit:cover}
.ujeq,.udyi{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ujeq img,.udyi img{width:100%;height:100%;object-fit:cover;display:block}
.ujeq img{opacity:.28}
.udyi img{opacity:.07}
*:has(> .ujeq),*:has(> .udyi){position:relative}
.ufrj{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)}
.ufrj .usah{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ufrj .uyha{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uagp{margin:1.4rem auto;max-width:920px}
.uagp img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ungt{padding:3rem 0}
.uyca{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uyca img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uxhh{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.urkl{display:flex;overflow:hidden;gap:0 !important}
.uqbi{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uqmv{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}
.uhkd{left:.5rem}.uegu{right:.5rem}
.ukco .unmp{display:none}.ukco .unmp.is-active{display:block}
.uadm .uypy{display:block !important}
.uadm .unim{display:flex;flex-wrap:wrap;gap:.5rem}
.uadm .uyiv{cursor:pointer}
