:root {
  --vxpc-primary: #7c3ae8;
  --vxpc-primary-dark: #3b0185;
  --vxpc-accent: #c07af0;
  --vxpc-accent-gold: #e8c84a;
  --vxpc-bg: #f4f4f6;
  --vxpc-bg-white: #ffffff;
  --vxpc-bg-dark: #1a0635;
  --vxpc-bg-accent-band: #4d1baa;
  --vxpc-text: #1c1024;
  --vxpc-text-muted: #5a4d6b;
  --vxpc-text-light: #f0ecfa;
  --vxpc-border-dashed: #b9a6ff;
  --vxpc-radius: 24px;
  --vxpc-container: 1320px;
  --vxpc-font-head: 'Archivo', sans-serif;
  --vxpc-font-body: 'Archivo', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--vxpc-font-body);
  background: var(--vxpc-bg);
  color: var(--vxpc-text);
  font-size: 1rem;
  line-height: 1.65;
  min-contrast: AA;
}

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

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

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

h1, h2, h3, h4 { font-family: var(--vxpc-font-head); line-height: 1.18; font-weight: 800; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }

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

.section-intro { color: var(--vxpc-text-muted); font-size: 1.08rem; max-width: 680px; margin-bottom: 2.5rem; }

.section-light { background: var(--vxpc-bg-white); padding: 5rem 0; }
.upfq { background: var(--vxpc-bg-dark); color: var(--vxpc-text-light); padding: 5rem 0; }
.upfq a { color: var(--vxpc-accent); }
.upfq h2, .upfq h3, .upfq h4 { color: var(--vxpc-text-light); }
.usvh { background: var(--vxpc-bg-accent-band); color: var(--vxpc-text-light); padding: 5rem 0; }
.usvh h2, .usvh h3 { color: var(--vxpc-text-light); }

section { padding: 5rem 0; }

