:root {
  --vchw-clr-primary: #6c1cd1;
  --vchw-clr-primary-dark: #2f016a;
  --vchw-clr-primary-light: #b9a6ff;
  --vchw-clr-lavender: #e1d9ff;
  --vchw-clr-cream: #fff8cb;
  --vchw-clr-white: #ffffff;
  --vchw-clr-text: #1a1a2e;
  --vchw-clr-muted: #5a5a7a;
  --vchw-clr-border: #e0daf5;
  --vchw-clr-bg: #faf9ff;
  --vchw-clr-dark: #2f016a;
  --vchw-clr-accent: #6c1cd1;
  --vchw-radius-sm: 8px;
  --vchw-radius-md: 14px;
  --vchw-radius-lg: 22px;
  --vchw-shadow-sm: 0 2px 8px rgba(108,28,209,.10);
  --vchw-shadow-md: 0 6px 24px rgba(108,28,209,.15);
  --vchw-shadow-lg: 0 16px 48px rgba(108,28,209,.20);
  --vchw-font-head: 'Roboto', sans-serif;
  --vchw-font-body: 'Roboto', sans-serif;
  --vchw-max-w: 1160px;
  --vchw-transition: .22s ease;
}

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

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

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

img { display: block; max-width: 100%; height: auto; }
a { color: var(--vchw-clr-primary); text-decoration: none; transition: opacity var(--vchw-transition); }
a:hover { opacity: .78; }

.container {
  max-width: var(--vchw-max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.ugay { background: var(--vchw-clr-primary-dark); color: var(--vchw-clr-white); }
.uyjr { background: var(--vchw-clr-primary); color: var(--vchw-clr-white); }

.section__title { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; line-height: 1.25; margin-bottom: 1rem; }
.section__title--light { color: var(--vchw-clr-white); }
.section__sub { font-size: 1.05rem; color: var(--vchw-clr-muted); margin-bottom: 2.5rem; }
.section__sub--light { color: rgba(255,255,255,.8); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem 1.75rem;
  border-radius: var(--vchw-radius-md);
  font-family: var(--vchw-font-head);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--vchw-transition);
  text-decoration: none;
}
.btn--primary { background: var(--vchw-clr-primary); color: var(--vchw-clr-white); border-color: var(--vchw-clr-primary); }
.btn--primary:hover { background: var(--vchw-clr-primary-dark); border-color: var(--vchw-clr-primary-dark); opacity: 1; }
.btn--outline { background: transparent; color: var(--vchw-clr-primary); border-color: var(--vchw-clr-primary); }
.btn--outline:hover { background: var(--vchw-clr-primary); color: var(--vchw-clr-white); opacity: 1; }
.btn--ghost { background: rgba(255,255,255,.12); color: var(--vchw-clr-white); border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.22); opacity: 1; }
.btn--light { background: var(--vchw-clr-white); color: var(--vchw-clr-primary); border-color: var(--vchw-clr-white); }
.btn--light:hover { background: var(--vchw-clr-lavender); opacity: 1; }
.btn--sm { padding: .5rem 1.1rem; font-size: .85rem; }
.btn--lg { padding: .9rem 2.2rem; font-size: 1.05rem; }
.btn--full { width: 100%; }

.urev {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(47,1,106,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: .85rem;
  padding-bottom: .85rem;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--vchw-clr-white);
  flex-shrink: 0;
  text-decoration: none;
}
.site-header__logo:hover { opacity: .85; }
.site-header__logo img { width: 32px; height: 32px; }
.site-nav { margin-left: auto; }
.site-nav__list { display: flex; gap: .25rem; list-style: none; }
.site-nav__link {
  padding: .45rem .75rem;
  border-radius: var(--vchw-radius-sm);
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--vchw-transition);
  text-decoration: none;
}
.site-nav__link:hover,
.site-nav__link--active { color: var(--vchw-clr-white); background: rgba(255,255,255,.12); opacity: 1; }
.site-header__cta { margin-left: .5rem; flex-shrink: 0; }
.site-header__menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--vchw-clr-white);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--vchw-clr-primary-light); margin-bottom: .6rem; font-weight: 600; }
.hero__headline { font-size: clamp(2rem,4vw,3.1rem); font-weight: 700; line-height: 1.18; color: var(--vchw-clr-white); margin-bottom: 1.1rem; }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.82); margin-bottom: 2rem; max-width: 520px; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero__trust { font-size: .82rem; color: rgba(255,255,255,.65); }
.hero__pack { display: flex; justify-content: center; align-items: center; }
.hero__pack-img { width: 300px; height: 300px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,.45)); }

