/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@500&family=Lora:ital,wght@0,400;0,700;1,400&family=Open+Sans:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


:root {
  --colorPrimary: #f48a1f;
  --colorPrimary100: #fef1d6;
  --colorSecondary: #23c952;
  --colorSecondary50: #f0fdf3;
  --colorSecondary100: #dcfce4;
  --colorSuccess: #16a34a;
  --colorError: #dc2626;
  --colorTextPrimary: #3d3d3d;
  --colorTextMuted: #888888;
  --colorTextInvert: #ffffff;
  --colorTextButton: #158034;
  --colorBgPage: #ffffff;
  --colorBgHeader: #f48a1f;
  --colorBgSurface: #fef1d6;
  --colorBgSurfaceAlt: #f6f6f6;
  --colorBgCard: #f6f6f6;
  --colorBgFooter: #e7e7e7;
  --colorBgBottomStrip: #dc2626;
  --colorBorderSubtle: #d1d1d1;
  --colorBorderBrand: #fac677;
  --colorButtonBg: #dcfce4;
  --fontBrand: "Lato", sans-serif;
  --fontPrimary: "Open Sans", sans-serif;
  --fontSecondary: "Lora", serif;
  --fontSizeLogo: 28px;
  --fontSizeH1: 42px;
  --fontSizeH3: 32px;
  --fontSizeH4: 24px;
  --fontSizeBodyXl: 20px;
  --fontSizeBodyLg: 18px;
  --fontSizeBodyMd: 16px;
  --fontSizeBodySm: 14px;
  --fontSizeBodyXs: 12px;
  --fontSizeButton: 20px;
  --fontSizeDisplay: 68px;
  --colorNeutral100: #e7e7e7;
  --sectionPaddingYXl: 64px;
  --containerWidth: 1200px;
  --sectionPaddingX: 32px;
  --sectionPaddingY: 48px;
  --sectionPaddingYSm: 24px;
  --radiusMd: 16px;
  --radiusFull: 999px;
  --gapMd: 24px;
  --gapSm: 16px;
  --gapXs: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  font-family: var(--fontPrimary);
  color: var(--colorTextPrimary);
  background-color: var(--colorBgPage);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fontSecondary);
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  color: var(--colorTextPrimary);
}

h1 {
  font-size: var(--fontSizeH1);
  line-height: 1.2;
}

h2,
h3 {
  font-size: var(--fontSizeH3);
  line-height: 1.25;
}

h4 {
  font-size: var(--fontSizeH4);
  line-height: 1.3;
}

p {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  transition: all 0.2s ease-in-out;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  height: auto;
}

a:hover,
button:hover {
  filter: brightness(90%);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
  font-size: 12px;
  line-height: 1.5;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.clause {
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.clause p {
  font-size: 14px;
}
.clause a {
  color: #7f919e;
  text-decoration: underline;
}
.clause a:hover {
  color: #7f919e;
}

.terms {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.terms p {
  font-size: 14px;
}
.terms label {
  cursor: pointer;
}
.terms input[type=checkbox] {
  margin-top: 2px;
  margin-left: 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.terms a {
  color: #7f919e;
  text-decoration: underline;
}

.terms-error {
  color: #e70000;
  font-size: 14px;
  margin: 8px 0;
  display: none;
}
.terms-error.show {
  display: block;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.disclaimer p {
  font-size: 14px;
}

.container {
  max-width: var(--containerWidth);
  margin: 0 auto;
  padding: 0 var(--sectionPaddingX);
  width: 100%;
}

.flex {
  display: flex;
  flex-direction: column;
}

.flex-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-red {
  color: var(--colorError);
}

.text-green {
  color: var(--colorSuccess);
}

.text-bold {
  font-weight: 700;
}

.product-price-old {
  color: var(--colorError);
  text-decoration: line-through;
}

.btnPrimary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: var(--sectionPaddingYSm) var(--sectionPaddingX);
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeButton);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  color: var(--colorTextButton);
  background-color: var(--colorButtonBg);
  border: 1px solid var(--colorSuccess);
  border-radius: var(--radiusMd);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
.btnPrimary:hover {
  filter: brightness(90%);
}

.header {
  width: 100%;
  background-color: var(--colorBgHeader);
  padding: var(--sectionPaddingYSm) var(--sectionPaddingX);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gapMd);
}
.header__logo {
  margin: 0;
  font-family: var(--fontBrand);
  font-size: var(--fontSizeLogo);
  font-weight: 500;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--colorTextInvert);
  transition: all 0.2s ease-in-out;
}
.header__logo:hover {
  filter: brightness(90%);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--gapSm);
}
.header__navLink {
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodyMd);
  color: var(--colorTextInvert);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.header__navLink:hover {
  filter: brightness(90%);
}
.header__navLink--active {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.header__navSeparator {
  display: block;
  width: 1px;
  height: 16px;
  background-color: var(--colorTextInvert);
}

.main {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.main--subPage {
  flex: 1 0 auto;
  width: 100%;
}
.main ul {
  display: flex;
  flex-direction: column;
  gap: var(--gapSm);
  list-style: none;
}
.main ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--fontSizeBodyMd);
  line-height: 1.5;
}
.main ul li::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  margin-top: 8px;
  border-radius: var(--radiusFull);
  background-color: var(--colorTextPrimary);
}

