:root {
  --vtsa-accent: #8a3de0;
  --vtsa-accent-dark: #3a1080;
  --vtsa-accent-light: #c5adff;
  --vtsa-accent-pale: #fff8cb;
  --vtsa-bg: #f4f4f2;
  --vtsa-bg-white: #ffffff;
  --vtsa-bg-dark: #1a0a30;
  --vtsa-bg-darker: #0f0520;
  --vtsa-text: #1c1c22;
  --vtsa-text-muted: #5a5a6e;
  --vtsa-text-light: #e8e4ff;
  --vtsa-border: #dcdce6;
  --vtsa-highlight-bg: #f0eaff;
  --vtsa-font-head: 'Archivo', sans-serif;
  --vtsa-font-body: 'Archivo', sans-serif;
  --vtsa-radius: 0px;
  --vtsa-container: 1200px;
  --vtsa-transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }

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

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

h1, h2, h3, h4 {
  font-family: var(--vtsa-font-head);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 0.8rem; margin-top: 2.5rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.5rem; }

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

em { font-style: italic; font-family: Georgia, serif; }

.section-light { background: var(--vtsa-bg-white); padding: 4rem 0; }
.ugnv { background: var(--vtsa-bg-dark); color: var(--vtsa-text-light); padding: 4rem 0; }
.ugnv a { color: var(--vtsa-accent-light); }
.ugnv h2, .ugnv h3 { color: #fff; }
.uddm { background: var(--vtsa-accent-dark); color: var(--vtsa-text-light); padding: 4rem 0; }
.uddm h2, .uddm h3 { color: #fff; }
.uddm a { color: var(--vtsa-accent-light); }

.section-intro { color: var(--vtsa-text-muted); font-size: 1.05rem; margin-bottom: 2rem; }

.content-image { border-radius: var(--vtsa-radius); margin: 2rem 0; width: 100%; }

.supplement-disclaimer-block {
  background: var(--vtsa-highlight-bg);
  border-left: 3px solid var(--vtsa-accent);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: var(--vtsa-text-muted);
}

.uqty {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--vtsa-bg-darker);
  color: var(--vtsa-text-light);
  padding: 1.2rem 0;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.4);
}
.uqty.is-visible { display: block; }
.cookie-banner__inner {
  max-width: var(--vtsa-container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.cookie-banner__text { flex: 1 1 300px; font-size: 0.9rem; margin: 0; }
.cookie-banner__text a { color: var(--vtsa-accent-light); }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-family: var(--vtsa-font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: var(--vtsa-radius);
  text-decoration: none;
  transition: background var(--vtsa-transition), color var(--vtsa-transition), border-color var(--vtsa-transition);
  border: 2px solid transparent;
  line-height: 1.4;
}
.btn-primary {
  background: var(--vtsa-accent);
  color: #fff;
  border-color: var(--vtsa-accent);
}
.btn-primary:hover { background: var(--vtsa-accent-dark); border-color: var(--vtsa-accent-dark); color: #fff; }

.btn-outline, .btn-ghost {
  background: transparent;
  border-color: var(--vtsa-accent-light);
  color: var(--vtsa-accent-light);
}
.btn-outline:hover, .btn-ghost:hover { background: var(--vtsa-accent-light); color: var(--vtsa-bg-dark); }

.section-light .btn-outline, .section-light .btn-ghost {
  border-color: var(--vtsa-accent);
  color: var(--vtsa-accent);
}
.section-light .btn-outline:hover, .section-light .btn-ghost:hover {
  background: var(--vtsa-accent);
  color: #fff;
}

.btn--lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn--full { width: 100%; text-align: center; }

.umkh {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--vtsa-bg-darker);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.umkh .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--vtsa-font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
}
.site-logo:hover { color: var(--vtsa-accent-light); }
.site-logo--footer { color: var(--vtsa-text-light); }

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--vtsa-text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--vtsa-transition);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--vtsa-accent-light); }

.uopc {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.uopc span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform var(--vtsa-transition);
}

.breadcrumb-nav { background: var(--vtsa-bg); border-bottom: 1px solid var(--vtsa-border); padding: 0.5rem 0; }
.breadcrumb { display: flex; list-style: none; gap: 0.5rem; padding: 0; margin: 0; font-size: 0.85rem; }
.breadcrumb li + li::before { content: '/'; color: var(--vtsa-text-muted); margin-right: 0.5rem; }
.breadcrumb a { color: var(--vtsa-accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li[aria-current="page"] { color: var(--vtsa-text-muted); }

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero--full-bleed { overflow: hidden; }
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,5,32,0.85) 0%, rgba(58,16,128,0.65) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: 720px;
}
.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vtsa-accent-light);
  margin-bottom: 1rem;
}
.hero__h1 {
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero__sub {
  color: var(--vtsa-text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hero__cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero__disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin: 0; }

.stat-band .container {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--vtsa-font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--vtsa-accent-light);
  line-height: 1;
  display: block;
}
.stat-item__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
}

