:root {
  --vtse-accent: #1259a3;
  --vtse-accent-dark: #0d4280;
  --vtse-accent-light: #e8f0fb;
  --vtse-red: #c9121b;
  --vtse-gold: #a08e1e;
  --vtse-black: #0d0d0d;
  --vtse-white: #ffffff;
  --vtse-bg: #f4f6fb;
  --vtse-bg-dark: #0f1e33;
  --vtse-bg-mid: #162d4e;
  --vtse-text: #1a1a2e;
  --vtse-text-muted: #5a6478;
  --vtse-border: #dde3ef;
  --vtse-radius: 18px;
  --vtse-container: 960px;
  --vtse-shadow-card: 0 4px 24px rgba(18,89,163,0.10), 0 1.5px 6px rgba(0,0,0,0.06);
  --vtse-font-head: 'Sora', sans-serif;
  --vtse-font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--vtse-font-body);
  background: var(--vtse-bg);
  color: var(--vtse-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--vtse-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: var(--vtse-container);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

h1, h2, h3, h4, h5 {
  font-family: var(--vtse-font-head);
  line-height: 1.18;
  color: var(--vtse-text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

.accent-word { color: var(--vtse-accent); }
.red-word { color: var(--vtse-red); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--vtse-accent-dark);
  color: var(--vtse-white);
  font-family: var(--vtse-font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.75em 1.6em;
  border-radius: var(--vtse-radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--vtse-accent); transform: translateY(-1px); text-decoration: none; }

.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: var(--vtse-accent-dark);
  font-family: var(--vtse-font-head);
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none;
  border: none; background: none; cursor: pointer;
  transition: gap 0.2s, color 0.2s;
}
.btn-text-arrow:hover { gap: 0.55em; color: var(--vtse-accent); text-decoration: none; }
.btn-text-arrow .arr { font-size: 1.1em; }

.tag-chip {
  display: inline-block;
  background: var(--vtse-accent-light);
  color: var(--vtse-accent-dark);
  font-family: var(--vtse-font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28em 0.85em;
  border-radius: 100px;
}

.card-elevated {
  background: var(--vtse-white);
  border-radius: var(--vtse-radius);
  box-shadow: var(--vtse-shadow-card);
  padding: 1.6rem;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--vtse-accent-light);
  color: var(--vtse-accent-dark);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.icon-circle.red { background: #fdeaea; color: var(--vtse-red); }
.icon-circle.gold { background: #f7f3e1; color: var(--vtse-gold); }

.stars {
  color: var(--vtse-gold);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

section { padding: 56px 0; }

.ulml {
  background: var(--vtse-bg-dark);
  color: var(--vtse-white);
  padding: 64px 0;
}
.ulml h2, .ulml h3, .ulml h4 { color: var(--vtse-white); }
.ulml .text-muted { color: rgba(255,255,255,0.65); }

.uaru {
  background: var(--vtse-bg-mid);
  color: var(--vtse-white);
  padding: 64px 0;
}
.uaru h2, .uaru h3 { color: var(--vtse-white); }

.section-light {
  background: var(--vtse-white);
  padding: 56px 0;
}

.section-tinted {
  background: var(--vtse-accent-light);
  padding: 56px 0;
}

.ribbon-dark {
  background: var(--vtse-bg-dark);
  padding: 14px 0;
  width: 100%;
}
.ribbon-dark .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ribbon-dark p {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  margin: 0;
  font-family: var(--vtse-font-body);
}
.ribbon-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ribbon-trust span {
  display: flex;
  align-items: center;
  gap: 0.38em;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-family: var(--vtse-font-body);
  font-weight: 500;
}
.ribbon-trust span::before {
  content: '✓';
  color: #5de0a8;
  font-weight: 700;
}

.ukce {
  background: var(--vtse-white);
  border-bottom: 1px solid var(--vtse-border);
  position: sticky;
  top: 0;
  z-index: 900;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 1rem;
}
.logo {
  font-family: var(--vtse-font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--vtse-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--vtse-accent); }

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a {
  font-family: var(--vtse-font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--vtse-text-muted);
  text-decoration: none;
  transition: color 0.18s;
}
.site-nav a:hover { color: var(--vtse-accent); }

.nav-order-btn {
  font-family: var(--vtse-font-head);
  font-weight: 700;
  font-size: 0.84rem;
  background: var(--vtse-accent);
  color: var(--vtse-white);
  padding: 0.45em 1.15em;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.18s;
}
.nav-order-btn:hover { background: var(--vtse-accent-dark); text-decoration: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--vtse-text);
  border-radius: 2px;
  transition: all 0.2s;
}

.hero {
  background: var(--vtse-bg);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.uciq {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.hero-date {
  font-size: 0.8rem;
  color: var(--vtse-text-muted);
  font-family: var(--vtse-font-body);
}
.hero-byline {
  font-size: 0.8rem;
  color: var(--vtse-text-muted);
  font-family: var(--vtse-font-body);
}
.hero-byline strong { color: var(--vtse-text); font-weight: 600; }

.hero h1 {
  max-width: 820px;
  margin-bottom: 1.1rem;
}
.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--vtse-text-muted);
  max-width: 640px;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hero-trust {
  font-size: 0.82rem;
  color: var(--vtse-text-muted);
  display: flex;
  align-items: center;
  gap: 0.35em;
}
.hero-trust .stars { font-size: 0.88rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--vtse-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-text .tag-chip { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 0.85rem; }
.about-text p { color: var(--vtse-text-muted); }
.about-bio {
  margin-top: 1.4rem;
  padding: 1.2rem;
  background: var(--vtse-accent-light);
  border-radius: var(--vtse-radius);
  border-left: 4px solid var(--vtse-accent);
}
.about-bio-name {
  font-family: var(--vtse-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--vtse-text);
}
.about-bio-role {
  font-size: 0.8rem;
  color: var(--vtse-text-muted);
  margin-bottom: 0.55rem;
}
.about-bio p { font-size: 0.88rem; color: var(--vtse-text-muted); margin: 0; }

.faq-list { max-width: 720px; }
.uoyy {
  border-bottom: 1px solid var(--vtse-border);
  padding: 1.1rem 0;
}
.faq-q {
  font-family: var(--vtse-font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--vtse-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}
.faq-q .faq-icon {
  flex-shrink: 0;
  color: var(--vtse-accent);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.22s;
  margin-top: 0.1em;
}
.uoyy.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 0.93rem;
  color: var(--vtse-text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.22s;
  line-height: 1.7;
}
.uoyy.open .faq-a { max-height: 600px; padding-top: 0.7rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.step-card {
  background: var(--vtse-white);
  border-radius: var(--vtse-radius);
  box-shadow: var(--vtse-shadow-card);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.step-num {
  font-family: var(--vtse-font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--vtse-accent);
  line-height: 1;
}
.step-card h3 { margin: 0; }
.step-card p { font-size: 0.9rem; color: var(--vtse-text-muted); margin: 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.review-card {
  background: var(--vtse-white);
  border-radius: var(--vtse-radius);
  box-shadow: var(--vtse-shadow-card);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.review-card .stars { font-size: 0.9rem; }
.review-text { font-size: 0.9rem; color: var(--vtse-text); line-height: 1.65; }
.review-author { font-family: var(--vtse-font-head); font-weight: 700; font-size: 0.83rem; color: var(--vtse-text-muted); }
.review-disclaimer { font-size: 0.75rem; color: var(--vtse-text-muted); font-style: italic; margin-top: 0.4rem; }

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.lifestyle-img-wrap {
  border-radius: var(--vtse-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.lifestyle-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-tips { display: flex; flex-direction: column; gap: 1rem; }
.lifestyle-tip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.lifestyle-tip p { font-size: 0.92rem; color: var(--vtse-text-muted); margin: 0; }
.lifestyle-tip h4 { margin-bottom: 0.2rem; }

.routine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.routine-img-wrap {
  border-radius: var(--vtse-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.routine-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.routine-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.routine-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.routine-step p { font-size: 0.9rem; color: var(--vtse-text-muted); margin: 0; }
.routine-step h4 { margin-bottom: 0.18rem; }

.stat-band {
  background: var(--vtse-bg-dark);
  padding: 56px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
}
.stat-item { padding: 1.2rem; }
.stat-num {
  font-family: var(--vtse-font-head);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--vtse-accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}

.ingredients-intro {
  max-width: 680px;
  margin-bottom: 2rem;
}
.ingredients-intro p { color: var(--vtse-text-muted); }

.nutrient-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.91rem;
  background: var(--vtse-white);
  border-radius: var(--vtse-radius);
  overflow: hidden;
  box-shadow: var(--vtse-shadow-card);
  margin-bottom: 1.8rem;
}
.nutrient-table th {
  background: var(--vtse-accent);
  color: var(--vtse-white);
  font-family: var(--vtse-font-head);
  font-weight: 700;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nutrient-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--vtse-border);
  color: var(--vtse-text);
}
.nutrient-table tr:last-child td { border-bottom: none; }
.nutrient-table tr:nth-child(even) td { background: var(--vtse-accent-light); }
.nutrient-nrv { color: var(--vtse-accent-dark); font-weight: 600; }

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.spotlight-card {
  background: var(--vtse-white);
  border-radius: var(--vtse-radius);
  box-shadow: var(--vtse-shadow-card);
  overflow: hidden;
}
.spotlight-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.spotlight-img img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-body { padding: 1.1rem; }
.spotlight-body h4 { margin-bottom: 0.35rem; }
.spotlight-body p { font-size: 0.85rem; color: var(--vtse-text-muted); margin: 0; }
.efsa-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--vtse-accent-light);
  color: var(--vtse-accent-dark);
  padding: 0.18em 0.6em;
  border-radius: 6px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.order-section {
  background: var(--vtse-white);
  padding: 64px 0;
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.order-pack-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.pack-img-frame {
  width: 240px; height: 240px;
  border-radius: var(--vtse-radius);
  overflow: hidden;
  background: var(--vtse-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--vtse-shadow-card);
}
.pack-img-frame img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.pack-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--vtse-text-muted);
  line-height: 1.5;
}
.pack-trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}
.pack-trust span {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.83rem;
  color: var(--vtse-text-muted);
}
.pack-trust span::before {
  content: '✓';
  color: var(--vtse-accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.order-form-wrap h2 { margin-bottom: 0.5rem; }
.order-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 1rem 0 1.4rem;
}
.price-now {
  font-family: var(--vtse-font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--vtse-text);
}
.price-was {
  font-size: 1rem;
  color: var(--vtse-text-muted);
  text-decoration: line-through;
}
.price-badge {
  background: var(--vtse-red);
  color: var(--vtse-white);
  font-family: var(--vtse-font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.22em 0.7em;
  border-radius: 100px;
}

.ujaf { display: flex; flex-direction: column; gap: 0.85rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vtse-text);
  font-family: var(--vtse-font-head);
}
.form-field input[type="text"],
.form-field input[type="tel"] {
  padding: 0.65em 1em;
  border: 1.5px solid var(--vtse-border);
  border-radius: 10px;
  font-family: var(--vtse-font-body);
  font-size: 0.95rem;
  color: var(--vtse-text);
  background: var(--vtse-bg);
  transition: border-color 0.18s;
  outline: none;
}
.form-field input:focus { border-color: var(--vtse-accent); background: var(--vtse-white); }
.form-honeypot { display: none !important; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--vtse-text-muted);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] { margin-top: 0.18em; flex-shrink: 0; }
.form-consent a { color: var(--vtse-accent); }

.ujaf button[type="submit"] {
  background: var(--vtse-accent-dark);
  color: var(--vtse-white);
  font-family: var(--vtse-font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85em 2em;
  border-radius: var(--vtse-radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  letter-spacing: 0.01em;
}
.ujaf button[type="submit"]:hover { background: var(--vtse-accent); transform: translateY(-1px); }
.order-note { font-size: 0.78rem; color: var(--vtse-text-muted); margin-top: 0.5rem; }

.calc-wrap {
  background: var(--vtse-white);
  border-radius: var(--vtse-radius);
  box-shadow: var(--vtse-shadow-card);
  padding: 2rem;
  max-width: 560px;
  margin: 0 auto;
}
.calc-wrap h3 { margin-bottom: 1.2rem; }
.calc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.calc-label { font-size: 0.9rem; color: var(--vtse-text-muted); flex: 1; min-width: 160px; }
.calc-input {
  width: 80px;
  padding: 0.5em 0.75em;
  border: 1.5px solid var(--vtse-border);
  border-radius: 10px;
  font-family: var(--vtse-font-body);
  font-size: 1rem;
  text-align: center;
  color: var(--vtse-text);
  background: var(--vtse-bg);
  outline: none;
}
.calc-input:focus { border-color: var(--vtse-accent); }
.calc-result {
  background: var(--vtse-accent-light);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-top: 0.5rem;
  font-family: var(--vtse-font-head);
  font-size: 1.1rem;
  color: var(--vtse-accent-dark);
  font-weight: 700;
  text-align: center;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.mosaic-cell {
  border-radius: var(--vtse-radius);
  overflow: hidden;
}
.mosaic-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mosaic-cell.large { grid-row: 1 / 3; aspect-ratio: 3/4; }
.mosaic-cell.small { aspect-ratio: 4/3; }

.site-footer {
  background: var(--vtse-bg-dark);
  color: rgba(255,255,255,0.78);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--vtse-white); font-size: 1.1rem; margin-bottom: 0.75rem; display: block; }
.footer-brand p { font-size: 0.82rem; line-height: 1.65; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  color: var(--vtse-white);
  font-family: var(--vtse-font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.62);
  font-size: 0.83rem;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: var(--vtse-white); }
.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  max-width: 680px;
  margin-top: 1rem;
  padding: 0 0 1.5rem;
  border-top: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.78rem;
  color: var(--vtse-text-muted);
  padding: 14px 0 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--vtse-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--vtse-accent); }
.breadcrumb-sep { opacity: 0.45; }

.upfn {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--vtse-bg-dark);
  color: rgba(255,255,255,0.9);
  z-index: 9999;
  padding: 1.1rem 0;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.upfn.is-visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ubjg { font-size: 0.82rem; line-height: 1.6; flex: 1; min-width: 220px; }
.ubjg a { color: var(--vtse-accent); }
.uqlr { display: flex; gap: 0.6rem; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--vtse-font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5em 1.1em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.18s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn.accept { background: var(--vtse-accent); color: var(--vtse-white); }
.cookie-btn.reject { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.cookie-btn.settings { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.72); }

.uknc {
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.uknc.is-open { display: flex; }
.cookie-modal-box {
  background: var(--vtse-white);
  border-radius: var(--vtse-radius);
  padding: 2rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 8px 48px rgba(0,0,0,0.22);
}
.cookie-modal-box h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--vtse-border);
}
.cookie-toggle-row:last-of-type { border-bottom: none; }
.cookie-toggle-label { font-size: 0.88rem; font-weight: 600; color: var(--vtse-text); }
.cookie-toggle-desc { font-size: 0.76rem; color: var(--vtse-text-muted); }
.cookie-toggle-wrap { display: flex; flex-direction: column; gap: 0.1rem; }
input.cookie-toggle { width: 36px; height: 20px; cursor: pointer; flex-shrink: 0; }
.cookie-modal-save {
  margin-top: 1.2rem;
  background: var(--vtse-accent-dark);
  color: var(--vtse-white);
  font-family: var(--vtse-font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6em 1.4em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  width: 100%;
}

.inner-page-hero {
  background: var(--vtse-bg);
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--vtse-border);
}
.inner-page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

@media (max-width: 860px) {
  .about-grid, .lifestyle-grid, .routine-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .spotlight-grid { grid-template-columns: 1fr 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr; gap: 0; }
  .mosaic-grid { grid-template-columns: 1fr 1fr; }
  .mosaic-cell.large { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16/9; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 540px) {
  .spotlight-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mosaic-grid { grid-template-columns: 1fr; }
  .order-price-row { flex-wrap: wrap; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  section { padding: 44px 0; }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--vtse-white);
  border-top: 1px solid var(--vtse-border);
  padding: 1rem 24px 1.4rem;
  gap: 0.75rem;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-family: var(--vtse-font-body);
  font-size: 0.95rem;
  color: var(--vtse-text);
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0;
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.upfn{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}
.upfn.is-visible,.cookie-banner--visible,.upfn.show,.upfn.active{transform:none !important}
.upfn a{color:inherit;text-decoration:underline}
.upfn button{cursor:pointer}
.uknc{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}
.uknc.is-visible,.cookie-modal--visible,.uknc.show,.uknc.active{display:flex !important}
.ukla,.uknc>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.ulml .umpo,.ulml .uygs,.ulml .ubfh,.ulml .uxvx,.uaru .umpo,.uaru .uygs,.uaru .ubfh,.uaru .uxvx{background:#fff !important;color:#1a1a1a !important}
.umpo,.uygs{color:#1a1a1a !important}
.umpo label,.uygs label,.umpo p,.uygs p,.umpo .uofv,.umpo span,.uygs span,.umrm,.upor,.ubfh .uemy,.ubfh .uemy *{color:#1a1a1a !important}
.umrm,.upor{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.umpo .uvpq{color:#1a1a1a !important}
.umpo .uvpq.is-sel{color:#fff !important}
.ujaf .uftt{display:none}
.ujaf .uftt.is-visible{display:block !important;color:#c0392b}
.ujaf .uzbl,.ujaf [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ujaf{color:#1a1a1a}
.ulml .ujaf,.uaru .ujaf{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ubfg{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ubfg img{width:100%;height:100%;object-fit:cover}
.uciq,.ufrs{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uciq img,.ufrs img{width:100%;height:100%;object-fit:cover;display:block}
.uciq img{opacity:.28}
.ufrs img{opacity:.07}
*:has(> .uciq),*:has(> .ufrs){position:relative}
.umhb{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)}
.umhb .uxzo{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.umhb .ujll{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.urtf{margin:1.4rem auto;max-width:920px}
.urtf img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uftw{padding:3rem 0}
.uflk{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uflk img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uxvx{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uakh{display:flex;overflow:hidden;gap:0 !important}
.uqvu{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.udhn{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}
.uhfg{left:.5rem}.umsg{right:.5rem}
.ubfh .uemy{display:none}.ubfh .uemy.is-active{display:block}
.umpo .uywm{display:block !important}
.umpo .ukpd{display:flex;flex-wrap:wrap;gap:.5rem}
.umpo .uvpq{cursor:pointer}