.productSection {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.productSection__container {
  display: flex;
  align-items: flex-start;
  gap: var(--gapMd);
}
.productSection__media {
  flex: 0 0 45%;
}
.productSection__image {
  width: 100%;
  height: auto;
  max-width: 520px;
}
.productSection__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gapSm);
}
.productSection__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 16px;
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodySm);
  font-weight: 700;
  color: var(--colorTextInvert);
  background-color: var(--colorSuccess);
  border-radius: var(--radiusFull);
}
.productSection__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH1);
  line-height: 1.2;
}
.productSection__category {
  font-size: var(--fontSizeBodyMd);
  color: var(--colorTextMuted);
}
.productSection__rating {
  display: flex;
  align-items: center;
  gap: var(--gapXs);
}
.productSection__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.productSection__stars img {
  width: 20px;
  height: auto;
  max-width: 20px;
}
.productSection__ratingValue {
  font-size: var(--fontSizeBodySm);
  color: var(--colorTextMuted);
}
.productSection__priceRow {
  font-size: var(--fontSizeBodyMd);
}
.productSection__promoRow {
  font-size: var(--fontSizeBodyXl);
  font-weight: 700;
}
.productSection__priceHint {
  color: var(--colorSuccess);
}
.productSection__cta {
  margin-top: var(--gapXs);
}
.productSection__description {
  margin-top: var(--gapSm);
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}

.tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tabs__list {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}
.tabs__item {
  padding: 9px 10px 8px;
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodyLg);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  background-color: var(--colorBgPage);
  border: 1px solid var(--colorBorderSubtle);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.tabs__item:hover {
  filter: brightness(90%);
}
.tabs__item--active {
  padding: 11px 10px;
  background-color: var(--colorBgSurfaceAlt);
  border-color: var(--colorPrimary);
  border-bottom: none;
}
.tabs__item--active:hover {
  filter: none;
}
.tabs__content {
  width: 100%;
}

.productIntro {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgSurfaceAlt);
}
.productIntro__container {
  display: flex;
  align-items: center;
  gap: var(--gapMd);
}
.productIntro__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.productIntro__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.productIntro__body {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}
.productIntro__media {
  flex: 0 0 42%;
}
.productIntro__image {
  width: 100%;
  height: auto;
  max-width: 480px;
}

.howItWorks {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.howItWorks__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.howItWorks__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.howItWorks__intro {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}
.howItWorks__card {
  display: flex;
  align-items: flex-start;
  gap: var(--gapMd);
  padding: var(--gapMd);
  border-radius: 16px;
  border: 1px solid #D1D1D1;
  background-color: #F6F6F6;
}
.howItWorks__cardContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gapSm);
}
.howItWorks__cardContent p {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}
.howItWorks__cardTitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
}
.howItWorks__cardMedia {
  flex: 0 0 38%;
}
.howItWorks__image {
  width: 100%;
  height: auto;
  max-width: 420px;
}
.howItWorks__effects {
  display: flex;
  flex-direction: column;
  gap: var(--gapSm);
}
.howItWorks__effectsTitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
}

.ingredientsTable {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgSurfaceAlt);
}
.ingredientsTable__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.ingredientsTable__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.ingredientsTable__intro {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}
.ingredientsTable__subtitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
}
.ingredientsTable__table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radiusMd);
}
.ingredientsTable__table thead {
  background-color: var(--colorPrimary);
}
.ingredientsTable__table thead th {
  padding: var(--gapSm) var(--gapMd);
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodyLg);
  font-weight: 700;
  text-align: left;
  color: var(--colorTextInvert);
}
.ingredientsTable__table tbody tr {
  background-color: var(--colorBgPage);
  border-bottom: 1px solid var(--colorBorderSubtle);
}
.ingredientsTable__table tbody tr:last-child {
  border-bottom: none;
}
.ingredientsTable__table tbody td {
  padding: var(--gapSm) var(--gapMd);
  font-size: var(--fontSizeBodyMd);
  line-height: 1.5;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .ingredientsTable__table thead {
    display: none;
  }
  .ingredientsTable__table tbody tr {
    display: flex;
    flex-direction: column;
    gap: var(--gapXs);
    padding: var(--gapSm) 0;
  }
  .ingredientsTable__table tbody td {
    display: block;
    width: 100%;
    padding: var(--gapXs) var(--gapMd);
  }
}
.ingredientsTable__icon {
  display: inline-block;
  width: 48px;
  height: auto;
  max-width: 48px;
  margin-right: var(--gapSm);
  vertical-align: middle;
}