.breadcrumb { margin-bottom: 1.2rem; }
.breadcrumb__list { display: flex; gap: .5rem; list-style: none; font-size: .82rem; }
.breadcrumb__item { color: rgba(255,255,255,.55); }
.breadcrumb__item a { color: rgba(255,255,255,.75); text-decoration: none; }
.breadcrumb__item::after { content: '/'; margin-left: .5rem; }
.breadcrumb__item:last-child::after { display: none; }
.breadcrumb__item--active { color: rgba(255,255,255,.9); }

.editorial-intro { background: var(--vchw-clr-white); }
.editorial-intro__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }
.editorial-intro__bio {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.5rem;
  background: var(--vchw-clr-lavender);
  border-radius: var(--vchw-radius-md);
}
.editorial-intro__bio strong { display: block; font-weight: 700; color: var(--vchw-clr-primary-dark); }
.editorial-intro__bio span { font-size: .82rem; color: var(--vchw-clr-muted); }
.editorial-intro__avatar {
  width: 48px; height: 48px;
  background: var(--vchw-clr-primary);
  color: var(--vchw-clr-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.editorial-intro__body h2 { margin-bottom: .75rem; }
.editorial-intro__body p { margin-bottom: 1rem; color: var(--vchw-clr-muted); }
.editorial-intro__body p strong { color: var(--vchw-clr-text); }

.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.step-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--vchw-radius-lg);
  padding: 2rem 1.5rem;
}
.step-card__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vchw-clr-primary-light);
  line-height: 1;
  margin-bottom: .75rem;
}
.step-card__title { font-size: 1.05rem; font-weight: 600; color: var(--vchw-clr-white); margin-bottom: .6rem; }
.step-card p { font-size: .9rem; color: rgba(255,255,255,.78); }

.botanicals__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.botanicals__text h2 { margin-bottom: 1rem; }
.ingredient-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.ingredient-item { display: flex; gap: 1rem; align-items: flex-start; }
.ingredient-item__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.ingredient-item strong { display: block; font-weight: 600; color: var(--vchw-clr-primary-dark); margin-bottom: .2rem; }
.ingredient-item p { font-size: .9rem; color: var(--vchw-clr-muted); margin: 0; }
.botanicals__visual { position: relative; }
.botanicals__visual img:first-child { border-radius: var(--vchw-radius-lg); width: 100%; }
.botanicals__circle-diagram {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 130px;
  background: var(--vchw-clr-white);
  border-radius: 50%;
  padding: .5rem;
  box-shadow: var(--vchw-shadow-md);
}
.botanicals__circle-diagram img { width: 100%; height: auto; border-radius: 50%; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-top: 2.5rem; }
.testimonial-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--vchw-radius-lg);
  padding: 1.75rem;
}
.testimonial-card__stars { margin-bottom: .85rem; height: 20px; width: auto; }
.testimonial-card__text { font-size: .95rem; color: rgba(255,255,255,.85); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: .75rem; }
.testimonial-card__avatar {
  width: 38px; height: 38px;
  background: var(--vchw-clr-primary-light);
  color: var(--vchw-clr-primary-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-card__author strong { display: block; color: var(--vchw-clr-white); font-size: .9rem; }
.testimonial-card__author span { font-size: .78rem; color: rgba(255,255,255,.55); }
.testimonials__disclaimer { font-size: .8rem; color: rgba(255,255,255,.5); text-align: center; margin-top: 2rem; }

.lifestyle-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.lifestyle-section__image img { border-radius: var(--vchw-radius-lg); width: 100%; }
.lifestyle-section__text h2 { margin-bottom: 1rem; }
.lifestyle-section__text p { color: var(--vchw-clr-muted); margin-bottom: 1rem; }

.table-wrap { overflow-x: auto; border-radius: var(--vchw-radius-md); border: 1px solid var(--vchw-clr-border); }
.nutrients-table__table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.nutrients-table__table th {
  background: var(--vchw-clr-primary-dark);
  color: var(--vchw-clr-white);
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.nutrients-table__table td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--vchw-clr-border);
  color: var(--vchw-clr-text);
}
.nutrients-table__table tr:last-child td { border-bottom: none; }
.nutrients-table__table tr:nth-child(even) td { background: var(--vchw-clr-lavender); }
.nutrients-table__note { font-size: .82rem; color: var(--vchw-clr-muted); margin-top: .5rem; }

.faq-section__inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.unad { border: 1px solid var(--vchw-clr-border); border-radius: var(--vchw-radius-md); overflow: hidden; }
.faq-item__question {
  width: 100%;
  text-align: left;
  background: var(--vchw-clr-white);
  border: none;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--vchw-clr-primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--vchw-transition);
}
.faq-item__question::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--vchw-clr-primary); transition: transform var(--vchw-transition); }
.faq-item__question[aria-expanded="true"] { background: var(--vchw-clr-lavender); }
.faq-item__question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; }
.faq-item__answer.is-open { max-height: 600px; }
.faq-item__answer p { padding: 1rem 1.5rem 1.25rem; color: var(--vchw-clr-muted); font-size: .95rem; }
.faq-item__answer a { color: var(--vchw-clr-primary); }

