:root {
  --vwlv-primary: #c97b63;
  --vwlv-primary-dark: #b86b52;
  --vwlv-primary-light: #e09278;
  --vwlv-accent: #d4845f;
  --vwlv-bg: #faf9f7;
  --vwlv-bg-alt: #f0ebe5;
  --vwlv-bg-dark: #e8dfd5;
  --vwlv-text: #1a1816;
  --vwlv-muted: #6b6460;
  --vwlv-light: #e3ddd6;
  --vwlv-radius: 12px;
  --vwlv-shadow: 0 2px 8px rgba(26,24,22,0.08);
  --vwlv-shadow-lg: 0 8px 24px rgba(26,24,22,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--vwlv-text); background: var(--vwlv-bg); line-height: 1.6; }
a { color: var(--vwlv-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--vwlv-primary-dark); }
h1, h2, h3, h4, h5, h6 { font-family: 'Unbounded', sans-serif; font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
p { margin-bottom: 1rem; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

.disclosure-bar { background: var(--vwlv-primary); color: white; text-align: center; padding: 0.75rem 1rem; font-size: 0.85rem; }

.uexu { background: white; border-bottom: 1px solid var(--vwlv-light); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { font-family: 'Unbounded', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--vwlv-primary); }

.uxkt { display: flex; gap: 2rem; align-items: center; }
.uxkt a { font-size: 0.95rem; color: var(--vwlv-text); }
.uxkt a:hover { color: var(--vwlv-primary); }

.udzy { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.udzy span { width: 24px; height: 2px; background: var(--vwlv-text); }

@media(max-width: 768px) {
  .udzy { display: flex; }
  .uxkt { display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; background: white; padding: 2rem 1.5rem; border-bottom: 1px solid var(--vwlv-light); }
  .uxkt.is-open { display: flex; }
  .udzy.is-open span:nth-child(1) { transform: rotate(45deg) translateY(10px); }
  .udzy.is-open span:nth-child(2) { opacity: 0; }
  .udzy.is-open span:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--vwlv-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--vwlv-primary);
  color: white;
}
.btn-primary:hover { background: var(--vwlv-primary-dark); }

.btn-outline {
  background: transparent;
  color: var(--vwlv-primary);
  border: 2px solid var(--vwlv-primary);
}
.btn-outline:hover { background: var(--vwlv-bg-alt); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

.hero {
  background: linear-gradient(135deg, rgba(201,123,99,0.1) 0%, rgba(212,132,95,0.05) 100%);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.hero-content-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-title { font-size: 2.8rem; margin-bottom: 1.5rem; }
.hero-lead { font-size: 1.1rem; color: var(--vwlv-muted); margin-bottom: 2rem; }
.hero-eyebrow { font-size: 0.85rem; color: var(--vwlv-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.hl { color: var(--vwlv-accent); }

.checklist { list-style: none; margin: 2rem 0; }
.checklist li { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.check-ic { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--vwlv-primary-light); color: white; border-radius: 50%; font-size: 0.9rem; flex-shrink: 0; }

.price-block { margin: 2rem 0; }
.price-old { display: inline-block; font-size: 1.1rem; color: var(--vwlv-muted); text-decoration: line-through; margin-right: 1rem; }
.price-new { display: inline-block; font-size: 2rem; color: var(--vwlv-primary); font-weight: 700; }
.price-badge { display: inline-block; margin-left: 1rem; background: var(--vwlv-accent); color: white; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }

.hero-actions { display: flex; gap: 1rem; margin: 2rem 0; flex-wrap: wrap; justify-content: center; }
.hero-note { font-size: 0.9rem; color: var(--vwlv-muted); margin: 1rem 0; }

.hero-rating { font-size: 1rem; color: var(--vwlv-muted); margin: 1rem 0; }
.stars { color: #ffc107; font-size: 1.2rem; }

.uwpi { max-width: 300px; margin: 2rem auto 0; }
.media { display: block; border-radius: var(--vwlv-radius); overflow: hidden; background: var(--vwlv-light); }
.media img { width: 100%; height: auto; display: block; }
.media-1x1 { aspect-ratio: 1; }
.media-4x3 { aspect-ratio: 4/3; }

.section { padding: 3rem 0; }
.section-title { font-size: 2rem; margin-bottom: 1.5rem; text-align: center; }
.section-lead { font-size: 1.05rem; color: var(--vwlv-muted); text-align: center; margin-bottom: 2.5rem; }
.section-note { font-size: 0.9rem; color: var(--vwlv-muted); text-align: center; margin-bottom: 2rem; }

.section-alt { background: var(--vwlv-bg-alt); }
.umwy { background: linear-gradient(135deg, var(--vwlv-primary) 0%, var(--vwlv-accent) 100%); color: white; }
.umwy h2 { color: white; }
.umwy .benefit-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; }

.uhgx { background: var(--vwlv-text); color: white; }
.uhgx h2 { color: white; }

.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.benefit-card { background: white; padding: 2rem; border-radius: var(--vwlv-radius); box-shadow: var(--vwlv-shadow); text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--vwlv-shadow-lg); }
.benefit-card i { font-size: 2.5rem; color: var(--vwlv-primary); margin-bottom: 1rem; }

.table-wrap { overflow-x: auto; margin: 2rem 0; }
.dose-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--vwlv-radius); overflow: hidden; box-shadow: var(--vwlv-shadow); }
.dose-table thead { background: var(--vwlv-bg-alt); }
.dose-table th, .dose-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--vwlv-light); }
.dose-table tbody tr:hover { background: var(--vwlv-bg-alt); }
.dose-note { font-size: 0.85rem; color: var(--vwlv-muted); text-align: center; margin-top: 1rem; }

.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin: 2rem 0; }
@media(max-width: 768px) {
  .split-block { grid-template-columns: 1fr; }
}