.naturalnessCta {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.naturalnessCta__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gapMd);
  text-align: center;
}
.naturalnessCta__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
  width: 100%;
}
.naturalnessCta__text {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
  width: 100%;
}
.naturalnessCta__cta {
  max-width: 640px;
}

.howUse {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.howUse__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.howUse__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.howUse__intro, .howUse__outro {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}

.testimonials {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.testimonials__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.testimonials__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.testimonials__intro, .testimonials__text, .testimonials__outro {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}
.testimonials__subtitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
}
.testimonials__row {
  display: flex;
  gap: var(--gapMd);
  max-width: 920px;
}
.testimonials__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gapSm);
  padding: var(--gapMd);
  background-color: var(--colorBgCard);
  border-radius: var(--radiusMd);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.testimonials__card--full {
  width: 100%;
}
.testimonials__user {
  display: flex;
  align-items: center;
  gap: var(--gapSm);
}
.testimonials__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodyLg);
  font-weight: 700;
  color: var(--colorTextInvert);
  background-color: var(--colorSuccess);
  border-radius: var(--radiusFull);
}
.testimonials__name {
  font-size: var(--fontSizeBodyMd);
  font-weight: 700;
}
.testimonials__quote {
  margin: 0;
  font-size: var(--fontSizeBodyMd);
  font-style: italic;
  line-height: 1.6;
}

.interactionsFaq {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.interactionsFaq__container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: var(--gapMd);
}
@media (min-width: 768px) {
  .interactionsFaq__container {
    grid-template-columns: 1fr 1fr;
  }
}
.interactionsFaq__text {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.interactionsFaq__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.interactionsFaq__intro {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}
.interactionsFaq__media {
  overflow: hidden;
  border-radius: var(--radiusMd);
}
.interactionsFaq__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.expertOpinions {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.expertOpinions__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.expertOpinions__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.expertOpinions__intro {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}
.expertOpinions__callout {
  display: flex;
  flex-direction: column;
  gap: var(--gapSm);
  padding: var(--gapMd);
  border-left: 8px solid var(--colorPrimary);
  background-color: var(--colorBgSurfaceAlt);
}
.expertOpinions__callout p {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}
.expertOpinions__calloutTitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
}

.expertSafety {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.expertSafety__container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--gapMd);
}
@media (min-width: 768px) {
  .expertSafety__container {
    grid-template-columns: 1fr 1fr;
  }
}
.expertSafety__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertSafety__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 424px;
}
.expertSafety__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--gapMd);
}
.expertSafety__text p {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.5;
}
.expertSafety__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
  font-weight: 700;
  line-height: 1.3;
}

.purchaseInfo {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgSurface);
}
.purchaseInfo__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.purchaseInfo__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
  font-weight: 700;
  line-height: 1.25;
}
.purchaseInfo__subtitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
  font-weight: 700;
  line-height: 1.3;
}
.purchaseInfo__text {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.5;
}

.others {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgSurfaceAlt);
}
.others__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.others__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.others__subtitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
}
.others__text {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}

.safetyWarnings {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.safetyWarnings__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.safetyWarnings__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.safetyWarnings__subtitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
}
.safetyWarnings__text {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}
.safetyWarnings__quote {
  margin: 0;
  padding: 16px 0 16px var(--gapMd);
  border-left: 8px solid var(--colorPrimary);
  background-color: transparent;
}
.safetyWarnings__quote p {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeBodyLg);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}
.safetyWarnings__author {
  display: block;
  margin-top: 10px;
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodyXl);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.isItWorks {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.isItWorks__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.isItWorks__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.isItWorks__subtitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
}
.isItWorks__text {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}
.isItWorks__quote {
  margin: 0;
  padding: var(--gapMd);
  border-left: 8px solid var(--colorPrimary);
  background-color: var(--colorBgSurfaceAlt);
}
.isItWorks__quote p {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeBodyLg);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}
.isItWorks__author {
  display: block;
  margin-top: var(--gapSm);
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodyXl);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.userDiary {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.userDiary__container {
  display: flex;
  flex-direction: column;
}
.userDiary__card {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
  padding: var(--gapMd);
  background-color: var(--colorBgSurface);
  border-radius: var(--radiusMd);
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.15);
}
.userDiary__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
  font-weight: 700;
  line-height: 1.25;
}
.userDiary__subtitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
  font-weight: 700;
  line-height: 1.3;
}
.userDiary__text {
  font-size: var(--fontSizeBodyMd);
  font-weight: 400;
  line-height: 1.5;
}
.userDiary__quote {
  margin: 0;
  padding: 16px 0 16px var(--gapMd);
  border-left: 8px solid var(--colorPrimary);
  background-color: transparent;
}
.userDiary__quote p {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeBodyLg);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}
.userDiary__author {
  display: block;
  margin-top: 10px;
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodyXl);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.userDiary__signature {
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodyXl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  text-align: right;
}