.order-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.order-section__pack img { border-radius: var(--vchw-radius-md); width: 100%; margin-top: 1.5rem; }
.order-features { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .6rem; }
.order-features li { color: rgba(255,255,255,.88); font-size: .95rem; }
.order-price { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0 .5rem; }
.order-price__original { color: rgba(255,255,255,.5); text-decoration: line-through; font-size: 1.1rem; }
.order-price__current { color: var(--vchw-clr-cream); font-size: 2rem; font-weight: 700; }
.order-price__badge {
  background: var(--vchw-clr-cream);
  color: var(--vchw-clr-primary-dark);
  padding: .3rem .8rem;
  border-radius: var(--vchw-radius-sm);
  font-weight: 700;
  font-size: .85rem;
}
.order-price__tax { font-size: .78rem; color: rgba(255,255,255,.5); }

.order-form-wrap, .order-section__form-wrap {
  background: var(--vchw-clr-white);
  border-radius: var(--vchw-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--vchw-shadow-lg);
}
.order-form__title { font-size: 1.3rem; font-weight: 700; color: var(--vchw-clr-primary-dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; color: var(--vchw-clr-text); margin-bottom: .4rem; }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--vchw-clr-border);
  border-radius: var(--vchw-radius-sm);
  font-family: var(--vchw-font-body);
  font-size: .95rem;
  color: var(--vchw-clr-text);
  background: var(--vchw-clr-bg);
  transition: border-color var(--vchw-transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--vchw-clr-primary); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group--checkbox .checkbox-label { display: flex; gap: .75rem; align-items: flex-start; cursor: pointer; }
.form-group--checkbox input[type="checkbox"] { margin-top: .25rem; accent-color: var(--vchw-clr-primary); flex-shrink: 0; }
.form-group--checkbox span { font-size: .84rem; color: var(--vchw-clr-muted); }
.form-group--checkbox a { color: var(--vchw-clr-primary); }
.order-form__note { font-size: .8rem; color: var(--vchw-clr-muted); text-align: center; margin-top: .75rem; }

