:root {
  --vkfq-c-primary: #1259a3;
  --vkfq-c-accent: #d41520;
  --vkfq-c-gold: #a98e18;
  --vkfq-c-bg: #f4f2e8;
  --vkfq-c-bg-dark: #0d1a2e;
  --vkfq-c-text: #1a1a1a;
  --vkfq-c-text-muted: #5a5a5a;
  --vkfq-c-white: #ffffff;
  --vkfq-c-border: #dddbc8;
  --vkfq-c-card-bg: #edebd6;
  --vkfq-radius: 18px;
  --vkfq-container: 1320px;
  --vkfq-gap: 2rem;
  --vkfq-section-py: 5rem;
  --vkfq-font-head: 'Epilogue', sans-serif;
  --vkfq-font-body: 'Mulish', sans-serif;
}

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

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

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

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

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

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

.container {
  width: 100%;
  max-width: var(--vkfq-container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: var(--vkfq-section-py) 0; }

.uzyd {
  background: var(--vkfq-c-bg-dark);
  color: var(--vkfq-c-white);
}
.uzyd h2, .uzyd h3, .uzyd h4 { color: var(--vkfq-c-white); }
.uzyd p, .uzyd li { color: rgba(255,255,255,0.82); }

.uhcv {
  background: var(--vkfq-c-primary);
  color: var(--vkfq-c-white);
}
.uhcv h2, .uhcv h3 { color: var(--vkfq-c-white); }
.uhcv p { color: rgba(255,255,255,0.88); }

.section-gold {
  background: linear-gradient(135deg, var(--vkfq-c-gold) 0%, #c8a820 100%);
  color: var(--vkfq-c-white);
}

.section-light { background: var(--vkfq-c-bg); }

.section-card { background: var(--vkfq-c-card-bg); }

.chip {
  display: inline-block;
  background: var(--vkfq-c-primary);
  color: var(--vkfq-c-white);
  font-family: var(--vkfq-font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--vkfq-font-head);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--vkfq-radius);
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--vkfq-c-primary);
  color: var(--vkfq-c-white);
  border-color: var(--vkfq-c-primary);
}
.btn-primary:hover {
  background: #0f4a8a;
  border-color: #0f4a8a;
  text-decoration: none;
  color: var(--vkfq-c-white);
}

.btn-outline {
  background: transparent;
  color: var(--vkfq-c-primary);
  border-color: var(--vkfq-c-primary);
}
.btn-outline:hover {
  background: var(--vkfq-c-primary);
  color: var(--vkfq-c-white);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--vkfq-c-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  text-decoration: none;
  color: var(--vkfq-c-white);
}

.btn-accent {
  background: var(--vkfq-c-accent);
  color: var(--vkfq-c-white);
  border-color: var(--vkfq-c-accent);
}
.btn-accent:hover {
  background: #b5111b;
  border-color: #b5111b;
  text-decoration: none;
  color: var(--vkfq-c-white);
}

.tag {
  display: inline-block;
  background: rgba(18,89,163,0.10);
  color: var(--vkfq-c-primary);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--vkfq-c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; }
.icon-circle.gold { background: var(--vkfq-c-gold); }
.icon-circle.accent { background: var(--vkfq-c-accent); }
.icon-circle.dark { background: var(--vkfq-c-bg-dark); }

.lead { font-size: 1.15rem; color: var(--vkfq-c-text-muted); margin-bottom: 2rem; }

.section-label {
  font-family: var(--vkfq-font-head);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vkfq-c-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.outlined-word {
  color: transparent;
  -webkit-text-stroke: 2px var(--vkfq-c-primary);
  text-stroke: 2px var(--vkfq-c-primary);
}

.divider {
  width: 56px;
  height: 4px;
  background: var(--vkfq-c-gold);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--vkfq-gap); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--vkfq-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--vkfq-gap); }

.card-flat {
  background: var(--vkfq-c-card-bg);
  border-radius: var(--vkfq-radius);
  padding: 2rem;
}
.card-flat-white {
  background: var(--vkfq-c-white);
  border-radius: var(--vkfq-radius);
  padding: 2rem;
}

.ubyp {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--vkfq-c-white);
  border-bottom: 1px solid var(--vkfq-c-border);
  padding: 0.9rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  font-family: var(--vkfq-font-head);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--vkfq-c-primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.site-logo span { color: var(--vkfq-c-gold); }

.site-nav { display: flex; align-items: center; gap: 2rem; list-style: none; }
.site-nav a {
  font-family: var(--vkfq-font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--vkfq-c-text);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--vkfq-c-primary); }

