:root {
  --vvbj-col-black: #0a0a0a;
  --vvbj-col-white: #ffffff;
  --vvbj-col-bg: #f4f6f9;
  --vvbj-col-accent: #166ca7;
  --vvbj-col-accent-dark: #0f4f7a;
  --vvbj-col-red: #ed1b24;
  --vvbj-col-gold: #bdab3c;
  --vvbj-col-grey: #818585;
  --vvbj-col-grey-light: #e8eaed;
  --vvbj-col-dark-band: #0d1117;
  --vvbj-col-text: #1a1a1a;
  --vvbj-col-text-muted: #5a5a5a;
  --vvbj-radius: 24px;
  --vvbj-radius-sm: 12px;
  --vvbj-radius-pill: 999px;
  --vvbj-container: 1080px;
  --vvbj-font-main: 'Outfit', sans-serif;
  --vvbj-shadow-card: 0 2px 16px rgba(0,0,0,.07);
  --vvbj-transition: .2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--vvbj-font-main);
  background: var(--vvbj-col-bg);
  color: var(--vvbj-col-text);
  font-size: 1rem;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--vvbj-radius-sm); }

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

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

h1, h2, h3, h4 { font-family: var(--vvbj-font-main); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: .5rem; }

h1 em, h2 em, h3 em { font-style: italic; font-weight: 800; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

.section-intro { color: var(--vvbj-col-text-muted); font-size: 1.05rem; margin-bottom: 2rem; max-width: 700px; }

.card-dashed {
  border: 2px dashed var(--vvbj-col-grey-light);
  border-radius: var(--vvbj-radius);
  background: var(--vvbj-col-white);
  padding: 1.5rem;
}

.btn-pill {
  display: inline-block;
  border-radius: var(--vvbj-radius-pill);
  padding: .7rem 2rem;
  font-family: var(--vvbj-font-main);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--vvbj-transition);
  border: 2px solid transparent;
}

.btn-header-cta {
  background: var(--vvbj-col-accent);
  color: var(--vvbj-col-white);
  border-color: var(--vvbj-col-accent);
}
.btn-header-cta:hover { background: var(--vvbj-col-accent-dark); border-color: var(--vvbj-col-accent-dark); color: var(--vvbj-col-white); }

.btn-hero-cta {
  background: var(--vvbj-col-white);
  color: var(--vvbj-col-accent-dark);
  border-color: var(--vvbj-col-white);
  font-size: 1.05rem;
  padding: .9rem 2.4rem;
}
.btn-hero-cta:hover { background: var(--vvbj-col-grey-light); color: var(--vvbj-col-accent-dark); }