.editorial-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.editorial-intro__image img { width: 100%; border-radius: var(--vtsa-radius); }

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
  margin: 2rem 0;
}
.ingredient-card--flat img { width: 100%; border-radius: var(--vtsa-radius); }
.ingredient-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.ingredient-table th {
  background: var(--vtsa-accent-dark);
  color: #fff;
  padding: 0.7rem 1rem;
  text-align: left;
  font-weight: 600;
}
.ingredient-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--vtsa-border); vertical-align: top; }
.ingredient-table tr:last-child td { border-bottom: none; }
.ingredient-table tr:nth-child(even) td { background: var(--vtsa-highlight-bg); }
.table-disclaimer { font-size: 0.8rem; color: var(--vtsa-text-muted); margin-top: 0.75rem; }
.ingredient-visual { margin: 2rem 0; }
.ingredient-visual img { width: 100%; border-radius: var(--vtsa-radius); }

.uine { position: relative; overflow: hidden; margin: 2rem 0; }
.lf-carousel__track { display: flex; transition: transform 0.4s ease; }
.lf-carousel__slide { min-width: 100%; padding: 0 0.5rem; }
.lf-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.lf-carousel__prev, .lf-carousel__next {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 40px; height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: var(--vtsa-radius);
  transition: background var(--vtsa-transition);
  display: flex; align-items: center; justify-content: center;
}
.lf-carousel__prev:hover, .lf-carousel__next:hover { background: rgba(255,255,255,0.15); }
.lf-carousel__dots { display: flex; gap: 0.5rem; }
.lf-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--vtsa-transition);
}
.lf-carousel__dot.active { background: var(--vtsa-accent-light); }

.testimonial-card--flat {
  background: rgba(255,255,255,0.07);
  padding: 2rem;
  border-top: 3px solid var(--vtsa-accent-light);
}
.testimonial-card--flat p { font-size: 1.05rem; font-style: italic; color: var(--vtsa-text-light); margin-bottom: 1rem; }
.testimonial-card--flat footer { display: flex; align-items: center; gap: 1rem; }
.testimonial-card--flat strong { color: #fff; }
.testimonial-stars { color: var(--vtsa-accent-pale); font-size: 1rem; }
.testimonial-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 1rem; }

.reading-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.reading-link {
  display: block;
  padding: 1.2rem 1.5rem;
  background: var(--vtsa-highlight-bg);
  border-left: 3px solid var(--vtsa-accent);
  text-decoration: none;
  transition: background var(--vtsa-transition);
}
.reading-link:hover { background: #e8e0ff; }
.reading-link__title { display: block; font-weight: 600; color: var(--vtsa-accent-dark); margin-bottom: 0.3rem; }
.reading-link__desc { font-size: 0.9rem; color: var(--vtsa-text-muted); }

.comparison-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 640px; }
.comparison-table th {
  background: var(--vtsa-accent-dark);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.comparison-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--vtsa-border); vertical-align: top; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--vtsa-bg); }
.comparison-table td.highlight { font-weight: 600; color: var(--vtsa-accent-dark); }
.comparison-note { font-size: 0.82rem; color: var(--vtsa-text-muted); margin-top: 0.5rem; }

.ujyq { background: var(--vtsa-highlight-bg); padding: 2.5rem; border-top: 3px solid var(--vtsa-accent); }
.lf-quiz__progress { margin-bottom: 1.5rem; }
.lf-quiz__progress-label { font-size: 0.85rem; color: var(--vtsa-text-muted); display: block; margin-bottom: 0.4rem; }
.lf-quiz__progress-bar { height: 4px; background: var(--vtsa-border); }
.lf-quiz__progress-fill { height: 100%; background: var(--vtsa-accent); transition: width 0.3s ease; }
.lf-quiz__step { display: none; }
.lf-quiz__step.active { display: block; }
.lf-quiz__question { font-size: 1.15rem; font-weight: 600; margin-bottom: 1.2rem; color: var(--vtsa-text); }
.lf-quiz__options { display: flex; flex-direction: column; gap: 0.6rem; }
.lf-quiz__opt {
  background: #fff;
  border: 2px solid var(--vtsa-border);
  padding: 0.8rem 1.2rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--vtsa-font-body);
  font-size: 0.95rem;
  color: var(--vtsa-text);
  transition: border-color var(--vtsa-transition), background var(--vtsa-transition);
  border-radius: var(--vtsa-radius);
}
.lf-quiz__opt:hover { border-color: var(--vtsa-accent); background: var(--vtsa-highlight-bg); }
.lf-quiz__result { text-align: center; padding: 1rem 0; }
.lf-quiz__result-icon { font-size: 2.5rem; color: var(--vtsa-accent); margin-bottom: 1rem; }
.lf-quiz__result-title { font-size: 1.4rem; margin-bottom: 1rem; }
.lf-quiz__result-text { margin-bottom: 1rem; font-size: 1rem; }
.lf-quiz__result-disclaimer { font-size: 0.82rem; color: var(--vtsa-text-muted); margin-bottom: 1.5rem; }