.timeline-v { }
.tl-step { display: flex; gap: 2rem; margin-bottom: 2rem; }
.tl-dot { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: var(--vwlv-primary); color: white; border-radius: 50%; font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.tl-step h3 { margin-bottom: 0.5rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial { background: white; padding: 2rem; border-radius: var(--vwlv-radius); box-shadow: var(--vwlv-shadow); border-left: 4px solid var(--vwlv-primary); }
.testimonial p { margin-bottom: 1.5rem; font-style: italic; }
.testimonial cite { display: block; font-size: 0.9rem; color: var(--vwlv-muted); font-style: normal; }
.testimonial-disclaimer { font-size: 0.85rem; color: var(--vwlv-muted); text-align: center; margin-bottom: 2rem; }

.trust-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.trust-item { padding: 2rem; }
.trust-item i { font-size: 2.5rem; color: var(--vwlv-primary); margin-bottom: 1rem; display: block; }

.faq { }
.ucoc { margin-bottom: 1rem; }
.uolu { width: 100%; background: var(--vwlv-bg-alt); padding: 1.5rem; border: none; border-radius: var(--vwlv-radius); cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; color: var(--vwlv-text); transition: background 0.3s; }
.uolu:hover { background: var(--vwlv-bg-dark); }
.uolu[aria-expanded="true"] { background: var(--vwlv-primary-light); color: white; }
.urlb { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.uolu[aria-expanded="true"] + .urlb { max-height: 500px; }
.faq-answer-inner { padding: 1.5rem; background: var(--vwlv-light); }
.faq-answer-inner p { margin-bottom: 1rem; }

.uytv, .uugv { margin: 2rem 0; }
.ualc { font-weight: 600; margin-bottom: 1.5rem; font-size: 1.1rem; }
.udqd { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.ummf { padding: 1rem; background: var(--vwlv-bg-alt); border: 2px solid transparent; border-radius: var(--vwlv-radius); cursor: pointer; font-weight: 600; transition: all 0.3s; }
.ummf:hover { border-color: var(--vwlv-primary); }
.ummf.is-selected { background: var(--vwlv-primary); color: white; border-color: var(--vwlv-primary); }

.lf-tablist { display: flex; gap: 1rem; border-bottom: 2px solid var(--vwlv-light); margin-bottom: 2rem; }
.ulbv { background: none; border: none; padding: 1rem 0; cursor: pointer; font-weight: 600; color: var(--vwlv-muted); border-bottom: 3px solid transparent; transition: all 0.3s; margin-bottom: -2px; }
.ulbv:hover { color: var(--vwlv-primary); }
.ulbv.is-active { color: var(--vwlv-primary); border-bottom-color: var(--vwlv-primary); }
.uzsy { display: none; }
.uzsy.is-active { display: block; }

.ukgh { background: var(--vwlv-bg-alt); padding: 2rem; border-radius: var(--vwlv-radius); margin-top: 2rem; }

.urni { font-family: 'Unbounded', sans-serif; font-size: 2.5rem; color: var(--vwlv-primary); font-weight: 700; }
.stats-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.stat-item { padding: 2rem; }
.stat-card { background: white; padding: 2rem; border-radius: var(--vwlv-radius); text-align: center; box-shadow: var(--vwlv-shadow); }
.stat-card i { font-size: 2.5rem; color: var(--vwlv-primary); margin-bottom: 1rem; display: block; }
.stat-note { font-size: 0.85rem; color: var(--vwlv-muted); text-align: center; margin-top: 2rem; }

.order-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media(max-width: 768px) {
  .order-layout { grid-template-columns: 1fr; }
}

.order-visual { text-align: center; }
.product-pack { width: 100%; max-width: 400px; height: auto; margin: 0 auto; }
.order-chips { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.chip { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--vwlv-light); padding: 0.75rem 1.5rem; border-radius: 20px; font-size: 0.9rem; width: fit-content; }

.ucrg { background: white; padding: 2.5rem; border-radius: var(--vwlv-radius); box-shadow: var(--vwlv-shadow); }
.ucrg h3 { font-size: 1.5rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.95rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--vwlv-light); border-radius: var(--vwlv-radius); font-family: inherit; font-size: 1rem; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--vwlv-primary); box-shadow: 0 0 0 3px rgba(201,123,99,0.1); }

.form-checkbox { display: flex; gap: 0.75rem; align-items: flex-start; }
.form-checkbox input { margin-top: 0.25rem; flex-shrink: 0; }
.form-checkbox label { margin-bottom: 0; }

.phone-row { display: flex; gap: 1rem; }
.phone-row select { padding: 0.75rem; border: 1px solid var(--vwlv-light); border-radius: var(--vwlv-radius); font-family: inherit; }
.phone-row input { flex: 1; }

.uavy { display: none; font-size: 0.85rem; color: #d32f2f; margin-top: 0.25rem; }
.uavy.is-visible { display: block; }

.ucee { display: none; position: absolute; left: -9999px; }

.order-note { font-size: 0.85rem; color: var(--vwlv-muted); text-align: center; margin-top: 1rem; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media(max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.uler { background: white; padding: 2.5rem; border-radius: var(--vwlv-radius); box-shadow: var(--vwlv-shadow); }
.uler h2 { margin-bottom: 2rem; }
.uler textarea { min-height: 150px; resize: vertical; }

.contact-info { }
.contact-info h2 { margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info-item i { font-size: 1.5rem; color: var(--vwlv-primary); flex-shrink: 0; margin-top: 0.25rem; }

.map-container { margin: 3rem 0; border-radius: var(--vwlv-radius); overflow: hidden; box-shadow: var(--vwlv-shadow); }

.site-footer { background: var(--vwlv-text); color: white; padding: 3rem 0 1rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 2rem; }
.footer-brand h4 { color: white; margin-bottom: 1rem; }
.footer-col h4 { color: white; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: white; }

.footer-legal-links { text-align: center; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem; }
.footer-legal-links a { color: rgba(255,255,255,0.7); margin: 0 0.75rem; }
.footer-legal-links a:hover { color: white; }

.footer-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-align: center; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem; }
.footer-bottom { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); padding: 1rem 0; }

.legal-content { max-width: 900px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.2rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legal-content ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.5rem; }

.uyqg { position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 2px solid var(--vwlv-light); padding: 1.5rem; box-shadow: 0 -4px 12px rgba(26,24,22,0.1); z-index: 999; }
.cookie-banner-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.cookie-banner-text { flex: 1; font-size: 0.9rem; }
.cookie-banner-actions { display: flex; gap: 1rem; }

.uldm { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,24,22,0.5); display: none; align-items: center; justify-content: center; z-index: 1001; }
.uldm.is-open { display: flex; }
.uuku { background: white; padding: 2rem; border-radius: var(--vwlv-radius); max-width: 500px; max-height: 90vh; overflow-y: auto; }
.uuku h2 { margin-bottom: 1rem; }

.cookie-toggle { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-bottom: 1px solid var(--vwlv-light); }
.cookie-toggle:last-child { border-bottom: none; }
.cookie-toggle h4 { margin-bottom: 0.25rem; }
.cookie-toggle p { margin-bottom: 0; font-size: 0.85rem; color: var(--vwlv-muted); }

.switch { position: relative; display: inline-block; width: 50px; height: 28px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--vwlv-light); transition: 0.3s; border-radius: 28px; }
.slider:before { position: absolute; content: ""; height: 22px; width: 22px; left: 3px; bottom: 3px; background-color: white; transition: 0.3s; border-radius: 50%; }
input:checked + .slider { background-color: var(--vwlv-primary); }
input:checked + .slider:before { transform: translateX(22px); }

.cookie-modal-actions { display: flex; gap: 1rem; margin-top: 2rem; }

.rating-summary { text-align: center; margin: 2rem 0; }
.bigstat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }

@media(max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
  .uxkt { gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { flex-wrap: wrap; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uyqg{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}
.uyqg.is-visible,.cookie-banner--visible,.uyqg.show,.uyqg.active{transform:none !important}
.uyqg a{color:inherit;text-decoration:underline}
.uyqg button{cursor:pointer}
.uldm{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}
.uldm.is-visible,.cookie-modal--visible,.uldm.show,.uldm.active{display:flex !important}
.uuku,.uldm>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uhgx .uytv,.uhgx .usyr,.uhgx .uugv,.uhgx .ulns,.umwy .uytv,.umwy .usyr,.umwy .uugv,.umwy .ulns{background:#fff !important;color:#1a1a1a !important}
.uytv,.usyr{color:#1a1a1a !important}
.uytv label,.usyr label,.uytv p,.usyr p,.uytv .ualc,.uytv span,.usyr span,.uiyo,.umtb,.uugv .uzsy,.uugv .uzsy *{color:#1a1a1a !important}
.uiyo,.umtb{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uytv .ummf{color:#1a1a1a !important}
.uytv .ummf.is-sel{color:#fff !important}
.ucrg .uavy{display:none}
.ucrg .uavy.is-visible{display:block !important;color:#c0392b}
.ucrg .ucee,.ucrg [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ucrg{color:#1a1a1a}
.uhgx .ucrg,.umwy .ucrg{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uwpi{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uwpi img{width:100%;height:100%;object-fit:cover}
.uope,.utmm{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uope img,.utmm img{width:100%;height:100%;object-fit:cover;display:block}
.uope img{opacity:.28}
.utmm img{opacity:.07}
*:has(> .uope),*:has(> .utmm){position:relative}
.ujhq{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)}
.ujhq .ukvc{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ujhq .umcv{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uuzq{margin:1.4rem auto;max-width:920px}
.uuzq img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.udpb{padding:3rem 0}
.uowz{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uowz img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ulns{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uucn{display:flex;overflow:hidden;gap:0 !important}
.uxgs{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ufct{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}
.uhfr{left:.5rem}.ulma{right:.5rem}
.uugv .uzsy{display:none}.uugv .uzsy.is-active{display:block}
.uytv .uoyw{display:block !important}
.uytv .udqd{display:flex;flex-wrap:wrap;gap:.5rem}
.uytv .ummf{cursor:pointer}
