:root {
  --vdxy-accent: #1e5a9a;
  --vdxy-accent-dark: #0f3d6f;
  --vdxy-accent-light: #2d7bb6;
  --vdxy-bg: #f9f8f7;
  --vdxy-bg-alt: #eff0f2;
  --vdxy-text: #1a1a1a;
  --vdxy-text-muted: #6b7280;
  --vdxy-border: #e5e7eb;
  --vdxy-radius-md: 8px;
  --vdxy-radius-lg: 12px;
  --vdxy-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --vdxy-shadow: 0 4px 12px rgba(0,0,0,0.08);
  --vdxy-shadow-lg: 0 12px 28px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--vdxy-text);
  background: var(--vdxy-bg);
}

a { color: var(--vdxy-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.ubhu {
  background: white;
  border-bottom: 1px solid var(--vdxy-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--vdxy-shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--vdxy-text);
  flex-shrink: 0;
}

.ulrf {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.ulrf span {
  width: 24px;
  height: 2px;
  background: var(--vdxy-text);
  border-radius: 1px;
  transition: all 0.3s;
}

.uqls {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.uqls a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--vdxy-text);
  transition: color 0.2s;
}

.uqls a:hover { color: var(--vdxy-accent); text-decoration: none; }

.disclosure-bar {
  background: var(--vdxy-bg-alt);
  padding: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--vdxy-text-muted);
  border-bottom: 1px solid var(--vdxy-border);
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  background: white;
  overflow: hidden;
}

.uyin {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 0;
  opacity: 0.08;
}

.uyin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--vdxy-text-muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--vdxy-bg-alt);
  padding: 0.4rem 0.8rem;
  border-radius: var(--vdxy-radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vdxy-accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--vdxy-text-muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {}

.hero-visual {
  max-width: 100%;
  height: auto;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--vdxy-text-muted);
  margin: 1.5rem 0;
}

.stars {
  font-size: 1rem;
  color: #fca311;
  letter-spacing: 2px;
}

.checklist {
  list-style: none;
  margin: 1.5rem 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--vdxy-text);
}

.check-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--vdxy-accent);
  color: white;
  border-radius: 50%;
  font-size: 0.6rem;
  flex-shrink: 0;
}

.price-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.price-old {
  font-size: 1.1rem;
  color: var(--vdxy-text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.price-new {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--vdxy-accent);
}

.price-badge {
  background: var(--vdxy-accent);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: var(--vdxy-radius-md);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--vdxy-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--vdxy-accent);
  color: white;
}

.btn-primary:hover {
  background: var(--vdxy-accent-dark);
  box-shadow: var(--vdxy-shadow);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--vdxy-accent);
  border: 2px solid var(--vdxy-accent);
}

.btn-outline:hover {
  background: var(--vdxy-bg-alt);
  text-decoration: none;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Sections */
.section {
  padding: 3rem 0;
}

.section-alt { background: var(--vdxy-bg-alt); }
.uhms { background: #1a1a2e; color: white; }

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

/* Grids */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: var(--vdxy-radius-lg);
  box-shadow: var(--vdxy-shadow-sm);
  transition: box-shadow 0.3s;
}

.uhms .benefit-card { background: rgba(255,255,255,0.08); }

.benefit-card:hover { box-shadow: var(--vdxy-shadow); }

.benefit-card i {
  display: block;
  font-size: 2rem;
  color: var(--vdxy-accent);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--vdxy-text-muted);
  font-size: 0.95rem;
}

.uhms .benefit-card p { color: rgba(255,255,255,0.7); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: var(--vdxy-radius-lg);
  box-shadow: var(--vdxy-shadow-sm);
}

.uhms .testimonial { background: rgba(255,255,255,0.08); color: white; }

.testimonial .stars { display: block; margin-bottom: 1rem; }

.testimonial p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial cite {
  display: block;
  font-size: 0.85rem;
  color: var(--vdxy-text-muted);
  font-style: normal;
}

.uhms .testimonial cite { color: rgba(255,255,255,0.6); }