.pack-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.pack-showcase__images { display: flex; flex-direction: column; gap: 1.5rem; }
.pack-showcase__images .pack-main { max-width: 320px; margin: 0 auto; }
.pack-showcase__images .pack-secondary { border-radius: var(--vtsa-radius); }
.pack-features { list-style: none; padding: 0; margin: 1.5rem 0; }
.pack-features li { padding: 0.5rem 0; border-bottom: 1px solid var(--vtsa-border); padding-left: 1.5rem; position: relative; }
.pack-features li::before { content: '✦'; position: absolute; left: 0; color: var(--vtsa-accent); font-size: 0.75rem; top: 0.6rem; }
.pack-price-note { font-size: 0.9rem; color: var(--vtsa-text-muted); margin-top: 0.75rem; }

.lifestyle-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.lifestyle-card img { width: 100%; border-radius: var(--vtsa-radius); }
.lifestyle-card__caption { font-size: 0.88rem; color: var(--vtsa-text-muted); margin-top: 0.5rem; }

.order-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.order-trust { list-style: none; padding: 0; margin: 1.2rem 0; }
.order-trust li { padding: 0.4rem 0; padding-left: 1.5rem; position: relative; color: var(--vtsa-text-light); }
.order-trust li::before { content: '✓'; position: absolute; left: 0; color: var(--vtsa-accent-light); font-weight: 700; }
.order-price { font-size: 1.6rem; font-weight: 700; color: #fff; margin: 1rem 0; }
.order-price__was { font-size: 1rem; font-weight: 400; text-decoration: line-through; color: rgba(255,255,255,0.4); margin-left: 0.5rem; }

.form-field { margin-bottom: 1.2rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.92rem; }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--vtsa-font-body);
  font-size: 1rem;
  border-radius: var(--vtsa-radius);
  transition: border-color var(--vtsa-transition);
}
.section-light .form-field input[type="text"],
.section-light .form-field input[type="tel"],
.section-light .form-field input[type="email"],
.section-light .form-field textarea {
  border-color: var(--vtsa-border);
  background: var(--vtsa-bg-white);
  color: var(--vtsa-text);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--vtsa-accent-light); }
.form-field--checkbox { display: flex; gap: 0.75rem; align-items: flex-start; }
.form-field--checkbox input { margin-top: 0.2rem; flex-shrink: 0; width: 18px; height: 18px; cursor: pointer; }
.form-field--checkbox label { font-weight: 400; font-size: 0.88rem; margin: 0; }
.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 0.75rem; }
.form-note a { color: var(--vtsa-accent-light); }

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.uqzh {
  border: 1px solid var(--vtsa-border);
  background: var(--vtsa-bg-white);
}
.faq-item__q {
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.98rem;
}
.faq-item__q::after { content: '+'; color: var(--vtsa-accent); font-size: 1.3rem; flex-shrink: 0; }
.uqzh[open] .faq-item__q::after { content: '−'; }
.faq-item__a { padding: 0 1.2rem 1rem; font-size: 0.95rem; color: var(--vtsa-text-muted); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 0.75rem; }
.site-footer__nav h3, .site-footer__legal h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; margin-top: 0; }
.site-footer__nav ul, .site-footer__legal ul { list-style: none; padding: 0; margin: 0; }
.site-footer__nav li, .site-footer__legal li { margin-bottom: 0.4rem; }
.site-footer__nav a, .site-footer__legal a { color: rgba(255,255,255,0.7); font-size: 0.9rem; text-decoration: none; }
.site-footer__nav a:hover, .site-footer__legal a:hover { color: var(--vtsa-accent-light); }
.site-footer__disclaimer { padding-top: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.site-footer__disclaimer p { margin-bottom: 0.5rem; }
.footer-contact { font-size: 0.9rem; margin-top: 0.5rem; }

.page-hero--inner {
  background: var(--vtsa-bg-dark);
  padding: 4rem 0;
  color: var(--vtsa-text-light);
}
.page-hero--inner h1 { color: #fff; }
.page-hero__sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin: 0; }

.steps-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.step-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-number {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--vtsa-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--vtsa-radius);
}
.step-body h3 { margin-top: 0; }