.btn-quiz-cta, .btn-order-submit {
  background: var(--vvbj-col-white);
  color: var(--vvbj-col-accent-dark);
  border-color: var(--vvbj-col-white);
  width: 100%;
  text-align: center;
  padding: .9rem 1.5rem;
  font-size: 1.05rem;
}
.btn-order-submit { background: var(--vvbj-col-gold); color: var(--vvbj-col-black); border-color: var(--vvbj-col-gold); }
.btn-order-submit:hover { background: #a8942f; border-color: #a8942f; color: var(--vvbj-col-black); }

.uiwi {
  background: var(--vvbj-col-black);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: .8rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.site-logo {
  font-family: var(--vvbj-font-main);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--vvbj-col-white);
  text-decoration: none;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.site-nav { flex: 1; }
.site-nav ul { display: flex; gap: 1.5rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.site-nav a { color: #ccc; text-decoration: none; font-size: .9rem; font-weight: 500; transition: var(--vvbj-transition); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--vvbj-col-white); }

.breadcrumbs { padding: .6rem 0; background: var(--vvbj-col-white); border-bottom: 1px solid var(--vvbj-col-grey-light); }
.breadcrumbs ol { display: flex; gap: .5rem; list-style: none; padding: 0; margin: 0; font-size: .85rem; color: var(--vvbj-col-text-muted); flex-wrap: wrap; }
.breadcrumbs li + li::before { content: '›'; margin-right: .5rem; }
.breadcrumbs a { color: var(--vvbj-col-accent); text-decoration: none; }

.section-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.82) 40%, rgba(22,108,167,.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 24px;
  max-width: 720px;
  color: var(--vvbj-col-white);
}
.hero-label {
  display: inline-block;
  background: var(--vvbj-col-red);
  color: var(--vvbj-col-white);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .9rem;
  border-radius: var(--vvbj-radius-pill);
  margin-bottom: 1.2rem;
}
.hero-content h1 { color: var(--vvbj-col-white); margin-bottom: 1rem; font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.hero-sub { font-size: 1.15rem; opacity: .9; margin-bottom: 1.5rem; line-height: 1.6; }
.hero-meta-row { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.8rem; }
.hero-rating-stars { color: var(--vvbj-col-gold); font-size: 1.2rem; }
.hero-rating-count { color: rgba(255,255,255,.8); font-size: .9rem; }

.band-intro { padding: 2rem 0; }
.band-intro__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.band-intro__item { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.9); font-size: .95rem; font-weight: 500; }
.band-icon { font-size: 1.4rem; flex-shrink: 0; }

.unlp { background: var(--vvbj-col-dark-band); color: var(--vvbj-col-white); }
.unlp h2 { color: var(--vvbj-col-white); }
.unlp .section-intro { color: rgba(255,255,255,.75); }
.uiou { background: var(--vvbj-col-accent-dark); color: var(--vvbj-col-white); }
.uiou h2 { color: var(--vvbj-col-white); }
.uiou .section-intro { color: rgba(255,255,255,.8); }

.section-article { padding: 4rem 0; }
.article-byline { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; color: var(--vvbj-col-text-muted); font-size: .88rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--vvbj-col-grey-light); }
.byline-sep { color: var(--vvbj-col-grey-light); }
.byline-category { background: var(--vvbj-col-grey-light); border-radius: var(--vvbj-radius-pill); padding: .2rem .75rem; font-size: .8rem; }

.drop-cap-wrap .drop-cap::first-letter { float: left; font-size: 3.8rem; line-height: .85; font-weight: 800; margin-right: .12em; margin-top: .08em; color: var(--vvbj-col-accent); font-family: Georgia, serif; }

.pull-quote { border-left: 4px solid var(--vvbj-col-accent); margin: 2rem 0; padding: 1rem 1.5rem; font-size: 1.15rem; font-style: italic; color: var(--vvbj-col-accent-dark); background: rgba(22,108,167,.06); border-radius: 0 var(--vvbj-radius-sm) var(--vvbj-radius-sm) 0; }

.section-scorecard { padding: 4rem 0; }
.table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--vvbj-radius); }
.scorecard-table, .ingredients-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  background: var(--vvbj-col-white);
}
.scorecard-table th, .ingredients-table th { background: var(--vvbj-col-accent); color: var(--vvbj-col-white); padding: .75rem 1rem; text-align: left; font-weight: 600; }
.scorecard-table td, .ingredients-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--vvbj-col-grey-light); vertical-align: top; }
.scorecard-table tr:last-child td, .ingredients-table tr:last-child td { border-bottom: none; }
.scorecard-table tbody tr:hover, .ingredients-table tbody tr:hover { background: rgba(22,108,167,.04); }
.score-good { color: #1a7a3a; font-weight: 600; }
.score-mid { color: var(--vvbj-col-text-muted); }
.score-low { color: var(--vvbj-col-red); }
.scorecard-note { font-size: .82rem; color: var(--vvbj-col-text-muted); margin-top: .5rem; }

.section-about { padding: 4rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.method-list { list-style: none; padding: 0; }
.method-list li { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.icon-circle { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--vvbj-col-accent); color: var(--vvbj-col-white); font-size: .85rem; font-weight: 700; flex-shrink: 0; }
.about-image img { width: 100%; border-radius: var(--vvbj-radius); }

.section-routine { padding: 4rem 0; background: var(--vvbj-col-white); }
.routine-image { width: 100%; border-radius: var(--vvbj-radius); margin: 1.5rem 0 2.5rem; object-fit: cover; max-height: 380px; }
.timeline-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline-step { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-left: 2px solid var(--vvbj-col-grey-light); padding-left: 2rem; position: relative; margin-left: 1rem; }
.timeline-step:last-child { border-left-color: transparent; }
.timeline-marker { position: absolute; left: -1.1rem; top: 1.5rem; }
.timeline-num { display: flex; align-items: center; justify-content: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--vvbj-col-accent); color: var(--vvbj-col-white); font-weight: 700; font-size: .95rem; border: 3px solid var(--vvbj-col-bg); }
.timeline-body { flex: 1; }
.timeline-body h3 { margin-bottom: .4rem; }

.section-reviews { padding: 4rem 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.review-card { }
.review-card blockquote { font-style: italic; margin-bottom: .75rem; color: rgba(255,255,255,.9); }
.review-stars { color: var(--vvbj-col-gold); font-size: 1.1rem; margin-bottom: .5rem; }
.review-attribution { font-weight: 600; font-size: .88rem; color: rgba(255,255,255,.7); }
.review-disclosure { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .5rem; }
.review-card.card-dashed { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.05); }
.review-avatar-img { border-radius: var(--vvbj-radius); max-width: 300px; margin: 2rem auto 0; }

.section-myths { padding: 4rem 0; }
.myths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.myth-card { }
.myth-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--vvbj-col-red); margin-bottom: .5rem; }

