:root {
  --vjer-accent: #7D8D86;
  --vjer-accent-dark: #5A5B4A;
  --vjer-bg: #F1F0E4;
  --vjer-bg-alt: #E7E6D8;
  --vjer-text: #3E3F29;
  --vjer-muted: #5A5B4A;
  --vjer-border: #cfcdba;
  --vjer-font-display: "Sora", system-ui, sans-serif;
  --vjer-font-body: "DM Sans", system-ui, sans-serif;
  --vjer-space-4: 1rem;
  --vjer-space-6: 1.5rem;
  --vjer-space-8: 2rem;
  --vjer-space-12: 3rem;
  --vjer-space-20: 5rem;
  --vjer-radius: 0.75rem;
  --vjer-radius-lg: 1.25rem;
  --vjer-radius-pill: 999px;
  --vjer-shadow-sm: 0 1px 3px rgba(62, 63, 41, 0.06);
  --vjer-shadow-md: 0 6px 24px rgba(62, 63, 41, 0.1);
  --vjer-shadow-lg: 0 18px 48px rgba(62, 63, 41, 0.14);
  --vjer-transition: 0.28s ease;
  --vjer-max-width: 1200px;
  --vjer-header-height: 4.5rem;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--vjer-font-body);
  color: var(--vjer-text);
  background: var(--vjer-bg);
  line-height: 1.65;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vjer-font-display);
  line-height: 1.15;
  color: var(--vjer-text);
}
h1 { font-size: clamp(2rem, 1.5rem + 2.4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.8rem); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 92%; max-width: var(--vjer-max-width); margin-inline: auto; }
.section { padding: var(--vjer-space-20) 0; position: relative; }
.section-alt { background: var(--vjer-bg-alt); }
.uywu { background: var(--vjer-text); color: #fff; }
.uywu h1, .uywu h2, .uywu h3, .uywu h4 { color: #fff; }
.ubzs { background: var(--vjer-accent); color: #fff; }
.ubzs h1, .ubzs h2, .ubzs h3 { color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--vjer-radius-pill);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--vjer-transition);
  font-family: var(--vjer-font-body);
  font-size: 1rem;
}
.btn-primary { background: var(--vjer-accent); color: #fff; }
.btn-primary:hover { background: var(--vjer-accent-dark); }
.btn-outline { background: transparent; border-color: var(--vjer-accent); color: var(--vjer-accent); }
.btn-outline:hover { background: var(--vjer-accent); color: #fff; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }
.uxnf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--vjer-border);
  height: var(--vjer-header-height);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: var(--vjer-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vjer-text);
}
.uukz {
  display: flex;
  gap: var(--vjer-space-6);
  align-items: center;
}
.uukz a {
  color: var(--vjer-text);
  font-size: 1rem;
  transition: var(--vjer-transition);
}
.uukz a:hover {
  color: var(--vjer-accent);
}
.ukdq {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}
.ukdq span {
  width: 24px;
  height: 2px;
  background: var(--vjer-text);
  transition: var(--vjer-transition);
}
.disclosure-bar {
  background: var(--vjer-text);
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.85rem;
}
.hero {
  padding: var(--vjer-space-20) 0;
  position: relative;
}
.ufha {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.ufha img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.hero>.container {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--vjer-space-12);
  align-items: center;
}
.hero-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vjer-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.hero-title {
  margin-bottom: var(--vjer-space-6);
}
.checklist {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: var(--vjer-space-6) 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.check-ic {
  flex: 0 0 auto;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 141, 134, 0.14);
  color: var(--vjer-accent);
  font-size: 0.95rem;
  margin-top: 0.05rem;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: var(--vjer-space-4) 0;
}
.stars {
  color: #e8a534;
  letter-spacing: 0.1em;
}
.price-block {
  display: flex;
  align-items: baseline;
  gap: var(--vjer-space-4);
  flex-wrap: wrap;
  margin: var(--vjer-space-4) 0;
}
.price-old {
  color: var(--vjer-muted);
  font-size: 1.1rem;
  text-decoration: line-through;
}
.price-new {
  font-family: var(--vjer-font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
  color: var(--vjer-accent);
  font-weight: 700;
}
.price-badge {
  background: var(--vjer-accent);
  color: #fff;
  padding: 0.2rem 0.7rem;
  border-radius: var(--vjer-radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  gap: var(--vjer-space-4);
  flex-wrap: wrap;
  margin: var(--vjer-space-8) 0 var(--vjer-space-6);
}
.hero-note {
  font-size: 0.85rem;
  color: var(--vjer-muted);
}
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--vjer-radius);
  background: linear-gradient(135deg, var(--vjer-accent) 0%, var(--vjer-bg-alt) 100%);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-1x1 { aspect-ratio: 1/1; }
.media-16x9 { aspect-ratio: 16/9; }
.media-21x9 { aspect-ratio: 21/9; }
.media-4x3 { aspect-ratio: 4/3; }
.media-3x4 { aspect-ratio: 3/4; }
.uswa {
  position: relative;
  aspect-ratio: 1/1;
}
.uvzh {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 52%;
  text-align: center;
  color: var(--vjer-text);
  pointer-events: none;
  background: rgba(250, 246, 238, 0.94);
  border-radius: 10px;
  padding: 1rem 0.8rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.16);
}
.ukuw {
  display: block;
  font-family: var(--vjer-font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.1vw + 0.8rem, 1.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
}
.pack-line {
  display: block;
  width: 42%;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  margin: 0.5rem auto 0;
}
.ucbk {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.45rem;
  opacity: 0.72;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.benefit-card {
  background: #fff;
  border-radius: var(--vjer-radius);
  box-shadow: var(--vjer-shadow-sm);
  padding: var(--vjer-space-6);
  transition: var(--vjer-transition);
}
.benefit-card:hover {
  box-shadow: var(--vjer-shadow-md);
  transform: translateY(-2px);
}
.benefit-card i {
  display: block;
  font-size: 1.6rem;
  color: var(--vjer-accent);
  margin-bottom: var(--vjer-space-4);
}
.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.95rem;
  color: var(--vjer-muted);
  line-height: 1.6;
}
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.step-item {
  text-align: center;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vjer-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--vjer-space-6);
}
.step-item h3 {
  margin-bottom: 0.5rem;
}
.steps-note {
  text-align: center;
  color: var(--vjer-muted);
  margin-top: var(--vjer-space-6);
  font-size: 0.9rem;
}
.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--vjer-space-6);
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--vjer-space-4);
  padding: var(--vjer-space-4);
}
.trust-item i {
  font-size: 1.6rem;
  color: var(--vjer-accent);
  flex: 0 0 auto;
}
.trust-item strong {
  display: block;
  font-size: 0.95rem;
}
.trust-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--vjer-muted);
}
.testimonial-disclaimer {
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: var(--vjer-space-8);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.testimonial {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--vjer-accent);
  padding: var(--vjer-space-8);
  border-radius: var(--vjer-radius);
  font-style: italic;
}
.testimonial cite {
  display: block;
  margin-top: var(--vjer-space-4);
  font-style: normal;
  color: var(--vjer-accent);
  font-weight: 600;
}
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--vjer-space-12);
  align-items: center;
}
.order-visual {
  text-align: center;
}
.product-pack {
  max-width: 300px;
  margin-inline: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.16));
}
.order-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--vjer-space-6);
}
.benefit-chip {
  background: var(--vjer-bg-alt);
  padding: 0.5rem 1rem;
  border-radius: var(--vjer-radius-pill);
  font-size: 0.9rem;
  text-align: center;
}
.umqm {
  background: #fff;
  color: var(--vjer-text);
  border: 1px solid var(--vjer-border);
  border-radius: var(--vjer-radius-lg);
  box-shadow: var(--vjer-shadow-md);
  padding: var(--vjer-space-8);
}
.uywu .umqm, .ubzs .umqm {
  background: #fff;
  color: var(--vjer-text);
}
.form-group {
  margin-bottom: var(--vjer-space-6);
}
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--vjer-border);
  border-radius: var(--vjer-radius);
  font: inherit;
  background: #fff;
  color: var(--vjer-text);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--vjer-accent);
  box-shadow: 0 0 0 3px rgba(125, 141, 134, 0.1);
}
.usrw {
  display: none;
  color: #c0392b;
  font-size: 0.85rem;
  min-height: 1rem;
  margin-top: 0.25rem;
}
.usrw.is-visible {
  display: block;
}
.form-checkbox {
  margin-top: var(--vjer-space-4);
}
.form-checkbox input {
  width: auto;
  margin-right: 0.5rem;
}
.form-checkbox label {
  display: inline;
  margin: 0;
  font-weight: normal;
}
.form-checkbox a {
  color: var(--vjer-accent);
  text-decoration: underline;
}
.phone-row {
  display: grid;
  grid-template-columns: minmax(84px, auto) 1fr;
  gap: 0.5rem;
}
.phone-row select {
  padding: 0.75rem 0.6rem;
  border: 1px solid var(--vjer-border);
  border-radius: var(--vjer-radius);
  font: inherit;
  background: #fff;
}
.uskb {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.order-note {
  font-size: 0.85rem;
  color: var(--vjer-muted);
  text-align: center;
  margin-top: var(--vjer-space-4);
}
.cta-band {
  text-align: center;
  padding: var(--vjer-space-12) var(--vjer-space-6);
}
.cta-band h2 {
  margin-bottom: 0.5rem;
}
.cta-band p {
  margin-bottom: var(--vjer-space-8);
}
.faq {
  display: grid;
  gap: var(--vjer-space-4);
  margin-top: var(--vjer-space-8);
}
.ushg {
  border-bottom: 1px solid var(--vjer-border);
  padding-bottom: var(--vjer-space-4);
}
.urzf {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--vjer-space-4) 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--vjer-text);
  transition: var(--vjer-transition);
}
.urzf:hover {
  color: var(--vjer-accent);
}
.urzf i {
  transition: var(--vjer-transition);
}
.urzf[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.uvpp {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: var(--vjer-transition);
}
.uvpp.is-visible {
  display: block;
  max-height: none;
}
.faq-answer-inner {
  padding: var(--vjer-space-6) 0;
}
.table-wrap {
  overflow-x: auto;
}
.dose-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--vjer-space-6);
}
.dose-table th, .dose-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--vjer-border);
}
.dose-table thead th {
  background: var(--vjer-bg-alt);
  font-family: var(--vjer-font-display);
  font-weight: 600;
}
.dose-note {
  font-size: 0.8rem;
  color: var(--vjer-muted);
  margin-top: 0.5rem;
}
.page-title {
  margin-bottom: 1rem;
}
.page-lead {
  font-size: 1.1rem;
  color: var(--vjer-muted);
  margin-bottom: var(--vjer-space-8);
}
.hero-page {
  padding: var(--vjer-space-12) 0;
  background: var(--vjer-bg-alt);
}
.info-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.highlight-card {
  background: #fff;
  padding: var(--vjer-space-6);
  border-radius: var(--vjer-radius);
  box-shadow: var(--vjer-shadow-sm);
}
.highlight-card h3 {
  margin-bottom: 0.5rem;
}
.highlight-card p {
  color: var(--vjer-muted);
  font-size: 0.95rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--vjer-space-12);
  align-items: start;
}
.contact-info-panel {
  display: grid;
  gap: var(--vjer-space-6);
}
.contact-info-item {
  display: flex;
  gap: var(--vjer-space-6);
  padding: var(--vjer-space-6) 0;
  border-bottom: 1px solid var(--vjer-border);
}
.contact-info-item i {
  font-size: 1.25rem;
  color: var(--vjer-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.ualk {
  background: #fff;
  padding: var(--vjer-space-8);
  border-radius: var(--vjer-radius-lg);
  box-shadow: var(--vjer-shadow-sm);
}
.map-container {
  border-radius: var(--vjer-radius);
  overflow: hidden;
  border: 1px solid var(--vjer-border);
  margin-top: var(--vjer-space-8);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}
.contact-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.contact-method {
  text-align: center;
  padding: var(--vjer-space-6);
}
.contact-method i {
  font-size: 2rem;
  color: var(--vjer-accent);
  margin-bottom: 0.5rem;
}
.contact-method h3 {
  margin-bottom: 0.5rem;
}
.contact-method p {
  color: var(--vjer-muted);
  font-size: 0.95rem;
}
.contact-method a {
  color: var(--vjer-accent);
  text-decoration: underline;
}
.usage-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.usage-card {
  background: #fff;
  padding: var(--vjer-space-6);
  border-radius: var(--vjer-radius);
  box-shadow: var(--vjer-shadow-sm);
}
.usage-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vjer-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.tip-card {
  background: #fff;
  padding: var(--vjer-space-6);
  border-radius: var(--vjer-radius);
  box-shadow: var(--vjer-shadow-sm);
  text-align: center;
}
.tip-card i {
  font-size: 2rem;
  color: var(--vjer-accent);
  margin-bottom: var(--vjer-space-4);
}
.tip-card h3 {
  margin-bottom: 0.5rem;
}
.tip-card p {
  color: var(--vjer-muted);
  font-size: 0.95rem;
}
.timeline-v {
  display: grid;
  gap: var(--vjer-space-8);
  position: relative;
  padding-left: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.timeline-v::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--vjer-border);
}
.tl-step {
  position: relative;
}
.tl-dot {
  position: absolute;
  left: -32px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vjer-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: var(--vjer-space-6);
  margin-top: var(--vjer-space-6);
  justify-content: center;
}
.rating-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--vjer-accent);
  font-family: var(--vjer-font-display);
}
.rating-stars {
  font-size: 2rem;
}
.rating-text {
  color: var(--vjer-muted);
  font-size: 1rem;
}
.testimonial-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.testimonial-full {
  background: #fff;
  padding: var(--vjer-space-8);
  border-radius: var(--vjer-radius);
  box-shadow: var(--vjer-shadow-sm);
  border-left: 4px solid var(--vjer-accent);
}
.testimonial-header {
  display: flex;
  gap: var(--vjer-space-4);
  margin-bottom: var(--vjer-space-4);
  align-items: flex-start;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vjer-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.testimonial-location {
  color: var(--vjer-muted);
  font-size: 0.85rem;
}
.testimonial-full p {
  margin-top: var(--vjer-space-4);
  font-style: italic;
  line-height: 1.7;
}
.testimonial-date {
  color: var(--vjer-muted);
  font-size: 0.85rem;
  margin-top: var(--vjer-space-4);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.feature-item {
  text-align: center;
}
.feature-item i {
  font-size: 2rem;
  color: var(--vjer-accent);
  margin-bottom: var(--vjer-space-4);
}
.feature-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.feature-item p {
  color: var(--vjer-muted);
  font-size: 0.9rem;
}
.ingredient-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.ingredient-card {
  background: #fff;
  padding: var(--vjer-space-6);
  border-radius: var(--vjer-radius);
  box-shadow: var(--vjer-shadow-sm);
}
.ingredient-card h3 {
  margin-bottom: 0.5rem;
}
.ingredient-card p {
  color: var(--vjer-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.info-card {
  background: #fff;
  padding: var(--vjer-space-6);
  border-radius: var(--vjer-radius);
  box-shadow: var(--vjer-shadow-sm);
}
.info-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.info-card p {
  color: var(--vjer-muted);
  font-size: 0.95rem;
}
.uxzm {
  background: #fff;
  color: var(--vjer-text);
  border: 1px solid var(--vjer-border);
  border-radius: var(--vjer-radius-lg);
  padding: var(--vjer-space-8);
  margin-top: var(--vjer-space-8);
}
.uxzm label {
  display: flex;
  align-items: center;
  gap: var(--vjer-space-4);
  margin-bottom: var(--vjer-space-4);
  font-weight: 600;
}
.uxzm input[type="range"] {
  flex: 1;
  accent-color: var(--vjer-accent);
}
.uxzm input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--vjer-accent);
}
.udwz {
  margin-top: var(--vjer-space-6);
  padding: var(--vjer-space-6);
  background: var(--vjer-bg-alt);
  border-radius: var(--vjer-radius);
  border-left: 4px solid var(--vjer-accent);
  color: var(--vjer-text);
}
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 999px;
  transition: var(--vjer-transition);
}
.slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--vjer-transition);
}
.switch input:checked + .slider {
  background: var(--vjer-accent);
}
.switch input:checked + .slider::before {
  transform: translateX(20px);
}
.uhta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  background: #fff;
  border: 1px solid var(--vjer-border);
  border-radius: var(--vjer-radius);
  box-shadow: var(--vjer-shadow-lg);
  padding: var(--vjer-space-6);
  transform: translateY(150%);
  transition: var(--vjer-transition);
}
.uhta.is-visible {
  transform: none;
}
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: var(--vjer-space-6);
}
.cookie-banner-text {
  font-size: 0.95rem;
  color: var(--vjer-text);
}
.cookie-banner-text a {
  color: var(--vjer-accent);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: var(--vjer-space-4);
  flex-wrap: wrap;
}
.utlg {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.utlg.is-visible {
  display: flex;
}
.uynw {
  background: #fff;
  border-radius: var(--vjer-radius-lg);
  padding: var(--vjer-space-8);
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}
.uynw h2 {
  margin-bottom: var(--vjer-space-6);
}
.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--vjer-space-6);
  padding: var(--vjer-space-4) 0;
  border-bottom: 1px solid var(--vjer-border);
}
.cookie-toggle:last-of-type {
  border-bottom: none;
}
.cookie-toggle h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.cookie-toggle p {
  color: var(--vjer-muted);
  font-size: 0.85rem;
}
.cookie-modal-actions {
  display: flex;
  gap: var(--vjer-space-4);
  margin-top: var(--vjer-space-8);
}
.site-footer {
  background: var(--vjer-text);
  color: #fff;
  padding: var(--vjer-space-12) 0 var(--vjer-space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--vjer-space-8);
  margin-bottom: var(--vjer-space-8);
}
.footer-brand h4, .footer-col h4 {
  color: #fff;
  margin-bottom: var(--vjer-space-4);
}
.footer-brand p, .footer-col p, .footer-col ul {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}
.footer-col a:hover {
  color: #fff;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vjer-space-6);
  padding: var(--vjer-space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: center;
}
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  font-size: 0.9rem;
}
.footer-legal-links a:hover {
  color: #fff;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  padding: var(--vjer-space-6) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom {
  display: flex;
  justify-content: center;
  gap: var(--vjer-space-6);
  flex-wrap: wrap;
  padding: var(--vjer-space-6) 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.section-title {
  text-align: center;
  margin-bottom: var(--vjer-space-4);
}
.section-lead {
  text-align: center;
  color: var(--vjer-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--vjer-space-8);
}
@media (max-width: 768px) {
  .hero-grid, .order-layout, .contact-layout, .split-block {
    grid-template-columns: 1fr;
  }
  .order-steps {
    grid-template-columns: 1fr;
  }
  .ukdq {
    display: flex;
  }
  .uukz {
    position: fixed;
    inset: var(--vjer-header-height) 0 auto 0;
    flex-direction: column;
    background: #fff;
    padding: var(--vjer-space-6);
    box-shadow: var(--vjer-shadow-md);
    transform: translateY(-150%);
    transition: var(--vjer-transition);
    width: 100%;
  }
  .uukz.is-open {
    transform: none;
  }
  .container {
    width: 90%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uhta{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}
.uhta.is-visible,.cookie-banner--visible,.uhta.show,.uhta.active{transform:none !important}
.uhta a{color:inherit;text-decoration:underline}
.uhta button{cursor:pointer}
.utlg{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}
.utlg.is-visible,.cookie-modal--visible,.utlg.show,.utlg.active{display:flex !important}
.uynw,.utlg>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uywu .udmi,.uywu .uxzm,.uywu .unms,.uywu .uyni,.ubzs .udmi,.ubzs .uxzm,.ubzs .unms,.ubzs .uyni{background:#fff !important;color:#1a1a1a !important}
.udmi,.uxzm{color:#1a1a1a !important}
.udmi label,.uxzm label,.udmi p,.uxzm p,.udmi .uqwc,.udmi span,.uxzm span,.udwz,.uthw,.unms .uwdt,.unms .uwdt *{color:#1a1a1a !important}
.udwz,.uthw{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.udmi .ufii{color:#1a1a1a !important}
.udmi .ufii.is-sel{color:#fff !important}
.umqm .usrw{display:none}
.umqm .usrw.is-visible{display:block !important;color:#c0392b}
.umqm .uskb,.umqm [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.umqm{color:#1a1a1a}
.uywu .umqm,.ubzs .umqm{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uswa{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uswa img{width:100%;height:100%;object-fit:cover}
.ufha,.uxsb{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ufha img,.uxsb img{width:100%;height:100%;object-fit:cover;display:block}
.ufha img{opacity:.28}
.uxsb img{opacity:.07}
*:has(> .ufha),*:has(> .uxsb){position:relative}
.uvzh{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)}
.uvzh .ukuw{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uvzh .ucbk{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uhfv{margin:1.4rem auto;max-width:920px}
.uhfv img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ukhs{padding:3rem 0}
.utml{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.utml img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uyni{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uiko{display:flex;overflow:hidden;gap:0 !important}
.udnc{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.utsj{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}
.uchr{left:.5rem}.ufwk{right:.5rem}
.unms .uwdt{display:none}.unms .uwdt.is-active{display:block}
.udmi .utpl{display:block !important}
.udmi .uorb{display:flex;flex-wrap:wrap;gap:.5rem}
.udmi .ufii{cursor:pointer}