.cta-band { padding: 3rem 0; }
.cta-band__inner { text-align: center; }
.cta-band__inner h2 { color: #fff; margin-top: 0; margin-bottom: 0.75rem; }
.cta-band__inner p { color: var(--vtsa-text-light); margin-bottom: 1.5rem; }

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 { margin-top: 1.5rem; }
.map-container { margin-top: 1rem; }
.map-container iframe { width: 100%; height: 450px; border: 0; display: block; }

.press-quote {
  border-left: 4px solid var(--vtsa-accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--vtsa-highlight-bg);
}
.press-quote blockquote { font-style: italic; font-size: 1.05rem; color: var(--vtsa-text); margin-bottom: 0.5rem; }
.press-quote cite { font-size: 0.85rem; color: var(--vtsa-text-muted); }

.legal-section { padding: 3rem 0; }
.legal-section__inner { max-width: 800px; margin: 0 auto; }
.legal-meta { color: var(--vtsa-text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal-section h1 { margin-bottom: 0.5rem; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.88rem; }
.cookie-table th { background: var(--vtsa-accent-dark); color: #fff; padding: 0.6rem 0.8rem; text-align: left; }
.cookie-table td { padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--vtsa-border); }

.thankyou-section { min-height: 60vh; display: flex; align-items: center; }
.thankyou-section__inner { text-align: center; max-width: 560px; margin: 0 auto; }
.thankyou-icon { font-size: 3rem; color: var(--vtsa-accent); margin-bottom: 1rem; }

.error-section { min-height: 60vh; display: flex; align-items: center; }
.error-section__inner { text-align: center; max-width: 480px; margin: 0 auto; }
.error-code { font-size: 6rem; font-weight: 700; color: var(--vtsa-accent); line-height: 1; margin-bottom: 0.5rem; }

@media (max-width: 900px) {
  .stat-band__grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-intro__grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .pack-showcase__grid { grid-template-columns: 1fr; }
  .lifestyle-section__grid { grid-template-columns: 1fr; }
  .order-section__grid { grid-template-columns: 1fr; }
  .contact-section__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--vtsa-bg-darker); padding: 1rem 1.5rem; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 1rem; }
  .uopc { display: flex; }
  .stat-band__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__content { padding: 3rem 1rem; }
  .hero__cta-group { flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uqty{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}
.uqty.is-visible,.cookie-banner--visible,.uqty.show,.uqty.active{transform:none !important}
.uqty a{color:inherit;text-decoration:underline}
.uqty button{cursor:pointer}
.uqzb{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}
.uqzb.is-visible,.cookie-modal--visible,.uqzb.show,.uqzb.active{display:flex !important}
.ufxu,.uqzb>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.ugnv .ujyq,.ugnv .udhm,.ugnv .unpe,.ugnv .uine,.uddm .ujyq,.uddm .udhm,.uddm .unpe,.uddm .uine{background:#fff !important;color:#1a1a1a !important}
.ujyq,.udhm{color:#1a1a1a !important}
.ujyq label,.udhm label,.ujyq p,.udhm p,.ujyq .usfz,.ujyq span,.udhm span,.utlx,.ujxx,.unpe .uzup,.unpe .uzup *{color:#1a1a1a !important}
.utlx,.ujxx{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ujyq .usan{color:#1a1a1a !important}
.ujyq .usan.is-sel{color:#fff !important}
.ulbi .uvsv{display:none}
.ulbi .uvsv.is-visible{display:block !important;color:#c0392b}
.ulbi .ubyr,.ulbi [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ulbi{color:#1a1a1a}
.ugnv .ulbi,.uddm .ulbi{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uamf{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uamf img{width:100%;height:100%;object-fit:cover}
.uljb,.ubjo{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uljb img,.ubjo img{width:100%;height:100%;object-fit:cover;display:block}
.uljb img{opacity:.28}
.ubjo img{opacity:.07}
*:has(> .uljb),*:has(> .ubjo){position:relative}
.urdd{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)}
.urdd .unlx{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.urdd .uljp{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uzac{margin:1.4rem auto;max-width:920px}
.uzac img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.urmu{padding:3rem 0}
.uplb{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uplb img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uine{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uhmc{display:flex;overflow:hidden;gap:0 !important}
.uixq{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.urcm{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}
.uimv{left:.5rem}.uotr{right:.5rem}
.unpe .uzup{display:none}.unpe .uzup.is-active{display:block}
.ujyq .upna{display:block !important}
.ujyq .uivu{display:flex;flex-wrap:wrap;gap:.5rem}
.ujyq .usan{cursor:pointer}