.section-ingredients { padding: 4rem 0; background: var(--vvbj-col-white); }
.ingredients-img { width: 100%; border-radius: var(--vvbj-radius); margin-bottom: 2rem; object-fit: cover; max-height: 420px; }
.ingredients-disclaimer { font-size: .82rem; color: var(--vvbj-col-text-muted); margin-top: 1.5rem; padding: 1rem; background: var(--vvbj-col-bg); border-radius: var(--vvbj-radius-sm); border-left: 3px solid var(--vvbj-col-accent); }

.section-checklist { padding: 4rem 0; }
.checklist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.checklist-week h3 { margin-bottom: 1rem; font-size: 1rem; }
.checklist-items { list-style: none; padding: 0; }
.checklist-items li { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: .6rem; font-size: .92rem; }
.check { color: var(--vvbj-col-accent); font-size: 1.1rem; flex-shrink: 0; }

.section-quiz-wrap { padding: 4rem 0; }
.section-quiz-wrap h2 { color: var(--vvbj-col-white); }
.ukqw { max-width: 680px; margin: 0 auto; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-question { font-size: 1.1rem; font-weight: 600; color: var(--vvbj-col-white); margin-bottom: 1.2rem; }
.quiz-options { display: flex; flex-direction: column; gap: .75rem; }
.quiz-opt {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.25);
  color: var(--vvbj-col-white);
  cursor: pointer;
  text-align: left;
  font-family: var(--vvbj-font-main);
  font-size: .95rem;
  width: 100%;
  padding: .9rem 1.2rem;
  border-radius: var(--vvbj-radius);
  transition: var(--vvbj-transition);
}
.quiz-opt:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.quiz-result { display: none; }
.quiz-result.active { display: block; }
.quiz-result-inner { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.07); }
.quiz-result-title { font-weight: 700; font-size: 1.1rem; color: var(--vvbj-col-white); margin-bottom: .75rem; }
.quiz-result-text { color: rgba(255,255,255,.9); margin-bottom: 1rem; }
.quiz-disclaimer { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 1.2rem; }

