:root {
  --vjcw-c-primary: #166ca7;
  --vjcw-c-accent: #ed1b24;
  --vjcw-c-dark: #0d1117;
  --vjcw-c-ink: #1a1a2e;
  --vjcw-c-mid: #4a5568;
  --vjcw-c-muted: #718096;
  --vjcw-c-cream: #f5f3eb;
  --vjcw-c-cream-dark: #ede9d8;
  --vjcw-c-white: #ffffff;
  --vjcw-c-border: #d8d4c4;
  --vjcw-c-yes: #166ca7;
  --vjcw-c-no: #ed1b24;
  --vjcw-r: 4px;
  --vjcw-shadow-elev: 0 2px 12px rgba(0,0,0,0.09), 0 1px 3px rgba(0,0,0,0.06);
  --vjcw-shadow-hover: 0 6px 24px rgba(0,0,0,0.13);
  --vjcw-container: 960px;
  --vjcw-gap: 2rem;
  --vjcw-font-head: 'Newsreader', Georgia, serif;
  --vjcw-font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--vjcw-font-body);
  background: var(--vjcw-c-cream);
  color: var(--vjcw-c-ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3 { font-family: var(--vjcw-font-head); line-height: 1.2; color: var(--vjcw-c-ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; margin-bottom: 0.75rem; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
h1 em, h2 em, p em { font-style: italic; }

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

.uybg {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--vjcw-c-ink);
  color: var(--vjcw-c-white);
  padding: 1rem 1.5rem;
  z-index: 9999;
  display: none;
}
.uybg.is-visible { display: block; }
.cookie-inner { max-width: var(--vjcw-container); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.cookie-inner p { margin: 0; font-size: 0.88rem; flex: 1 1 260px; color: var(--vjcw-c-white); }
.cookie-inner a { color: #93c5fd; }
.untq { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--vjcw-c-primary);
  color: var(--vjcw-c-white);
  border: none;
  padding: 0.45rem 1.1rem;
  border-radius: var(--vjcw-r);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--vjcw-font-body);
}
.btn-cookie-reject {
  background: transparent;
  color: var(--vjcw-c-white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.45rem 1.1rem;
  border-radius: var(--vjcw-r);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--vjcw-font-body);
}
.btn-cookie-settings { color: #93c5fd; font-size: 0.85rem; }

.uhob {
  background: var(--vjcw-c-white);
  border-bottom: 1px solid var(--vjcw-c-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.85rem 0;
}
.uhob .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo {
  font-family: var(--vjcw-font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--vjcw-c-ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo em { color: var(--vjcw-c-primary); font-style: italic; }

.undh { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.undh a { font-size: 0.9rem; color: var(--vjcw-c-mid); font-weight: 500; white-space: nowrap; }
.undh a:hover, .undh a[aria-current="page"] { color: var(--vjcw-c-primary); text-decoration: none; }
.nav-cta {
  background: var(--vjcw-c-primary);
  color: var(--vjcw-c-white) !important;
  padding: 0.4rem 1.1rem;
  border-radius: var(--vjcw-r);
}
.nav-cta:hover { background: #12589a; }

.uihd { display: none; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--vjcw-c-ink); }

.btn {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: var(--vjcw-r);
  font-family: var(--vjcw-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.18s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--vjcw-c-primary);
  color: var(--vjcw-c-white);
  border: 2px solid var(--vjcw-c-primary);
}
.btn-primary:hover { background: #12589a; border-color: #12589a; text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--vjcw-c-primary);
  border: 2px solid var(--vjcw-c-primary);
}
.btn-outline:hover { background: var(--vjcw-c-primary); color: var(--vjcw-c-white); text-decoration: none; }
.btn-outline-hero {
  background: transparent;
  color: var(--vjcw-c-ink);
  border: 2px solid var(--vjcw-c-ink);
  margin-top: 0.5rem;
}
.btn-outline-hero:hover { background: var(--vjcw-c-ink); color: var(--vjcw-c-white); text-decoration: none; }
.btn-outline-light {
  background: transparent;
  color: var(--vjcw-c-cream);
  border: 2px solid var(--vjcw-c-cream);
}
.btn-outline-light:hover { background: var(--vjcw-c-cream); color: var(--vjcw-c-ink); text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--vjcw-c-mid);
  border: 2px solid var(--vjcw-c-border);
}
.btn-ghost:hover { border-color: var(--vjcw-c-primary); color: var(--vjcw-c-primary); text-decoration: none; }
.btn-full { width: 100%; }

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: var(--vjcw-c-cream);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.uoxn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  border-radius: 0;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--vjcw-c-mid);
  margin-bottom: 1.25rem;
  max-width: 580px;
}
.trust-band {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.stars { color: var(--vjcw-c-accent); font-size: 1.25rem; letter-spacing: 0.05em; }
.review-count { font-size: 0.9rem; color: var(--vjcw-c-mid); font-weight: 500; }

.breadcrumb {
  font-size: 0.82rem;
  color: var(--vjcw-c-muted);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--vjcw-c-muted); }
.breadcrumb a:hover { color: var(--vjcw-c-primary); }
.breadcrumb span { color: var(--vjcw-c-muted); }

section { padding: 4rem 0; }

.section-checklist { background: var(--vjcw-c-white); }
.section-intro { color: var(--vjcw-c-mid); font-size: 1rem; margin-bottom: 2rem; max-width: 640px; }

.steps-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.steps-list li { display: flex; gap: 1rem; align-items: flex-start; }
.step-icon { font-size: 0.6rem; color: var(--vjcw-c-primary); margin-top: 0.55rem; flex-shrink: 0; }
.steps-list strong { display: block; font-family: var(--vjcw-font-head); font-size: 1.05rem; margin-bottom: 0.2rem; }
.steps-list p { margin: 0; color: var(--vjcw-c-mid); font-size: 0.95rem; }

.section-how { background: var(--vjcw-c-cream); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.bento-large { grid-column: 1 / 2; grid-row: 1 / 3; }
.bento-large img { height: 100%; object-fit: cover; border-radius: var(--vjcw-r); }
.bento-card {
  background: var(--vjcw-c-white);
  border-radius: var(--vjcw-r);
  padding: 1.4rem;
}
.bento-card.elevated { box-shadow: var(--vjcw-shadow-elev); }
.duotone-icon {
  font-size: 1.1rem;
  color: var(--vjcw-c-primary);
  display: block;
  margin-bottom: 0.6rem;
  opacity: 0.7;
}
.ingredient-art { margin: 0 auto; border-radius: var(--vjcw-r); opacity: 0.9; }

.section-compare { background: var(--vjcw-c-white); }
.table-wrap { overflow-x: auto; margin-bottom: 2rem; }
.compare-table, .nutrition-table, .cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.compare-table th, .nutrition-table th, .cookie-table th {
  background: var(--vjcw-c-ink);
  color: var(--vjcw-c-white);
  padding: 0.7rem 1rem;
  text-align: left;
  font-weight: 600;
}
.compare-table td, .nutrition-table td, .cookie-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--vjcw-c-border);
  color: var(--vjcw-c-ink);
}
.compare-table tr:hover td, .nutrition-table tr:hover td { background: var(--vjcw-c-cream); }
.col-yes { color: var(--vjcw-c-yes); font-weight: 600; }
.col-no { color: var(--vjcw-c-no); }
.col-var { color: var(--vjcw-c-muted); }
.nutrition-table tfoot td { font-size: 0.8rem; color: var(--vjcw-c-muted); font-style: italic; border: none; }
.compare-visual { margin-top: 1.5rem; }

.section-quiz { background: var(--vjcw-c-cream-dark); }
.uqls { background: var(--vjcw-c-white); border-radius: var(--vjcw-r); padding: 2rem; box-shadow: var(--vjcw-shadow-elev); max-width: 620px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-q { font-family: var(--vjcw-font-head); font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.uqls label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--vjcw-c-border);
}
.uqls label:last-of-type { border: none; }
.quiz-nav { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.quiz-result { background: var(--vjcw-c-cream); border-radius: var(--vjcw-r); padding: 1.5rem; margin-top: 1rem; }
.quiz-result h3 { font-family: var(--vjcw-font-head); margin-bottom: 0.75rem; color: var(--vjcw-c-primary); }

.section-faq { background: var(--vjcw-c-white); }
.faq-list dt {
  font-family: var(--vjcw-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid var(--vjcw-c-border);
  color: var(--vjcw-c-ink);
}
.faq-list dd { color: var(--vjcw-c-mid); padding-bottom: 0.75rem; font-size: 0.95rem; }

.section-sources { background: var(--vjcw-c-cream); }
.sources-list, .sources-list-full {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sources-list li a, .sources-list-full li a {
  font-size: 0.9rem;
  color: var(--vjcw-c-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.sources-list-full { margin-bottom: 1.5rem; }

.section-lifestyle { background: var(--vjcw-c-white); }
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.lifestyle-card {
  background: var(--vjcw-c-cream);
  border-radius: var(--vjcw-r);
  padding: 1.4rem;
}
.lifestyle-card.elevated { box-shadow: var(--vjcw-shadow-elev); background: var(--vjcw-c-white); }
.tip-number {
  font-family: var(--vjcw-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vjcw-c-border);
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.lifestyle-img { margin-top: 2rem; border-radius: var(--vjcw-r); }

.section-order.urlf {
  background: var(--vjcw-c-ink);
  color: var(--vjcw-c-white);
}
.section-order h2 { color: var(--vjcw-c-white); }
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.pack-visual { display: flex; flex-direction: column; gap: 1rem; }
.pack-img { border-radius: var(--vjcw-r); aspect-ratio: 1/1; object-fit: contain; background: var(--vjcw-c-cream); padding: 1rem; }
.pack-detail { border-radius: var(--vjcw-r); }
.price-block { display: flex; align-items: baseline; gap: 0.75rem; margin: 1rem 0; flex-wrap: wrap; }
.price-old { font-size: 1rem; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.price-new { font-size: 2rem; font-family: var(--vjcw-font-head); font-weight: 700; color: var(--vjcw-c-white); }
.price-tag { background: var(--vjcw-c-accent); color: var(--vjcw-c-white); font-size: 0.82rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: var(--vjcw-r); }
.order-trust { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.order-trust li { color: rgba(255,255,255,0.85); font-size: 0.9rem; padding: 0.25rem 0; }

.uthf .form-group { margin-bottom: 1rem; }
.uthf label { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 0.3rem; }
.uthf input[type="text"],
.uthf input[type="tel"] {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--vjcw-r);
  background: rgba(255,255,255,0.08);
  color: var(--vjcw-c-white);
  font-family: var(--vjcw-font-body);
  font-size: 0.95rem;
}
.uthf input::placeholder { color: rgba(255,255,255,0.4); }
.uthf input:focus { outline: 2px solid var(--vjcw-c-primary); border-color: transparent; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; }
.form-check input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--vjcw-c-primary); }
.form-check label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.form-check a { color: #93c5fd; }
.order-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; font-style: italic; }

.section-reviews { background: var(--vjcw-c-cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 1.25rem; }
.review-card {
  background: var(--vjcw-c-white);
  border-radius: var(--vjcw-r);
  padding: 1.4rem;
}
.review-card.elevated { box-shadow: var(--vjcw-shadow-elev); }
.review-stars { color: var(--vjcw-c-accent); font-size: 1rem; margin-bottom: 0.6rem; }
.review-card blockquote { border: none; padding: 0; margin: 0; }
.review-card blockquote p { font-size: 0.92rem; color: var(--vjcw-c-mid); font-style: italic; margin-bottom: 0.5rem; }
.review-card blockquote footer { font-size: 0.82rem; color: var(--vjcw-c-muted); font-style: normal; }
.reviews-disclaimer { font-size: 0.82rem; color: var(--vjcw-c-muted); margin-top: 0.5rem; }

.accent-band {
  background: var(--vjcw-c-primary) !important;
}
.accent-content { text-align: center; padding: 1rem 0; }
.accent-quote p {
  font-family: var(--vjcw-font-head);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--vjcw-c-white);
  margin-bottom: 1.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  background: var(--vjcw-c-cream);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--vjcw-c-border);
}
.page-sub { font-size: 1rem; color: var(--vjcw-c-mid); margin-top: 0.5rem; max-width: 580px; }

.section-content { background: var(--vjcw-c-white); }
.content-narrow { max-width: 720px; }
.content-img { margin: 2rem 0; border-radius: var(--vjcw-r); }
.content-img-wide { width: 100%; margin-bottom: 2rem; border-radius: var(--vjcw-r); }
.ingredient-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.ingredient-item {
  background: var(--vjcw-c-cream);
  border-radius: var(--vjcw-r);
  padding: 1.2rem 1.4rem;
}
.ingredient-item.elevated { box-shadow: var(--vjcw-shadow-elev); background: var(--vjcw-c-white); }
.claim-ref { font-size: 0.8rem; color: var(--vjcw-c-muted); font-style: italic; margin-top: 0.3rem; }

.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.tip-card { background: var(--vjcw-c-cream); border-radius: var(--vjcw-r); padding: 1.4rem; }
.tip-card.elevated { box-shadow: var(--vjcw-shadow-elev); background: var(--vjcw-c-white); }

.supplement-disclaimer {
  font-size: 0.82rem;
  color: var(--vjcw-c-muted);
  font-style: italic;
  border-left: 3px solid var(--vjcw-c-border);
  padding-left: 1rem;
  margin: 1.5rem 0;
}
.info-disclaimer {
  font-size: 0.85rem;
  color: var(--vjcw-c-muted);
  margin-top: 2rem;
  font-style: italic;
}

.cta-inline { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.section-contact { background: var(--vjcw-c-cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-details { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.contact-details li { padding: 0.4rem 0; border-bottom: 1px solid var(--vjcw-c-border); font-size: 0.92rem; }
.map-container { border-radius: var(--vjcw-r); overflow: hidden; border: 1px solid var(--vjcw-c-border); }

.uqkw .form-group { margin-bottom: 1rem; }
.uqkw label { display: block; font-size: 0.88rem; color: var(--vjcw-c-mid); margin-bottom: 0.3rem; font-weight: 500; }
.uqkw input, .uqkw textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--vjcw-c-border);
  border-radius: var(--vjcw-r);
  background: var(--vjcw-c-white);
  color: var(--vjcw-c-ink);
  font-family: var(--vjcw-font-body);
  font-size: 0.95rem;
}
.uqkw input:focus, .uqkw textarea:focus { outline: 2px solid var(--vjcw-c-primary); border-color: transparent; }
.uqkw .form-check { display: flex; align-items: flex-start; gap: 0.6rem; }
.uqkw .form-check input[type="checkbox"] { margin-top: 0.2rem; accent-color: var(--vjcw-c-primary); }
.uqkw .form-check label { font-size: 0.85rem; color: var(--vjcw-c-mid); }

.legal-text h2 { margin-top: 2rem; font-size: 1.15rem; }
.legal-text h3 { margin-top: 1.5rem; font-size: 1rem; }
.legal-text ul { color: var(--vjcw-c-mid); }
.impressum-list { list-style: none; padding: 0; }
.impressum-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--vjcw-c-border); font-size: 0.95rem; }

.thankyou-main { display: flex; align-items: center; justify-content: center; min-height: 60vh; padding: 3rem 0; }
.thankyou-content { text-align: center; max-width: 480px; }
.thankyou-icon { font-size: 3.5rem; color: var(--vjcw-c-primary); margin-bottom: 1rem; }
.error-code { font-family: var(--vjcw-font-head); font-size: 5rem; font-weight: 700; color: var(--vjcw-c-border); line-height: 1; margin-bottom: 0.5rem; }

.site-footer { background: var(--vjcw-c-ink); color: rgba(255,255,255,0.75); margin-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 1.5rem 2rem;
}
.footer-brand .logo { color: var(--vjcw-c-white); font-size: 1.2rem; margin-bottom: 0.5rem; display: inline-block; }
.footer-logo em { color: #93c5fd; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
.footer-legal-id { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-nav h3, .footer-legal h3, .footer-contact h3 {
  font-family: var(--vjcw-font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.footer-nav a, .footer-legal a, .footer-contact a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  padding: 0.2rem 0;
  text-decoration: none;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-contact a:hover { color: var(--vjcw-c-white); }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 0.3rem; }
.footer-disclaimer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-disclaimer p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 0.3rem; }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: 1 / -1; grid-row: auto; }
  .bento-large img { height: 220px; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .undh { display: none; flex-direction: column; gap: 0.75rem; position: absolute; top: 100%; left: 0; right: 0; background: var(--vjcw-c-white); padding: 1rem 1.5rem; border-bottom: 1px solid var(--vjcw-c-border); }
  .undh.is-open { display: flex; }
  .uihd { display: block; }
  .uhob { position: relative; }
  .bento-grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2.5rem; }
  section { padding: 2.5rem 0; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uybg{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}
.uybg.is-visible,.cookie-banner--visible,.uybg.show,.uybg.active{transform:none !important}
.uybg a{color:inherit;text-decoration:underline}
.uybg button{cursor:pointer}
.uyur{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}
.uyur.is-visible,.cookie-modal--visible,.uyur.show,.uyur.active{display:flex !important}
.ufne,.uyur>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.urlf .uqls,.urlf .untf,.urlf .ueec,.urlf .uctu,.uoqa .uqls,.uoqa .untf,.uoqa .ueec,.uoqa .uctu{background:#fff !important;color:#1a1a1a !important}
.uqls,.untf{color:#1a1a1a !important}
.uqls label,.untf label,.uqls p,.untf p,.uqls .uign,.uqls span,.untf span,.utsf,.umza,.ueec .ujjm,.ueec .ujjm *{color:#1a1a1a !important}
.utsf,.umza{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uqls .uhid{color:#1a1a1a !important}
.uqls .uhid.is-sel{color:#fff !important}
.uthf .uwue{display:none}
.uthf .uwue.is-visible{display:block !important;color:#c0392b}
.uthf .upbr,.uthf [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uthf{color:#1a1a1a}
.urlf .uthf,.uoqa .uthf{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uewm{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uewm img{width:100%;height:100%;object-fit:cover}
.uoxn,.udim{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uoxn img,.udim img{width:100%;height:100%;object-fit:cover;display:block}
.uoxn img{opacity:.28}
.udim img{opacity:.07}
*:has(> .uoxn),*:has(> .udim){position:relative}
.utxu{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)}
.utxu .uvnn{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.utxu .ujda{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uzlt{margin:1.4rem auto;max-width:920px}
.uzlt img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uaxa{padding:3rem 0}
.unmg{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.unmg img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uctu{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uteu{display:flex;overflow:hidden;gap:0 !important}
.unog{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ugfy{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}
.ugfz{left:.5rem}.uzrw{right:.5rem}
.ueec .ujjm{display:none}.ueec .ujjm.is-active{display:block}
.uqls .ucat{display:block !important}
.uqls .usxb{display:flex;flex-wrap:wrap;gap:.5rem}
.uqls .uhid{cursor:pointer}