.nav-cta { margin-left: 0.5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--vkfq-c-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  background: var(--vkfq-c-white);
  border-top: 1px solid var(--vkfq-c-border);
  padding: 1.5rem 2rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a {
  font-family: var(--vkfq-font-head);
  font-weight: 700;
  color: var(--vkfq-c-text);
  font-size: 1.05rem;
}

.hero {
  padding: 5rem 0 4rem;
  background: var(--vkfq-c-bg);
  position: relative;
  overflow: hidden;
}

.urfi {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--vkfq-c-text-muted);
  max-width: 500px;
}

.hero-cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vkfq-c-text-muted);
}
.trust-item svg { width: 18px; height: 18px; fill: var(--vkfq-c-gold); }

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pack-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.pack-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: var(--vkfq-radius);
  filter: drop-shadow(0 24px 48px rgba(18,89,163,0.18));
}

.pack-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--vkfq-c-accent);
  color: var(--vkfq-c-white);
  font-family: var(--vkfq-font-head);
  font-weight: 900;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.stat-band {
  background: var(--vkfq-c-primary);
  color: var(--vkfq-c-white);
  padding: 3rem 0;
}

.stat-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {}

.stat-num {
  font-family: var(--vkfq-font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--vkfq-c-white);
  line-height: 1;
}

.stat-num span { color: var(--vkfq-c-gold); }

.stat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
}

.author-section { background: var(--vkfq-c-bg); }

.author-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.author-avatar {
  width: 200px;
  height: 200px;
  border-radius: var(--vkfq-radius);
  object-fit: cover;
  background: var(--vkfq-c-card-bg);
}

.author-placeholder {
  width: 200px;
  height: 200px;
  border-radius: var(--vkfq-radius);
  background: var(--vkfq-c-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-placeholder svg { width: 64px; height: 64px; stroke: var(--vkfq-c-primary); fill: none; stroke-width: 1.5; }

.author-name {
  font-family: var(--vkfq-font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.author-title {
  font-size: 0.9rem;
  color: var(--vkfq-c-text-muted);
  font-weight: 700;
  margin-bottom: 1rem;
}

.author-tags { margin-bottom: 1rem; }

.sources-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.source-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--vkfq-c-card-bg);
  border-radius: var(--vkfq-radius);
}

.source-item a { font-weight: 700; color: var(--vkfq-c-primary); }
.source-item p { font-size: 0.9rem; color: var(--vkfq-c-text-muted); margin-top: 0.2rem; }

.myths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.myth-card {
  border-radius: var(--vkfq-radius);
  padding: 1.75rem;
  background: var(--vkfq-c-card-bg);
}

.myth-label {
  font-family: var(--vkfq-font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.myth-label.myth { color: var(--vkfq-c-accent); }
.myth-label.fact { color: #2c7a3f; }

.myth-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.myth-card p { font-size: 0.92rem; color: var(--vkfq-c-text-muted); }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.useb {
  border-radius: var(--vkfq-radius);
  background: var(--vkfq-c-white);
  overflow: hidden;
  border: 1px solid var(--vkfq-c-border);
}

.uuih {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--vkfq-font-head);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--vkfq-c-text);
  gap: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--vkfq-c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.faq-icon svg { width: 14px; height: 14px; stroke: white; stroke-width: 2.5; fill: none; }
.useb.open .faq-icon { transform: rotate(45deg); background: var(--vkfq-c-accent); }

.ujkp {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--vkfq-c-text-muted);
}
.useb.open .ujkp { display: block; }

.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.tip-card {
  background: var(--vkfq-c-card-bg);
  border-radius: var(--vkfq-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-card h4 { font-size: 1.05rem; font-weight: 800; }
.tip-card p { font-size: 0.92rem; color: var(--vkfq-c-text-muted); }

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

.ingredients-table th {
  background: var(--vkfq-c-primary);
  color: var(--vkfq-c-white);
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-family: var(--vkfq-font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.ingredients-table th:first-child { border-radius: var(--vkfq-radius) 0 0 0; }
.ingredients-table th:last-child { border-radius: 0 var(--vkfq-radius) 0 0; }

.ingredients-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--vkfq-c-border);
  vertical-align: top;
}

.ingredients-table tr:last-child td { border-bottom: none; }
.ingredients-table tr:nth-child(even) td { background: rgba(18,89,163,0.04); }

.ingredients-table .efsa-claim { font-size: 0.82rem; color: var(--vkfq-c-text-muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.review-card {
  background: var(--vkfq-c-card-bg);
  border-radius: var(--vkfq-radius);
  padding: 1.75rem;
}

.review-stars { color: var(--vkfq-c-gold); font-size: 1.1rem; margin-bottom: 0.6rem; }
.review-text { font-size: 0.95rem; color: var(--vkfq-c-text); margin-bottom: 1rem; font-style: italic; }
.review-author { font-size: 0.85rem; font-weight: 700; color: var(--vkfq-c-text-muted); }
.review-disclaimer { font-size: 0.78rem; color: var(--vkfq-c-text-muted); margin-top: 0.4rem; }

.order-section {
  background: linear-gradient(135deg, #0a1520 0%, var(--vkfq-c-bg-dark) 100%);
  padding: var(--vkfq-section-py) 0;
}

.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.order-left {}
.order-left h2 { color: var(--vkfq-c-white); }
.order-left p { color: rgba(255,255,255,0.78); }

.order-perks { display: flex; flex-direction: column; gap: 0.85rem; margin: 2rem 0; }

.perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}
.perk svg { width: 20px; height: 20px; stroke: var(--vkfq-c-gold); fill: none; stroke-width: 2.5; flex-shrink: 0; }

.bundle-cards { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }

.bundle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.2s;
  gap: 1rem;
}

.bundle-card.selected, .bundle-card:hover {
  border-color: var(--vkfq-c-gold);
  background: rgba(169,142,24,0.12);
}

.bundle-card input[type="radio"] { accent-color: var(--vkfq-c-gold); width: 18px; height: 18px; flex-shrink: 0; }

.bundle-label { flex: 1; }
.bundle-name { font-family: var(--vkfq-font-head); font-weight: 800; color: var(--vkfq-c-white); font-size: 0.95rem; }
.bundle-save { font-size: 0.78rem; color: var(--vkfq-c-gold); font-weight: 700; }
.bundle-price { font-family: var(--vkfq-font-head); font-weight: 900; color: var(--vkfq-c-white); font-size: 1.1rem; }

.order-form-wrap {
  background: var(--vkfq-c-white);
  border-radius: var(--vkfq-radius);
  padding: 2.5rem;
}

.order-form-title {
  font-family: var(--vkfq-font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--vkfq-c-text);
}

.ukph { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vkfq-c-text);
  font-family: var(--vkfq-font-head);
}

.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--vkfq-c-border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: var(--vkfq-font-body);
  font-size: 0.95rem;
  color: var(--vkfq-c-text);
  background: var(--vkfq-c-bg);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--vkfq-c-primary);
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--vkfq-c-text-muted);
}
.consent-check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--vkfq-c-primary); }
.consent-check a { color: var(--vkfq-c-primary); font-weight: 700; }