.section-order { padding: 5rem 0; }
.order-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.order-product-visual { text-align: center; }
.product-pack { width: 100%; max-width: 320px; margin: 0 auto; border-radius: var(--vvbj-radius); aspect-ratio: 1/1; object-fit: contain; }
.order-trust-badges { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.5rem; }
.trust-badge { display: block; text-align: center; font-size: .85rem; color: rgba(255,255,255,.8); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); }
.order-form-wrap h2 { color: var(--vvbj-col-white); margin-bottom: .75rem; }
.order-sub { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }
.order-price { color: var(--vvbj-col-gold); font-size: 1.3rem; }
.utpr { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.85); }
.form-row input[type="text"], .form-row input[type="tel"], .form-row input[type="email"], .form-row textarea {
  padding: .75rem 1rem;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--vvbj-radius-sm);
  background: rgba(255,255,255,.1);
  color: var(--vvbj-col-white);
  font-family: var(--vvbj-font-main);
  font-size: .95rem;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,.4); }
.form-row-consent .consent-label { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: rgba(255,255,255,.7); cursor: pointer; }
.form-row-consent input[type="checkbox"] { margin-top: .2rem; flex-shrink: 0; width: 1rem; height: 1rem; }
.order-legal { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 1rem; }

.section-faq { padding: 4rem 0; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 800px; }
.uwmm { }
.uwmm summary { font-weight: 600; cursor: pointer; padding: .5rem 0; font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.uwmm summary::after { content: '+'; font-size: 1.3rem; color: var(--vvbj-col-accent); flex-shrink: 0; }
.uwmm[open] summary::after { content: '−'; }
.uwmm p { margin-top: .75rem; font-size: .93rem; color: var(--vvbj-col-text-muted); }

.section-legal { padding: 3rem 0 4rem; }
.section-legal h2 { font-size: 1.15rem; margin-top: 2rem; margin-bottom: .6rem; color: var(--vvbj-col-accent-dark); }
.section-legal h2:first-child { margin-top: 0; }
.section-legal ul, .section-legal ol { font-size: .95rem; color: var(--vvbj-col-text-muted); }
.section-legal p { font-size: .95rem; color: var(--vvbj-col-text-muted); }

.section-contact { padding: 4rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; margin-bottom: 2.5rem; }
.contact-info h2, .contact-form-wrap h2 { margin-bottom: 1rem; }
.ukhj { display: flex; flex-direction: column; gap: 1rem; }
.ukhj input, .ukhj textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--vvbj-col-grey-light);
  border-radius: var(--vvbj-radius-sm);
  font-family: var(--vvbj-font-main);
  font-size: .95rem;
  background: var(--vvbj-col-white);
}
.map-container { border-radius: var(--vvbj-radius); overflow: hidden; margin-top: 1rem; }
.map-container iframe { display: block; }

.page-hero { background: var(--vvbj-col-dark-band); color: var(--vvbj-col-white); padding: 3.5rem 0 2.5rem; }
.page-hero h1 { color: var(--vvbj-col-white); margin-bottom: .75rem; }
.page-hero-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; }
.page-hero-sm { padding: 2.5rem 0 2rem; }

.thankyou-main { min-height: 60vh; display: flex; align-items: center; padding: 4rem 0; }
.thankyou-inner { display: flex; justify-content: center; }
.thankyou-box { max-width: 520px; text-align: center; padding: 2.5rem; }
.thankyou-icon { font-size: 3rem; color: #1a7a3a; margin-bottom: 1rem; }

.uqxm {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vvbj-col-dark-band);
  color: var(--vvbj-col-white);
  padding: 1.2rem;
  z-index: 9999;
  display: none;
  border-top: 3px solid var(--vvbj-col-accent);
}
.uqxm.is-visible { display: block; }
.cookie-banner__inner { max-width: var(--vvbj-container); margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.cookie-banner__text { font-size: .88rem; color: rgba(255,255,255,.85); margin: 0; }
.cookie-banner__text a { color: var(--vvbj-col-gold); }
.cookie-banner__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-cookie-accept, .btn-cookie-reject, .btn-cookie-settings, .btn-cookie-save {
  border-radius: var(--vvbj-radius-pill);
  padding: .45rem 1.2rem;
  font-family: var(--vvbj-font-main);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--vvbj-transition);
}
.btn-cookie-accept { background: var(--vvbj-col-accent); color: var(--vvbj-col-white); border-color: var(--vvbj-col-accent); }
.btn-cookie-reject { background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.3); }
.btn-cookie-settings { background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.3); }
.btn-cookie-save { background: var(--vvbj-col-gold); color: var(--vvbj-col-black); }
.cookie-settings-panel { margin-top: .5rem; display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: .85rem; }
.cookie-settings-panel label { display: flex; align-items: center; gap: .4rem; cursor: pointer; }