.testimonial-disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--vdxy-text-muted);
  margin-bottom: 2rem;
}

/* Tables */
.table-wrap { overflow-x: auto; margin: 2rem 0; }

.dose-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.dose-table thead {
  background: var(--vdxy-bg-alt);
  border-bottom: 2px solid var(--vdxy-border);
}

.uhms .dose-table thead { background: rgba(255,255,255,0.08); }

.dose-table th, .dose-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--vdxy-border);
}

.uhms .dose-table { border-color: rgba(255,255,255,0.2); }

.dose-table th {
  font-weight: 600;
  color: var(--vdxy-text);
}

.uhms .dose-table th { color: white; }

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--vdxy-border);
  border-radius: var(--vdxy-radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
  color: var(--vdxy-text);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--vdxy-accent);
  box-shadow: 0 0 0 3px rgba(30, 90, 154, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.usns {
  display: none;
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #d32f2f;
}

.form-group.error .usns {
  display: block;
}

.unps {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.phone-row {
  display: flex;
  gap: 0.5rem;
}

.phone-row select {
  width: auto;
  flex-shrink: 0;
}

.phone-row input {
  flex: 1;
}

/* Order section */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.unyv {
  background: white;
  padding: 2rem;
  border-radius: var(--vdxy-radius-lg);
  box-shadow: var(--vdxy-shadow);
}

.unyv h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.order-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-pack {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(var(--vdxy-shadow));
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--vdxy-bg-alt);
  border-radius: var(--vdxy-radius-md);
  font-size: 0.85rem;
  color: var(--vdxy-text);
}

.chip i { color: var(--vdxy-accent); }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }

.uwyt {
  margin-bottom: 1rem;
  border: 1px solid var(--vdxy-border);
  border-radius: var(--vdxy-radius-lg);
  overflow: hidden;
}

.usnn {
  width: 100%;
  padding: 1.25rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.usnn:hover { background: var(--vdxy-bg-alt); }

.usnn i {
  transition: transform 0.3s;
}

.uwyt[open] .usnn i {
  transform: rotate(180deg);
}

.udfi {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.uwyt[open] .udfi {
  max-height: 1000px;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--vdxy-text-muted);
}

.faq-answer-inner p { margin-bottom: 0.75rem; }

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h4, .footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; text-decoration: none; }

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-legal-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: white; }

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

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Misc */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.timeline-v {
  max-width: 600px;
  margin: 0 auto;
}

.tl-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.tl-dot {
  width: 44px;
  height: 44px;
  background: var(--vdxy-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.tl-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tl-step p {
  color: var(--vdxy-text-muted);
  font-size: 0.95rem;
}

.cta-band {
  text-align: center;
  padding: 2rem;
  background: var(--vdxy-bg-alt);
  border-radius: var(--vdxy-radius-lg);
}

.cta-band h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: var(--vdxy-text-muted);
  margin-bottom: 1.5rem;
}

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

.bigstat b {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bigstat span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.step-item {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--vdxy-accent);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--vdxy-text-muted);
  margin-top: 1.5rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
}

.trust-item i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.trust-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Cookies */
.uyib {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--vdxy-border);
  box-shadow: var(--vdxy-shadow-lg);
  z-index: 1000;
  padding: 1.5rem;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.uguw {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.uguw[aria-hidden="true"] { display: none; }

.uezq {
  background: white;
  border-radius: var(--vdxy-radius-lg);
  max-width: 500px;
  padding: 2rem;
  box-shadow: var(--vdxy-shadow-lg);
}

.uezq h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--vdxy-border);
}

.cookie-toggle:last-of-type { border-bottom: none; }

.cookie-toggle h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cookie-toggle p {
  font-size: 0.8rem;
  color: var(--vdxy-text-muted);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--vdxy-border);
  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(--vdxy-accent);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.utvb { background: white; padding: 2rem; border-radius: var(--vdxy-radius-lg); box-shadow: var(--vdxy-shadow-sm); }

.contact-info-panel {
  background: var(--vdxy-bg-alt);
  padding: 2rem;
  border-radius: var(--vdxy-radius-lg);
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--vdxy-accent);
  flex-shrink: 0;
}