.ufoi {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vxpc-bg-white);
  border-bottom: 1px solid #e8e0f8;
  padding: .85rem 0;
}
.ufoi .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-logo {
  font-family: var(--vxpc-font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--vxpc-primary-dark);
  white-space: nowrap;
  text-decoration: none;
}
.site-logo:hover { text-decoration: none; color: var(--vxpc-primary); }
.site-nav {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  align-items: center;
}
.site-nav a { color: var(--vxpc-text); font-weight: 500; font-size: .97rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--vxpc-primary); text-decoration: none; }
.btn-header-cta {
  background: var(--vxpc-primary-dark);
  color: #fff;
  padding: .55rem 1.3rem;
  border-radius: var(--vxpc-radius);
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
  transition: background .2s;
}
.btn-header-cta:hover { background: var(--vxpc-primary); text-decoration: none; color: #fff; }

.breadcrumb { padding: .75rem 0; background: var(--vxpc-bg); border-bottom: 1px solid #e8e0f8; }
.breadcrumb ol { display: flex; list-style: none; gap: .5rem; margin: 0; padding: 0; flex-wrap: wrap; }
.breadcrumb li { font-size: .85rem; color: var(--vxpc-text-muted); }
.breadcrumb li + li::before { content: "›"; margin-right: .5rem; }
.breadcrumb a { color: var(--vxpc-text-muted); }

.hero { position: relative; overflow: hidden; padding: 0; background: var(--vxpc-bg); }
.hero-bg-layer { position: absolute; inset: 0; z-index: 0; }
.hero-bg-layer img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero-pack { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero-pack img { border-radius: var(--vxpc-radius); box-shadow: 0 12px 48px rgba(108,28,209,.18); }
.hero-stars { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--vxpc-text-muted); }
.hero-stars img { border-radius: 0; box-shadow: none; width: 100px; height: 20px; object-fit: contain; }
.hero-eyebrow { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--vxpc-text-muted); margin-bottom: .75rem; font-weight: 600; }
.hero-h1 { margin-bottom: .75rem; }
.h1-outlined {
  display: block;
  -webkit-text-stroke: 2px var(--vxpc-primary);
  color: transparent;
  font-size: inherit;
  line-height: inherit;
}
.h1-solid { display: block; color: var(--vxpc-primary-dark); }
.hero-subhead { font-size: 1.1rem; font-weight: 600; color: var(--vxpc-primary); margin-bottom: .75rem; }
.hero-lead { color: var(--vxpc-text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; max-width: 520px; }
.hero-disclaimer { font-size: .78rem; color: var(--vxpc-text-muted); margin-top: .75rem; }

.btn-cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--vxpc-primary-dark);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: var(--vxpc-radius);
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-cta-arrow:hover { background: var(--vxpc-primary); color: #fff; transform: translateX(3px); text-decoration: none; }

.cards-dashed { display: grid; gap: 1.5rem; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.two-col { grid-template-columns: 1fr 1fr; }

.card-dashed {
  border: 2px dashed var(--vxpc-border-dashed);
  border-radius: var(--vxpc-radius);
  padding: 1.75rem;
  background: var(--vxpc-bg-white);
}
.upfq .card-dashed, .usvh .card-dashed {
  border-color: rgba(185,166,255,.4);
  background: rgba(255,255,255,.06);
}
.card-icon { margin-bottom: 1rem; color: var(--vxpc-primary); }

.card-testimonial { display: flex; flex-direction: column; gap: .75rem; }
.testi-stars { color: var(--vxpc-accent-gold); font-size: 1.2rem; }
blockquote { font-style: italic; color: var(--vxpc-text); line-height: 1.6; margin: 0; }
cite { font-size: .85rem; color: var(--vxpc-text-muted); font-style: normal; }

.lifestyle-image-row { margin-top: 3rem; border-radius: var(--vxpc-radius); overflow: hidden; }
.lifestyle-image-row img { width: 100%; object-fit: cover; border-radius: var(--vxpc-radius); }

.stat-band { padding: 4rem 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 3rem; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--vxpc-font-head); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--vxpc-accent-gold); line-height: 1; }
.stat-label { display: block; font-size: .9rem; color: var(--vxpc-text-light); margin-top: .4rem; opacity: .85; }
.stat-band-img { width: 100%; border-radius: var(--vxpc-radius); opacity: .75; object-fit: cover; max-height: 320px; }

.ingredients-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.ingredient-feature { display: flex; flex-direction: column; gap: 1.5rem; }
.ingredient-feature img { border-radius: var(--vxpc-radius); width: 100%; object-fit: cover; }
.ingredient-cards { display: flex; flex-direction: column; gap: 1rem; }
.ingredient-card { padding: 1.25rem 1.5rem; }
.ingredient-badge { display: inline-block; background: var(--vxpc-primary); color: #fff; font-size: .78rem; font-weight: 700; padding: .25rem .75rem; border-radius: 100px; margin-bottom: .6rem; }
.nutrient-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.nutrient-table th { background: var(--vxpc-primary-dark); color: #fff; padding: .7rem 1rem; text-align: left; font-weight: 700; }
.nutrient-table td { padding: .65rem 1rem; border-bottom: 1px solid #e8e0f8; }
.nutrient-table tr:nth-child(even) td { background: #f8f4ff; }
.ingredient-table-wrap { margin-top: 2.5rem; border-radius: var(--vxpc-radius); overflow: hidden; }
.plant-extracts-img { margin-top: 2.5rem; display: flex; justify-content: center; }
.plant-extracts-img img { border-radius: var(--vxpc-radius); max-width: 480px; }

.routine-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.routine-step { display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; align-items: start; }
.step-num { font-family: var(--vxpc-font-head); font-size: 2.5rem; font-weight: 800; color: var(--vxpc-primary); opacity: .35; line-height: 1; padding-top: .1rem; }
.step-content h3 { margin-bottom: .4rem; }

.comparison-table-wrap { border-radius: var(--vxpc-radius); overflow: hidden; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.comparison-table th { background: var(--vxpc-primary-dark); color: #fff; padding: .8rem 1rem; text-align: left; font-weight: 700; }
.comparison-table td { padding: .7rem 1rem; border-bottom: 1px solid #e8e0f8; }
.comparison-table tr:nth-child(even) td { background: #f8f4ff; }
.col-highlight { background: #f0eaff; font-weight: 600; }
.comparison-table th.col-highlight { background: var(--vxpc-primary); }
.comparison-full th { font-size: .88rem; }

.section-order { padding: 6rem 0; }
.order-grid { display: grid; grid-template-columns: 380px 1fr; gap: 4rem; align-items: start; }
.order-pack img { border-radius: var(--vxpc-radius); box-shadow: 0 12px 48px rgba(108,28,209,.22); }
.order-trust { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.trust-item { font-size: .9rem; color: var(--vxpc-text-light); opacity: .9; }
.order-form-wrap h2 { color: var(--vxpc-text-light); margin-bottom: 1rem; }
.order-price { display: flex; align-items: baseline; gap: 1rem; margin-bottom: .5rem; }
.price-current { font-size: 2rem; font-weight: 800; color: var(--vxpc-accent-gold); }
.price-was { font-size: 1rem; text-decoration: line-through; color: rgba(240,236,250,.5); }
.price-badge { background: var(--vxpc-accent-gold); color: var(--vxpc-primary-dark); font-weight: 800; font-size: .85rem; padding: .2rem .6rem; border-radius: 100px; }
.order-sub { font-size: .9rem; color: rgba(240,236,250,.75); margin-bottom: 1.5rem; }
.uvwi { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--vxpc-text-light); }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  padding: .75rem 1rem;
  border: 2px solid rgba(185,166,255,.4);
  border-radius: var(--vxpc-radius);
  font-family: var(--vxpc-font-body);
  font-size: 1rem;
  background: rgba(255,255,255,.08);
  color: var(--vxpc-text-light);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--vxpc-accent); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(240,236,250,.45); }
.form-consent { flex-direction: row; align-items: flex-start; }
.checkbox-label { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: var(--vxpc-text-light); cursor: pointer; line-height: 1.5; }
.checkbox-label input { margin-top: .15rem; accent-color: var(--vxpc-primary); flex-shrink: 0; }
.checkbox-label a { color: var(--vxpc-accent); }
.btn-order-submit {
  background: var(--vxpc-accent-gold);
  color: var(--vxpc-primary-dark);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--vxpc-radius);
  cursor: pointer;
  transition: background .2s, transform .15s;
  align-self: flex-start;
}
.btn-order-submit:hover { background: #f5d84a; transform: translateY(-2px); }
.order-disclaimer { font-size: .78rem; color: rgba(240,236,250,.6); margin-top: 1rem; line-height: 1.5; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.usxy h3 { font-size: 1rem; margin-bottom: .4rem; }
.usxy p { font-size: .93rem; color: var(--vxpc-text-muted); margin: 0; }

.section-interactive { background: var(--vxpc-bg); }
.uubz { background: var(--vxpc-bg-white); border-radius: var(--vxpc-radius); padding: 2.5rem; max-width: 680px; margin-bottom: 4rem; }
.quiz-progress { margin-bottom: 1.5rem; }
.quiz-step-label { font-size: .82rem; color: var(--vxpc-text-muted); font-weight: 600; display: block; margin-bottom: .4rem; }
.quiz-bar { background: #e8e0f8; border-radius: 100px; height: 6px; }
.quiz-bar-fill { background: var(--vxpc-primary); height: 100%; border-radius: 100px; transition: width .4s; }
.quiz-question { display: none; }
.quiz-question.active { display: block; }
.quiz-q-text { font-weight: 700; font-size: 1.05rem; margin-bottom: 1.2rem; }
.quiz-options { display: flex; flex-direction: column; gap: .75rem; }
.quiz-opt {
  background: var(--vxpc-bg);
  border: 2px dashed var(--vxpc-border-dashed);
  border-radius: var(--vxpc-radius);
  padding: .85rem 1.25rem;
  text-align: left;
  font-family: var(--vxpc-font-body);
  font-size: .95rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  color: var(--vxpc-text);
}
.quiz-opt:hover { border-color: var(--vxpc-primary); background: #f8f4ff; }
.quiz-opt.selected { border-color: var(--vxpc-primary); background: #f0eaff; font-weight: 600; }
.quiz-result { margin-top: 1.5rem; padding: 1.25rem 1.5rem; border-radius: var(--vxpc-radius); background: #f0eaff; border: 2px solid var(--vxpc-primary); display: none; font-weight: 600; color: var(--vxpc-primary-dark); }
.quiz-result.visible { display: block; }

.carousel-section { margin-top: 2rem; }
.user { position: relative; overflow: hidden; border-radius: var(--vxpc-radius); }
.carousel-track { display: flex; transition: transform .4s ease; }
.carousel-slide { min-width: 100%; padding: 0 .25rem; }
.carousel-slide .card-dashed { margin: 0; height: 100%; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 1.25rem; }
.carousel-prev, .carousel-next {
  background: var(--vxpc-primary-dark);
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.carousel-prev:hover, .carousel-next:hover { background: var(--vxpc-primary); }
.carousel-dots { display: flex; gap: .4rem; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vxpc-border-dashed); cursor: pointer; border: none; padding: 0; transition: background .2s; }
.carousel-dot.active { background: var(--vxpc-primary); }

.page-hero-simple { padding: 4rem 0 3rem; }
.page-hero-simple h1 { margin-bottom: .75rem; }
.page-hero-lead { font-size: 1.08rem; color: var(--vxpc-text-muted); max-width: 720px; }

.page-full-img { width: 100%; border-radius: var(--vxpc-radius); margin-bottom: 3rem; object-fit: cover; max-height: 440px; }

.ingredient-full-card { margin-bottom: 2rem; }
.ifc-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.ifc-origin { font-size: .82rem; color: var(--vxpc-text-muted); font-weight: 500; }
.ifc-efsa { font-size: .78rem; background: #e8f4ea; color: #2d6a35; font-weight: 700; padding: .2rem .65rem; border-radius: 100px; }
.efsa-claims { margin-left: 1.25rem; margin-bottom: .75rem; }
.efsa-claims li { font-size: .93rem; color: var(--vxpc-text-muted); }
.full-nutrient-table { margin-top: 3rem; }
.full-nutrient-table h2 { margin-bottom: 1rem; }

.routine-week-plan { display: flex; flex-direction: column; gap: 1.75rem; }
.week-block { }
.week-block h2 { font-size: 1.3rem; margin-bottom: .75rem; }
.routine-ol { margin-left: 1.5rem; }
.timeline-row { display: flex; flex-direction: column; gap: 1rem; max-width: 640px; margin: 0 auto; }
.timeline-point { display: grid; grid-template-columns: 100px 1fr; gap: 1.5rem; align-items: center; }
.tl-time { font-weight: 800; color: var(--vxpc-accent-gold); font-size: 1rem; }
.tl-event { font-size: .95rem; color: var(--vxpc-text-light); }

.comparison-full { font-size: .88rem; }

.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band-inner p { font-size: 1.1rem; font-weight: 600; margin: 0; color: var(--vxpc-text-light); }

.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info h2 { margin-bottom: .5rem; }
.contact-info-item strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--vxpc-text-muted); margin-bottom: .3rem; }
.contact-info-item p { margin: 0; font-size: .95rem; }
.contact-form-wrap h2 { margin-bottom: 1.25rem; }
.ugak { display: flex; flex-direction: column; gap: 1rem; }
.ugak input, .ugak textarea {
  padding: .75rem 1rem;
  border: 2px solid var(--vxpc-border-dashed);
  border-radius: var(--vxpc-radius);
  font-family: var(--vxpc-font-body);
  font-size: 1rem;
  background: var(--vxpc-bg-white);
  color: var(--vxpc-text);
  outline: none;
  transition: border-color .2s;
}
.ugak input:focus, .ugak textarea:focus { border-color: var(--vxpc-primary); }
.ugak .checkbox-label { color: var(--vxpc-text); }
.map-container iframe { display: block; }

.thank-you-page { min-height: 60vh; display: flex; align-items: center; padding: 6rem 0; }
.thank-you-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.ty-icon { font-size: 4rem; color: var(--vxpc-primary); font-weight: 800; margin-bottom: 1rem; }

.legal-page { padding: 4rem 0 6rem; }
.legal-inner { max-width: 800px; }
.legal-inner h1 { margin-bottom: .4rem; }
.legal-updated { font-size: .85rem; color: var(--vxpc-text-muted); margin-bottom: 2.5rem; }
.legal-inner h2 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: .6rem; }
.legal-inner h3 { font-size: 1rem; margin-top: 1.25rem; margin-bottom: .4rem; }
.legal-inner ul, .legal-inner ol { margin-bottom: 1rem; }
.legal-inner code { font-size: .88rem; background: #f0eaff; padding: .1rem .35rem; border-radius: 4px; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin-bottom: 1.5rem; }
.cookie-table th { background: var(--vxpc-primary-dark); color: #fff; padding: .6rem .9rem; text-align: left; font-weight: 700; }
.cookie-table td { padding: .55rem .9rem; border-bottom: 1px solid #e8e0f8; }

.site-footer { padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: var(--vxpc-font-head); font-weight: 800; font-size: 1.15rem; color: var(--vxpc-text-light); display: block; margin-bottom: .75rem; }
.footer-brand p { font-size: .88rem; color: rgba(240,236,250,.7); margin-bottom: .5rem; }
.footer-abn { font-size: .78rem; color: rgba(240,236,250,.55); }
.footer-nav h4, .footer-legal h4 { color: var(--vxpc-text-light); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .85rem; }
.footer-nav ul, .footer-legal ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li, .footer-legal li { margin-bottom: .5rem; }
.footer-nav a, .footer-legal a { color: rgba(240,236,250,.7); font-size: .9rem; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--vxpc-accent); }
.footer-disclaimer { border-top: 1px solid rgba(185,166,255,.2); padding-top: 1.5rem; margin-bottom: 1.5rem; }
.footer-disclaimer p { font-size: .78rem; color: rgba(240,236,250,.55); margin-bottom: .5rem; }
.footer-bottom { border-top: 1px solid rgba(185,166,255,.15); padding-top: 1rem; }
.footer-bottom p { font-size: .8rem; color: rgba(240,236,250,.45); margin: 0; }
.footer-bottom a { color: rgba(240,236,250,.55); }

.disclaimer-small { font-size: .78rem; color: var(--vxpc-text-muted); font-style: italic; margin-top: .75rem; }
.ingredients-page .disclaimer-small { margin-top: 0; }

.uqtp {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--vxpc-bg-dark);
  border-top: 2px solid var(--vxpc-primary);
  padding: 1.25rem 2rem;
  display: none;
}
.uqtp.is-visible { display: block; }
.cookie-inner { max-width: var(--vxpc-container); margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: space-between; }
.cookie-inner p { margin: 0; font-size: .9rem; color: var(--vxpc-text-light); }
.cookie-inner a { color: var(--vxpc-accent); }
.umbu { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--vxpc-primary);
  color: #fff;
  border: none;
  padding: .55rem 1.25rem;
  border-radius: var(--vxpc-radius);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s;
}
.btn-cookie-accept:hover { background: var(--vxpc-accent); }
.btn-cookie-reject {
  background: transparent;
  color: var(--vxpc-text-light);
  border: 1px solid rgba(185,166,255,.4);
  padding: .5rem 1.1rem;
  border-radius: var(--vxpc-radius);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
}
.btn-cookie-reject:hover { border-color: var(--vxpc-accent); color: var(--vxpc-accent); }
.cookie-settings-link { font-size: .85rem; color: rgba(240,236,250,.6); }

.ingredients-page { padding-top: 0; }
.ingredient-full-card img { margin-bottom: 1rem; width: 100%; object-fit: cover; max-height: 320px; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-pack { align-items: center; }
  .hero-lead { margin: 0 auto 1.5rem; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .routine-step { grid-template-columns: 60px 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .three-col { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .comparison-table { font-size: .78rem; }
  .comparison-table th, .comparison-table td { padding: .5rem .6rem; }
  .hero-grid { gap: 2rem; padding-top: 3rem; padding-bottom: 3rem; }
  section { padding: 3.5rem 0; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uqtp{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}
.uqtp.is-visible,.cookie-banner--visible,.uqtp.show,.uqtp.active{transform:none !important}
.uqtp a{color:inherit;text-decoration:underline}
.uqtp button{cursor:pointer}
.uijk{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}
.uijk.is-visible,.cookie-modal--visible,.uijk.show,.uijk.active{display:flex !important}
.uvgy,.uijk>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.upfq .uubz,.upfq .uizc,.upfq .upgz,.upfq .user,.usvh .uubz,.usvh .uizc,.usvh .upgz,.usvh .user{background:#fff !important;color:#1a1a1a !important}
.uubz,.uizc{color:#1a1a1a !important}
.uubz label,.uizc label,.uubz p,.uizc p,.uubz .ufje,.uubz span,.uizc span,.ufgn,.uyko,.upgz .uizf,.upgz .uizf *{color:#1a1a1a !important}
.ufgn,.uyko{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uubz .utvk{color:#1a1a1a !important}
.uubz .utvk.is-sel{color:#fff !important}
.uvwi .uujz{display:none}
.uvwi .uujz.is-visible{display:block !important;color:#c0392b}
.uvwi .uqnn,.uvwi [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uvwi{color:#1a1a1a}
.upfq .uvwi,.usvh .uvwi{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uxpa{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uxpa img{width:100%;height:100%;object-fit:cover}
.udnn,.upor{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.udnn img,.upor img{width:100%;height:100%;object-fit:cover;display:block}
.udnn img{opacity:.28}
.upor img{opacity:.07}
*:has(> .udnn),*:has(> .upor){position:relative}
.umnf{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)}
.umnf .umca{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.umnf .utcb{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ugtj{margin:1.4rem auto;max-width:920px}
.ugtj img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uiaq{padding:3rem 0}
.uegw{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uegw img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.user{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uwue{display:flex;overflow:hidden;gap:0 !important}
.uxha{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.unhw{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}
.ubvv{left:.5rem}.uwjv{right:.5rem}
.upgz .uizf{display:none}.upgz .uizf.is-active{display:block}
.uubz .uwjl{display:block !important}
.uubz .ugek{display:flex;flex-wrap:wrap;gap:.5rem}
.uubz .utvk{cursor:pointer}