.site-footer { padding: 3rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: start; }
.footer-logo { font-weight: 800; font-size: 1.1rem; color: var(--vvbj-col-white); display: block; margin-bottom: .5rem; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; }
.footer-company { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: .4rem; }
.footer-email a { color: var(--vvbj-col-gold); font-size: .85rem; }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; list-style: none; padding: 0; margin-bottom: 1rem; }
.footer-nav a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .85rem; }
.footer-nav a:hover { color: var(--vvbj-col-white); }
.footer-disclaimer { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.2rem; margin-top: .5rem; }
.footer-disclaimer p { font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: .4rem; }

@media (max-width: 768px) {
  .about-grid, .order-layout, .contact-grid, .footer-inner { grid-template-columns: 1fr; }
  .site-nav ul { gap: .75rem; }
  .hero-content { padding: 3rem 24px; }
  .section-hero { min-height: 70vh; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uqxm{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}
.uqxm.is-visible,.cookie-banner--visible,.uqxm.show,.uqxm.active{transform:none !important}
.uqxm a{color:inherit;text-decoration:underline}
.uqxm button{cursor:pointer}
.uxff{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}
.uxff.is-visible,.cookie-modal--visible,.uxff.show,.uxff.active{display:flex !important}
.ufjm,.uxff>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.unlp .ukqw,.unlp .ujlk,.unlp .uyww,.unlp .upjp,.uiou .ukqw,.uiou .ujlk,.uiou .uyww,.uiou .upjp{background:#fff !important;color:#1a1a1a !important}
.ukqw,.ujlk{color:#1a1a1a !important}
.ukqw label,.ujlk label,.ukqw p,.ujlk p,.ukqw .ubxb,.ukqw span,.ujlk span,.ueyq,.uzds,.uyww .uvlz,.uyww .uvlz *{color:#1a1a1a !important}
.ueyq,.uzds{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ukqw .usno{color:#1a1a1a !important}
.ukqw .usno.is-sel{color:#fff !important}
.utpr .uxkz{display:none}
.utpr .uxkz.is-visible{display:block !important;color:#c0392b}
.utpr .uszx,.utpr [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.utpr{color:#1a1a1a}
.unlp .utpr,.uiou .utpr{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uigv{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uigv img{width:100%;height:100%;object-fit:cover}
.utcp,.ubqp{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.utcp img,.ubqp img{width:100%;height:100%;object-fit:cover;display:block}
.utcp img{opacity:.28}
.ubqp img{opacity:.07}
*:has(> .utcp),*:has(> .ubqp){position:relative}
.upgy{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)}
.upgy .ubch{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.upgy .ukxl{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uyuc{margin:1.4rem auto;max-width:920px}
.uyuc img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uzhq{padding:3rem 0}
.uhiz{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uhiz img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.upjp{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uwgp{display:flex;overflow:hidden;gap:0 !important}
.ucml{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.usjz{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}
.utjw{left:.5rem}.ujic{right:.5rem}
.uyww .uvlz{display:none}.uyww .uvlz.is-active{display:block}
.ukqw .uvqk{display:block !important}
.ukqw .uxiu{display:flex;flex-wrap:wrap;gap:.5rem}
.ukqw .usno{cursor:pointer}