.map-container {
  height: 450px;
  border-radius: var(--vdxy-radius-lg);
  overflow: hidden;
  margin: 2rem 0;
}

.calc-label {
  display: block;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.calc-label input {
  margin-right: 0.5rem;
}

.calc-info {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--vdxy-text-muted);
}

.utqf {
  background: var(--vdxy-bg-alt);
  padding: 1rem;
  border-radius: var(--vdxy-radius-md);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.utqf[hidden] { display: none; }

.uaim {
  font-weight: 700;
  color: var(--vdxy-accent);
}

.ugde {}

.lf-tablist {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid var(--vdxy-border);
  margin-bottom: 1.5rem;
}

.uoow {
  background: none;
  border: none;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: border-color 0.3s;
}

.uoow:hover { border-bottom-color: var(--vdxy-border); }

.uoow.is-active {
  border-bottom-color: var(--vdxy-accent);
  color: var(--vdxy-accent);
}

.uhsg {
  display: none;
}

.uhsg.is-active {
  display: block;
}

.media {
  display: block;
  background: var(--vdxy-bg-alt);
  border-radius: var(--vdxy-radius-lg);
  overflow: hidden;
}

.media img {
  width: 100%;
  height: auto;
  display: block;
}

.media-1x1 { aspect-ratio: 1; }
.media-3x4 { aspect-ratio: 3/4; }
.media-4x3 { aspect-ratio: 4/3; }

.muted { color: var(--vdxy-text-muted); }

@media (max-width: 768px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.4rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .split-block { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero-actions, .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn { width: 100%; }
  .uqls {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: white;
    border-top: 1px solid var(--vdxy-border);
    padding: 1rem 0;
  }
  .uqls.active { display: flex; }
  .ulrf { display: flex; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uyib{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}
.uyib.is-visible,.cookie-banner--visible,.uyib.show,.uyib.active{transform:none !important}
.uyib a{color:inherit;text-decoration:underline}
.uyib button{cursor:pointer}
.uguw{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}
.uguw.is-visible,.cookie-modal--visible,.uguw.show,.uguw.active{display:flex !important}
.uezq,.uguw>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uhms .uavb,.uhms .ukvs,.uhms .ugde,.uhms .uait,.utkn .uavb,.utkn .ukvs,.utkn .ugde,.utkn .uait{background:#fff !important;color:#1a1a1a !important}
.uavb,.ukvs{color:#1a1a1a !important}
.uavb label,.ukvs label,.uavb p,.ukvs p,.uavb .utuj,.uavb span,.ukvs span,.ulvj,.utqf,.ugde .uhsg,.ugde .uhsg *{color:#1a1a1a !important}
.ulvj,.utqf{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uavb .uqvu{color:#1a1a1a !important}
.uavb .uqvu.is-sel{color:#fff !important}
.unyv .usns{display:none}
.unyv .usns.is-visible{display:block !important;color:#c0392b}
.unyv .unps,.unyv [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.unyv{color:#1a1a1a}
.uhms .unyv,.utkn .unyv{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uqyj{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uqyj img{width:100%;height:100%;object-fit:cover}
.uyin,.uyob{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uyin img,.uyob img{width:100%;height:100%;object-fit:cover;display:block}
.uyin img{opacity:.28}
.uyob img{opacity:.07}
*:has(> .uyin),*:has(> .uyob){position:relative}
.ubzj{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)}
.ubzj .ueby{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ubzj .ufja{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ufwb{margin:1.4rem auto;max-width:920px}
.ufwb img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uzvf{padding:3rem 0}
.uhab{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uhab img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uait{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uhlt{display:flex;overflow:hidden;gap:0 !important}
.uojq{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uest{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}
.ufxf{left:.5rem}.uphx{right:.5rem}
.ugde .uhsg{display:none}.ugde .uhsg.is-active{display:block}
.uavb .uqyd{display:block !important}
.uavb .udlv{display:flex;flex-wrap:wrap;gap:.5rem}
.uavb .uqvu{cursor:pointer}