.contraindications {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.contraindications__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.contraindications__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.contraindications__intro {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}

.payAttention {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.payAttention__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.payAttention__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
}
.payAttention__subtitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH4);
}
.payAttention__intro, .payAttention__text {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.6;
}
.payAttention__cards {
  display: flex;
  gap: var(--gapMd);
}
.payAttention__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gapSm);
  padding: var(--gapMd);
  text-align: center;
  background-color: var(--colorBgCard);
  border-radius: var(--radiusMd);
}
.payAttention__icon {
  width: 64px;
  height: auto;
  max-width: 64px;
}
.payAttention__cardTitle {
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodyMd);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.payAttention__cardText {
  font-size: var(--fontSizeBodyMd);
  line-height: 1.5;
}

.prosConsSummary {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgPage);
}
.prosConsSummary__container {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
}
.prosConsSummary__title {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: var(--colorTextPrimary);
}
.prosConsSummary__pros, .prosConsSummary__cons {
  display: flex;
  flex-direction: column;
  gap: var(--gapMd);
  padding: var(--gapMd);
  border: 1px solid var(--colorBorderSubtle);
  border-radius: var(--radiusMd);
}
.prosConsSummary__pros {
  background-color: var(--colorSecondary50);
}
.prosConsSummary__cons {
  background-color: #fff3f3;
}
.prosConsSummary__prosTitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
  font-weight: 700;
  line-height: 1.25;
  color: var(--colorSuccess);
}
.prosConsSummary__consTitle {
  font-family: var(--fontSecondary);
  font-size: var(--fontSizeH3);
  font-weight: 700;
  line-height: 1.25;
  color: var(--colorError);
}
.prosConsSummary__text {
  font-size: var(--fontSizeBodyMd);
  font-weight: 400;
  line-height: 1.5;
}
.prosConsSummary__outro {
  font-size: var(--fontSizeBodyMd);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.prosConsSummary__cta {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.bottomStrip {
  position: sticky;
  bottom: 0;
  z-index: 50;
  width: 100%;
  padding: var(--sectionPaddingYSm) var(--sectionPaddingX);
  background-color: var(--colorBgBottomStrip);
}
.bottomStrip__container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottomStrip__text {
  margin: 0;
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodyLg);
  font-weight: 700;
  text-align: center;
  color: var(--colorTextInvert);
}

.subPage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 760px;
  padding: var(--sectionPaddingYXl) 0;
  background-color: var(--colorBgPage);
}
.subPage__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gapMd);
}
.subPage__titleWrap {
  flex: 0 1 384px;
  max-width: 390px;
  min-width: 280px;
}
.subPage__title {
  margin: 0;
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeDisplay);
  font-weight: 700;
  line-height: 1.1;
  color: var(--colorNeutral100);
}
.subPage__content {
  display: flex;
  flex: 1 1 480px;
  flex-direction: column;
  gap: var(--gapMd);
  min-width: 280px;
}
.subPage__content p {
  margin: 0;
  font-family: var(--fontPrimary);
  font-size: var(--fontSizeBodyMd);
  line-height: 1.5;
  color: var(--colorTextPrimary);
}
.subPage__email {
  color: var(--colorTextPrimary);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.subPage__email:hover {
  color: var(--colorPrimary);
  filter: none;
}

.footer {
  width: 100%;
  padding: var(--sectionPaddingY) 0;
  background-color: var(--colorBgFooter);
  border-top: 1px solid var(--colorPrimary);
}
.footer .attachments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--gapSm);
}
.footer .attachments a {
  font-size: var(--fontSizeBodyXs);
  color: var(--colorTextMuted);
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}
.footer .attachments a:hover {
  filter: brightness(90%);
}
.footer .text-gray {
  margin-top: var(--gapSm);
  font-size: var(--fontSizeBodyXs);
  line-height: 1.5;
  text-align: center;
  color: var(--colorTextMuted);
}
.footer .font-italic {
  font-style: italic;
}/*# sourceMappingURL=styles.css.map */