.callout-box {
  background: var(--vchw-clr-lavender);
  border-left: 4px solid var(--vchw-clr-primary);
  border-radius: 0 var(--vchw-radius-sm) var(--vchw-radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.callout-box p { color: var(--vchw-clr-primary-dark); font-size: .92rem; margin: 0; }

.cta-block { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

.content-prose { max-width: 780px; }
.content-prose h2 { font-size: 1.45rem; font-weight: 700; color: var(--vchw-clr-primary-dark); margin: 2.5rem 0 .85rem; }
.content-prose h3 { font-size: 1.1rem; font-weight: 600; color: var(--vchw-clr-primary); margin: 1.75rem 0 .6rem; }
.content-prose p { color: var(--vchw-clr-muted); margin-bottom: 1rem; }
.content-prose ul { margin: .75rem 0 1rem 1.5rem; color: var(--vchw-clr-muted); }
.content-prose ul li { margin-bottom: .4rem; }
.content-prose a { color: var(--vchw-clr-primary); }
.content-prose code { background: var(--vchw-clr-lavender); padding: .1em .4em; border-radius: 4px; font-size: .88em; }

.page-hero {
  padding: 3.5rem 0 3rem;
}
.page-hero__title { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; color: var(--vchw-clr-white); margin-bottom: .5rem; }
.page-hero__sub { color: rgba(255,255,255,.72); font-size: 1rem; }

.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--vchw-clr-lavender);
  border-radius: var(--vchw-radius-md);
}
.reviews-aggregate__score { font-size: 3.5rem; font-weight: 700; color: var(--vchw-clr-primary); line-height: 1; }
.reviews-aggregate img { height: 24px; width: auto; margin-bottom: .3rem; }
.reviews-disclaimer { font-size: .84rem; color: var(--vchw-clr-muted); margin-bottom: 2rem; font-style: italic; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card {
  border: 1px solid var(--vchw-clr-border);
  border-radius: var(--vchw-radius-md);
  padding: 1.5rem;
  background: var(--vchw-clr-white);
}
.review-card__stars { height: 20px; width: auto; margin-bottom: .75rem; }
.review-card__text { font-size: .92rem; color: var(--vchw-clr-muted); font-style: italic; margin-bottom: 1.25rem; }
.review-card__footer { display: flex; align-items: center; gap: .75rem; }
.review-card__avatar {
  width: 36px; height: 36px;
  background: var(--vchw-clr-primary);
  color: var(--vchw-clr-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
}
.review-card__footer strong { display: block; font-size: .9rem; color: var(--vchw-clr-text); }
.review-card__footer span { font-size: .78rem; color: var(--vchw-clr-muted); }

.ingredient-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-radius: var(--vchw-radius-md);
  margin-bottom: 1.25rem;
  border: 1px solid var(--vchw-clr-border);
  background: var(--vchw-clr-white);
}
.ingredient-block.uyjr { color: var(--vchw-clr-white); border-color: transparent; }
.ingredient-block__icon { font-size: 2rem; flex-shrink: 0; }
.ingredient-block__body h3 { font-size: 1.05rem; font-weight: 700; color: var(--vchw-clr-primary-dark); margin-bottom: .5rem; }
.ingredient-block.uyjr .ingredient-block__body h3 { color: var(--vchw-clr-white); }
.ingredient-block__body p { font-size: .9rem; color: var(--vchw-clr-muted); margin-bottom: .35rem; }
.ingredient-block.uyjr .ingredient-block__body p { color: rgba(255,255,255,.82); }

.ingredients-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.ingredients-intro__img { border-radius: var(--vchw-radius-lg); width: 100%; }
.ingredients-intro__text h2 { margin-bottom: 1rem; }
.ingredients-intro__text p { color: var(--vchw-clr-muted); }
.ingredient-deep-dive { margin-top: 2rem; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--vchw-clr-muted); margin-bottom: 1rem; }
.contact-details { list-style: none; margin-bottom: 2rem; }
.contact-details li { padding: .5rem 0; border-bottom: 1px solid var(--vchw-clr-border); font-size: .95rem; }
.contact-details li:last-child { border-bottom: none; }
.contact-details strong { color: var(--vchw-clr-text); }
.contact-map { border-radius: var(--vchw-radius-md); overflow: hidden; }
.contact-form-wrap h2 { margin-bottom: 1.5rem; }

.site-footer {
  background: var(--vchw-clr-primary-dark);
  color: rgba(255,255,255,.75);
  padding-top: 3rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--vchw-clr-white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .75rem;
  text-decoration: none;
}
.site-footer__logo:hover { opacity: .8; }
.site-footer__brand p { font-size: .85rem; margin-bottom: .35rem; }
.site-footer__brand a { color: var(--vchw-clr-primary-light); }
.site-footer__nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.site-footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.site-footer__nav a { color: rgba(255,255,255,.7); font-size: .88rem; text-decoration: none; }
.site-footer__nav a:hover { color: var(--vchw-clr-white); }
.site-footer__disclaimer {
  background: rgba(0,0,0,.25);
  padding: 1.25rem 0;
}
.site-footer__disclaimer p {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: .4rem;
}
.site-footer__disclaimer a { color: rgba(255,255,255,.6); }

.uaut {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--vchw-clr-primary-dark);
  border-top: 3px solid var(--vchw-clr-primary);
  transform: translateY(100%);
  transition: transform .35s ease;
}
.uaut.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--vchw-max-w);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__inner p { color: rgba(255,255,255,.82); font-size: .88rem; flex: 1 1 300px; }
.cookie-banner__inner a { color: var(--vchw-clr-primary-light); }
.cookie-banner__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cookie-banner__link { color: rgba(255,255,255,.6); font-size: .82rem; align-self: center; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-header__cta { display: none; }
  .site-header__menu-toggle { display: block; }
  .site-header__inner { flex-wrap: wrap; }
  .site-nav.is-open {
    display: block;
    width: 100%;
    order: 3;
    padding-bottom: .75rem;
  }
  .site-nav.is-open .site-nav__list { flex-direction: column; gap: .1rem; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__pack { order: -1; }
  .hero__ctas { justify-content: center; }
  .editorial-intro__inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .botanicals__inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .lifestyle-section__inner { grid-template-columns: 1fr; }
  .order-section__inner { grid-template-columns: 1fr; }
  .ingredients-intro { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__nav { gap: 1.5rem; }
  .botanicals__circle-diagram { right: .5rem; bottom: .5rem; width: 90px; }
}

@media (max-width: 600px) {
  .section { padding: 3rem 0; }
  .hero { min-height: unset; }
  .hero__pack-img { width: 200px; height: 200px; }
  .hero__ctas { flex-direction: column; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uaut{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}
.uaut.is-visible,.cookie-banner--visible,.uaut.show,.uaut.active{transform:none !important}
.uaut a{color:inherit;text-decoration:underline}
.uaut button{cursor:pointer}
.uyto{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}
.uyto.is-visible,.cookie-modal--visible,.uyto.show,.uyto.active{display:flex !important}
.ufcu,.uyto>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.ugay .updt,.ugay .uxtx,.ugay .uzpd,.ugay .usdp,.uyjr .updt,.uyjr .uxtx,.uyjr .uzpd,.uyjr .usdp{background:#fff !important;color:#1a1a1a !important}
.updt,.uxtx{color:#1a1a1a !important}
.updt label,.uxtx label,.updt p,.uxtx p,.updt .uuje,.updt span,.uxtx span,.utfk,.uioq,.uzpd .ulur,.uzpd .ulur *{color:#1a1a1a !important}
.utfk,.uioq{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.updt .ungv{color:#1a1a1a !important}
.updt .ungv.is-sel{color:#fff !important}
.ukjd .uspd{display:none}
.ukjd .uspd.is-visible{display:block !important;color:#c0392b}
.ukjd .uruz,.ukjd [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ukjd{color:#1a1a1a}
.ugay .ukjd,.uyjr .ukjd{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uoxt{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uoxt img{width:100%;height:100%;object-fit:cover}
.uzxd,.upoh{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uzxd img,.upoh img{width:100%;height:100%;object-fit:cover;display:block}
.uzxd img{opacity:.28}
.upoh img{opacity:.07}
*:has(> .uzxd),*:has(> .upoh){position:relative}
.ugkk{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)}
.ugkk .uhoj{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ugkk .umxv{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uqeg{margin:1.4rem auto;max-width:920px}
.uqeg img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ufnk{padding:3rem 0}
.uces{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uces img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.usdp{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ugrw{display:flex;overflow:hidden;gap:0 !important}
.uegs{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uxka{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}
.uicf{left:.5rem}.upcd{right:.5rem}
.uzpd .ulur{display:none}.uzpd .ulur.is-active{display:block}
.updt .uhiy{display:block !important}
.updt .uaqn{display:flex;flex-wrap:wrap;gap:.5rem}
.updt .ungv{cursor:pointer}