.form-hidden { position: absolute; left: -9999px; opacity: 0; }

.order-submit { width: 100%; padding: 1rem; font-size: 1.05rem; justify-content: center; }

.gallery-section { background: var(--vkfq-c-bg-dark); padding: var(--vkfq-section-py) 0; }

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item { border-radius: var(--vkfq-radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { height: 100%; }

.gallery-item.short img { height: 240px; }

.gallery-overlay {
  grid-column: 2;
  grid-row: 1;
  position: relative;
}
.gallery-overlay-inner {
  background: var(--vkfq-c-primary);
  border-radius: var(--vkfq-radius);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.gallery-overlay-inner h3 { color: var(--vkfq-c-white); font-size: 1.4rem; }
.gallery-overlay-inner p { color: rgba(255,255,255,0.8); font-size: 0.92rem; }

.uvdw {
  background: var(--vkfq-c-white);
  border-radius: var(--vkfq-radius);
  padding: 2.5rem;
  max-width: 560px;
  margin: 0 auto;
}

.uvdw h3 {
  font-family: var(--vkfq-font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.calc-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.calc-row label { font-size: 0.85rem; font-weight: 700; color: var(--vkfq-c-text); font-family: var(--vkfq-font-head); }
.calc-row input, .calc-row select {
  border: 1.5px solid var(--vkfq-c-border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: var(--vkfq-font-body);
  font-size: 0.95rem;
  background: var(--vkfq-c-bg);
  color: var(--vkfq-c-text);
  width: 100%;
}
.calc-row input:focus, .calc-row select:focus { outline: none; border-color: var(--vkfq-c-primary); }

.calc-result {
  background: var(--vkfq-c-card-bg);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-family: var(--vkfq-font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--vkfq-c-primary);
  margin-top: 1rem;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.site-footer {
  background: var(--vkfq-c-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .site-logo { color: var(--vkfq-c-white); }
.footer-brand .site-logo span { color: var(--vkfq-c-gold); }
.footer-brand p { font-size: 0.88rem; margin-top: 1rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

.footer-col h5 {
  font-family: var(--vkfq-font-head);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vkfq-c-gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--vkfq-c-white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-legal-links a:hover { color: var(--vkfq-c-white); }

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--vkfq-c-text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--vkfq-c-primary); font-weight: 600; }
.breadcrumb span { color: var(--vkfq-c-text-muted); }

.usvq {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vkfq-c-bg-dark);
  color: var(--vkfq-c-white);
  padding: 1.25rem 2rem;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.usvq.is-visible { display: block; }

.cookie-inner {
  max-width: var(--vkfq-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.uwfh { flex: 1; font-size: 0.88rem; color: rgba(255,255,255,0.82); }
.uwfh a { color: var(--vkfq-c-gold); font-weight: 700; }

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

.ukhm button {
  font-family: var(--vkfq-font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

[data-cookie-accept] {
  background: var(--vkfq-c-gold);
  color: var(--vkfq-c-bg-dark);
  border-color: var(--vkfq-c-gold);
}
[data-cookie-accept]:hover { background: #c8a820; }

[data-cookie-reject] {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
[data-cookie-reject]:hover { border-color: rgba(255,255,255,0.7); color: var(--vkfq-c-white); }

[data-cookie-settings] {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border-color: transparent;
  text-decoration: underline;
  font-size: 0.8rem;
}

.pack-detail-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.pack-detail-img {
  width: 280px;
  height: 210px;
  object-fit: cover;
  border-radius: var(--vkfq-radius);
  flex-shrink: 0;
}

.ingredients-detail {}

.nrv-bar {
  background: rgba(18,89,163,0.08);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
  margin-top: 4px;
}
.nrv-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--vkfq-c-primary), var(--vkfq-c-gold));
}

.page-hero {
  background: var(--vkfq-c-primary);
  color: var(--vkfq-c-white);
  padding: 4rem 0 3rem;
}
.page-hero h1 { color: var(--vkfq-c-white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.page-hero .lead { color: rgba(255,255,255,0.78); }

@media (max-width: 1100px) {
  .grid-4, .stat-band-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --vkfq-section-py: 3.5rem; }
  .hero-inner, .grid-2, .order-inner, .author-card, .pack-detail-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .pack-wrap { max-width: 280px; margin: 0 auto; }
  .grid-3, .tips-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .myths-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 600px) {
  :root { --vkfq-section-py: 2.5rem; }
  .container { padding: 0 1rem; }
  .grid-3, .tips-grid, .reviews-grid, .grid-4, .stat-band-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-h1 { font-size: 2rem; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .order-form-wrap { padding: 1.5rem; }
  .uvdw { padding: 1.5rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.usvq{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}
.usvq.is-visible,.cookie-banner--visible,.usvq.show,.usvq.active{transform:none !important}
.usvq a{color:inherit;text-decoration:underline}
.usvq button{cursor:pointer}
.uoim{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}
.uoim.is-visible,.cookie-modal--visible,.uoim.show,.uoim.active{display:flex !important}
.ufzj,.uoim>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.reveal.is-visible,.reveal.is-in,.reveal.in-view,.reveal.visible,.reveal.show,.reveal.active{opacity:1 !important;transform:none !important}
.uzyd .usyz,.uzyd .uvdw,.uzyd .unzy,.uzyd .uxml,.uhcv .usyz,.uhcv .uvdw,.uhcv .unzy,.uhcv .uxml{background:#fff !important;color:#1a1a1a !important}
.usyz,.uvdw{color:#1a1a1a !important}
.usyz label,.uvdw label,.usyz p,.uvdw p,.usyz .ubeh,.usyz span,.uvdw span,.usrz,.uigy,.unzy .ugvl,.unzy .ugvl *{color:#1a1a1a !important}
.usrz,.uigy{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.usyz .umsk{color:#1a1a1a !important}
.usyz .umsk.is-sel{color:#fff !important}
.ukph .uoft{display:none}
.ukph .uoft.is-visible{display:block !important;color:#c0392b}
.ukph .uyxt,.ukph [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ukph{color:#1a1a1a}
.uzyd .ukph,.uhcv .ukph{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uaro{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uaro img{width:100%;height:100%;object-fit:cover}
.urfi,.uxsr{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.urfi img,.uxsr img{width:100%;height:100%;object-fit:cover;display:block}
.urfi img{opacity:.28}
.uxsr img{opacity:.07}
*:has(> .urfi),*:has(> .uxsr){position:relative}
.utpz{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)}
.utpz .ufpq{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.utpz .uxxo{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ugyp{margin:1.4rem auto;max-width:920px}
.ugyp img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uucp{padding:3rem 0}
.utac{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.utac img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uxml{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ubwi{display:flex;overflow:hidden;gap:0 !important}
.utcb{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uhyd{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}
.udmc{left:.5rem}.urmi{right:.5rem}
.unzy .ugvl{display:none}.unzy .ugvl.is-active{display:block}
.usyz .ufca{display:block !important}
.usyz .uqyp{display:flex;flex-wrap:wrap;gap:.5rem}
.usyz .umsk{cursor:pointer}
