@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --font-primary: "DM Sans", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --color-primary-100: #e7f8ef;
  --color-primary-200: #a8f0c0;
  --color-primary-300: #6ddd9c;
  --color-primary-500: #27ae60;
  --color-primary-700: #1a7a3c;
  --color-primary-900: #0c3c3c;
  --color-secondary-300: #f9c776;
  --color-secondary-500: #f39c12;
  --color-text-primary: #3d3d3d;
  --color-text-muted: #888888;
  --color-text-invert: #ffffff;
  --color-text-success: #27ae60;
  --color-text-error: #c0392b;
  --color-text-price: #1a7a3c;
  --color-bg-page: #ffffff;
  --color-bg-header: #002331;
  --color-bg-footer: #262626;
  --color-bg-card: #f4f7fd;
  --color-bg-card-dark: #0c3c3c;
  --color-bg-offer: #fce0b3;
  --color-bg-surface-warm: #fef3e0;
  --color-bg-surface-alt: #e7e7e7;
  --color-bg-badge-discount: #e67e22;
  --color-bg-badge-discount-percent: #c0392b;
  --color-bg-progress-track: #d1d1d1;
  --color-border-primary-subtle: #e7e7e7;
  --color-border-primary-strong: #b0b0b0;
  --color-border-secondary-strong: #e67e22;
  --container-width: 1200px;
  --color-bg-card-dark-2: #114e44;
  --color-warning-dark: #9c1608;
  --color-neutral-300: #b0b0b0;
  --color-neutral-700: #4f4f4f;
  --colors-button-secondary-bg: #27ae60;
  --colors-button-secondary-bg-hover: #6ddd9c;
  --colors-button-primary-bg-hover: #27ae60;
}

.h2 {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-text-primary);
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  .h2 {
    font-size: 32px;
  }
}

.h3 {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: var(--color-text-primary);
  width: 100%;
}
@media (min-width: 769px) {
  .h3 {
    font-size: 28px;
  }
}

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

.btn-cta {
  display: flex;
  justify-content: center;
  width: 100%;
}
.btn-cta__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 16px;
  border: none;
  border-radius: 999px;
  background-image: linear-gradient(135.63deg, var(--color-primary-700) 34.1%, var(--color-primary-500) 65.9%);
  cursor: pointer;
  text-align: center;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .btn-cta__button {
    padding: 16px 32px;
  }
}
.btn-cta__button:hover {
  box-shadow: 0 4px 16px 0 var(--colors-button-primary-bg-hover);
  transform: translateY(-10px);
}
.btn-cta__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  color: var(--color-text-invert);
}
@media (min-width: 769px) {
  .btn-cta__title {
    font-size: 26px;
  }
}
.btn-cta__subtitle {
  font-weight: 600;
  font-size: 13px;
  line-height: normal;
  color: var(--color-primary-100);
}
@media (min-width: 769px) {
  .btn-cta__subtitle {
    font-size: 16px;
  }
}

.availability {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 384px;
}
.availability__labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.availability__label {
  color: var(--color-text-primary);
}
.availability__count {
  color: var(--color-text-error);
}
.availability__bar {
  position: relative;
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background-color: var(--color-bg-progress-track);
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.availability__fill {
  height: 100%;
  width: 84.375%;
  background-image: linear-gradient(to right, var(--color-secondary-500) 75%, var(--color-primary-500) 100%);
}
.availability__note {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text-error);
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-bg-page);
}

.site-header {
  width: 100%;
  background-color: var(--color-bg-header);
  padding: 16px 32px;
}
.site-header__container {
  display: flex;
  align-items: center;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
}
.site-header__tagline {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}
@media (min-width: 769px) {
  .site-header__tagline {
    gap: 10px;
  }
}
.site-header__label {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text-invert);
  width: 100%;
}
@media (min-width: 769px) {
  .site-header__label {
    font-size: 22px;
    line-height: 1.5;
    width: auto;
  }
}
.site-header__review {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 10px;
  width: 100%;
}
@media (min-width: 769px) {
  .site-header__review {
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
  }
}
.site-header__rating {
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text-invert);
  white-space: nowrap;
}
@media (min-width: 769px) {
  .site-header__rating {
    font-size: 16px;
    line-height: 1.5;
  }
}
.site-header__stars {
  height: 16px;
  width: auto;
}
.site-header__payment {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}
@media (min-width: 769px) {
  .site-header__payment {
    flex: none;
    align-items: center;
    width: 260px;
    gap: 10px;
  }
}
.site-header__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .site-header__btn-wrap {
    height: 61px;
  }
}
.site-header__button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background-color: var(--color-primary-500);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  color: var(--color-text-invert);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  white-space: nowrap;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .site-header__button {
    padding: 16px 32px;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.1;
  }
}
.site-header__button:hover {
  transform: scale(1.05);
  background-color: var(--colors-button-secondary-bg-hover);
}
.site-header__cart-icon {
  width: 23px;
  height: 24px;
}
.site-header__views {
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text-invert);
  white-space: nowrap;
}
@media (min-width: 769px) {
  .site-header__views {
    font-size: 20px;
    line-height: 1.5;
  }
}

.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 996px;
  width: 100%;
  padding: 32px 0;
  text-align: center;
  color: #000000;
}
.hero__title {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 1.2;
  width: 100%;
}
@media (min-width: 769px) {
  .hero__title {
    font-size: 42px;
  }
}
.hero__lead {
  font-family: var(--font-primary);
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  width: 100%;
}
@media (min-width: 769px) {
  .hero__lead {
    font-size: 24px;
  }
}

.benefits {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.benefits__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 996px;
  width: 100%;
  padding-bottom: 32px;
}
.benefits__image {
  flex: 1 0 0;
  min-width: 280px;
  border-radius: 16px;
  overflow: hidden;
}
.benefits__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1200/1200;
  -o-object-fit: cover;
     object-fit: cover;
}
.benefits__list {
  flex: 1 0 0;
  min-width: 280px;
  list-style: none;
}
.benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-primary-subtle);
}
.benefits__item--last {
  border-bottom: none;
}
.benefits__item p {
  flex: 1 0 0;
  min-width: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.benefits__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 5px;
}

.offer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-bg-surface-warm);
  border-top: 8px solid var(--color-border-secondary-strong);
  border-bottom: 8px solid var(--color-border-secondary-strong);
}
.offer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 792px;
  width: 100%;
  padding: 0 16px 16px;
}
@media (min-width: 769px) {
  .offer__container {
    padding: 0 32px 32px;
  }
}
.offer__banner {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-bg-badge-discount);
  padding: 16px 32px;
  border-radius: 0 0 16px 16px;
  color: var(--color-text-invert);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.offer__banner-icon {
  width: 16px;
  height: 16px;
}
.offer__catalog-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-primary);
}
.offer__price-before {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.offer__old-price {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
.offer__discount-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 999px;
  background-color: var(--color-bg-badge-discount-percent);
  color: var(--color-text-invert);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}
.offer__price-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 2px solid var(--color-primary-300);
  border-radius: 16px;
  background-image: linear-gradient(112.73deg, var(--color-primary-700) 34.1%, var(--color-primary-500) 65.9%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.offer__price-label {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-primary-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer__price-label-icon {
  width: 16px;
  height: 16px;
}
.offer__price {
  font-weight: 700;
  color: var(--color-primary-100);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.offer__price-main {
  font-size: 28px;
  line-height: 1.1;
}
@media (min-width: 769px) {
  .offer__price-main {
    font-size: 56px;
  }
}
.offer__price-decimal {
  font-size: 18px;
  line-height: 1.1;
}
@media (min-width: 769px) {
  .offer__price-decimal {
    font-size: 34px;
  }
}
.offer__price-note {
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-primary-100);
}
.offer__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
  list-style: none;
}
.offer__list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
.offer__list-item p {
  flex: 1 0 0;
  min-width: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.offer__list-icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}
.offer__stock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  background-color: var(--color-bg-offer);
  border: 1px solid var(--color-text-error);
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-price);
  text-align: center;
  width: 100%;
  max-width: 430px;
}
@media (min-width: 769px) {
  .offer__stock {
    padding: 16px 32px;
  }
}
.offer__stock-icon {
  width: 16px;
  height: 16px;
}
.offer__progress-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 430px;
  width: 100%;
}
.offer__progress-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.offer__progress-label--sold {
  color: var(--color-text-error);
}
.offer__progress-label--available {
  color: var(--color-text-success);
}
.offer__progress-bar {
  position: relative;
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background-color: var(--color-bg-progress-track);
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.offer__progress-fill {
  height: 100%;
  width: 84.4%;
  background-image: linear-gradient(to right, var(--color-text-error) 75%, var(--color-text-success) 100%);
}
.offer__progress-note {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text-muted);
}
.offer__progress-note--danger {
  color: var(--color-text-error);
}
.offer__urgency {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  background-color: var(--color-primary-500);
}
@media (min-width: 769px) {
  .offer__urgency {
    padding: 0 32px;
  }
}
.offer__urgency-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 792px;
  width: 100%;
  padding: 16px 0;
}
.offer__urgency-container p {
  min-width: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-invert);
  text-align: center;
}
.offer__dot {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.problem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}
@media (min-width: 769px) {
  .problem {
    padding: 0 32px;
  }
}
.problem__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 996px;
  width: 100%;
  padding: 32px 0;
}
.problem__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.problem__media {
  flex: 1 0 0;
  min-width: 280px;
  border-radius: 16px;
  overflow: hidden;
}
.problem__media img,
.problem__media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.problem__media--bonus img {
  aspect-ratio: 454/392;
}
.problem__media--tall {
  align-self: stretch;
  display: flex;
}
.problem__media--tall img {
  height: 100%;
  aspect-ratio: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.problem__text {
  flex: 1 0 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--color-text-primary);
}
.problem__text p {
  font-size: 16px;
  line-height: 1.5;
}
.problem__text--invert {
  gap: 16px;
}
.problem__text--invert p {
  color: var(--color-text-invert);
}
.problem__quote {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: var(--color-bg-card);
  border-left: 8px solid var(--color-border-secondary-strong);
  border-radius: 0 16px 16px 0;
  margin: 0;
}
@media (min-width: 769px) {
  .problem__quote {
    padding: 24px 32px;
  }
}
.problem__quote p {
  width: 100%;
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-primary);
}
.problem__quote cite {
  width: 100%;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
}
.problem__bonus {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 32px;
  border-radius: 16px;
  background-image: linear-gradient(114.78deg, var(--color-bg-card-dark) 0.13%, var(--color-bg-card-dark-2) 99.87%);
}
.problem__bonus-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.problem__box-title {
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-text-invert);
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 769px) {
  .problem__box-title {
    font-size: 22px;
  }
}
.problem__box-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.problem__warning {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background-image: linear-gradient(134.5deg, var(--color-warning-dark) 0.13%, var(--color-text-error) 99.87%);
}
@media (min-width: 769px) {
  .problem__warning {
    padding: 24px 32px;
  }
}
.problem__warning-text {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-invert);
}

.costc {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
}
.costc__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 792px;
  width: 100%;
  padding: 16px;
  background-color: var(--color-bg-card);
  border-radius: 16px;
  color: var(--color-text-primary);
}
@media (min-width: 769px) {
  .costc__container {
    padding: 32px;
  }
}
.costc__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.costc__content p {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
}
.costc__content em {
  font-family: var(--font-secondary);
  font-style: italic;
  line-height: 1.7;
}

.fear {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
}
@media (min-width: 769px) {
  .fear {
    padding: 0 32px 32px;
  }
}
.fear__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 996px;
  width: 100%;
  border-radius: 16px;
}
.fear__title {
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: var(--color-text-primary);
  text-align: center;
}
@media (min-width: 769px) {
  .fear__title {
    font-size: 42px;
  }
}
.fear__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
.fear__card {
  flex: 1 0 0;
  min-width: 230px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--color-bg-card-dark);
}
.fear__card-image {
  width: 100%;
  background-color: var(--color-bg-card);
}
.fear__card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.fear__card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 16px 8px;
  color: var(--color-text-invert);
}
.fear__card-title {
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}
.fear__card-text {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.cta-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
}
@media (min-width: 769px) {
  .cta-wrap {
    padding: 32px;
  }
}
.cta-wrap__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 996px;
  width: 100%;
}
.cta-wrap__warning {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-error);
}

.incl {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
}
.incl__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 996px;
  width: 100%;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .incl__container {
    padding: 0;
  }
}
.incl__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.incl__image {
  flex: 1 0 0;
  min-width: 280px;
  border-radius: 16px;
  overflow: hidden;
}
.incl__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1200/1200;
  -o-object-fit: cover;
     object-fit: cover;
}
.incl__content {
  flex: 1 0 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.incl__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  list-style: none;
}
.incl__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  width: 100%;
  border-bottom: 1px solid var(--color-border-primary-subtle);
}
.incl__item--last {
  border-bottom: none;
}
.incl__item p {
  flex: 1 0 0;
  min-width: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.incl__icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}
.incl__price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 0;
}
.incl__price {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.1;
  color: var(--color-text-price);
}
.incl__button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 0;
}
.incl__button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: var(--color-primary-500);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  color: var(--color-text-invert);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.incl__button:hover {
  transform: scale(1.05);
  background-color: var(--colors-button-secondary-bg-hover);
}
.incl__cart-icon {
  width: 23px;
  height: 24px;
}
.incl__trust-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid var(--color-border-primary-subtle);
  border-bottom: 1px solid var(--color-border-primary-subtle);
  text-align: center;
  color: #000000;
}
.incl__trust-item {
  flex: 1 0 0;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}
.incl__trust-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .incl__trust-icon {
    width: 32px;
    height: 32px;
  }
}
.incl__trust-text {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
}

.review {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
}
.review__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 996px;
  width: 100%;
  padding: 0 16px;
}
@media (min-width: 769px) {
  .review__container {
    padding: 0 32px;
  }
}
.review__subtitle {
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-muted);
}
.review__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}
.review__card {
  flex: 1 0 0;
  min-width: 300px;
  max-width: 486px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-primary-subtle);
  border-radius: 16px;
}
@media (min-width: 769px) {
  .review__card {
    padding: 32px;
  }
}
.review__card:nth-child(n+5) {
  display: none;
}
.review__grid--expanded .review__card:nth-child(n+5) {
  display: flex;
}
.review__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  font-weight: 700;
  line-height: 1.5;
}
.review__author {
  width: 100%;
  font-size: 20px;
  color: #000000;
}
@media (min-width: 769px) {
  .review__author {
    font-size: 22px;
  }
}
.review__stars {
  width: 100%;
  font-size: 22px;
  color: var(--color-secondary-500);
}
.review__verified {
  width: 100%;
  font-size: 14px;
  color: var(--color-primary-500);
}
.review__image {
  width: 100%;
}
.review__image img {
  display: block;
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.review__quote {
  width: 100%;
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
}
.review__more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  background: linear-gradient(149.14deg, var(--color-primary-700) 34.1%, var(--color-primary-500) 65.9%);
  border: 2px solid var(--color-primary-500);
  border-radius: 4px;
  cursor: pointer;
  color: var(--color-text-invert);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.review__more-btn:hover {
  background: linear-gradient(149.14deg, var(--color-primary-500) 34.1%, var(--color-primary-500) 65.9%);
}
.review__more-btn[hidden] {
  display: none;
}

.form-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
}
@media (min-width: 769px) {
  .form-wrapper {
    padding: 32px;
  }
}
.form-wrapper__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 996px;
  width: 100%;
}
.form-wrapper h3 {
  text-align: center;
}
.form-wrapper__how {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.form-wrapper__how-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px;
  list-style: none;
}
.form-wrapper__how-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.form-wrapper__how-list p {
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.form-wrapper__how-icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}
.form-wrapper__arrows {
  width: 124px;
  height: auto;
}
.form-wrapper__form-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  color: var(--color-text-primary);
}
.form-wrapper__eyebrow {
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.form-wrapper__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 680px;
  padding: 32px 16px;
  background-color: var(--color-bg-surface-alt);
  border-radius: 8px;
}
@media (min-width: 769px) {
  .form-wrapper__form {
    padding: 32px;
  }
}
.form-wrapper__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.form-wrapper__steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--color-text-muted);
  text-align: center;
}
.form-wrapper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-wrapper__step span {
  font-size: 14px;
  line-height: 1.5;
}
.form-wrapper__step strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.form-wrapper__steps-track {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 32px;
}
.form-wrapper__steps-dot {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #b0b0b0;
  background-color: #ffffff;
}
.form-wrapper__steps-dot--active {
  border-color: var(--color-primary-500);
}
.form-wrapper__steps-line {
  flex: 1 0 0;
  width: 100%;
  border-bottom: 2px dashed #b0b0b0;
}
.form-wrapper__payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.form-wrapper__payment-icons img {
  width: 60px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}
.form-wrapper__submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  background-image: linear-gradient(145.72deg, var(--color-primary-700) 34.1%, var(--color-primary-500) 65.9%);
  border: 2px solid var(--color-primary-500);
  border-radius: 4px;
  cursor: pointer;
  color: var(--color-text-invert);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.form-wrapper__submit-btn:hover {
  background: linear-gradient(149.14deg, var(--color-primary-500) 34.1%, var(--color-primary-500) 65.9%);
}
.form-wrapper__stock-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 384px;
}
.form-wrapper__stock-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-primary);
  text-align: center;
}
.form-wrapper__stock-bar {
  position: relative;
  width: 100%;
  height: 20px;
  background-color: var(--color-bg-progress-track);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.25);
}
.form-wrapper__stock-fill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 83%;
  height: 100%;
  padding: 0 12px;
  background-color: var(--color-secondary-500);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 10px;
  line-height: 1.3;
  color: #000000;
  white-space: nowrap;
}

.orderForm__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  font-family: var(--font-primary);
}
@media (min-width: 769px) {
  .orderForm__fields {
    gap: 16px;
  }
}
.orderForm__fieldRow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}
@media (min-width: 769px) {
  .orderForm__fieldRow {
    flex-direction: row;
    gap: 16px;
  }
}
.orderForm__fieldRow > .orderForm__field:not(.orderForm__field--prefix) {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}
.orderForm__row {
  display: flex;
  width: 100%;
}
.orderForm__field--prefix {
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
}
@media (min-width: 769px) {
  .orderForm__field--prefix {
    flex: 0 0 180px;
    width: 180px;
    max-width: 180px;
  }
}
.orderForm__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box;
  width: 100%;
  min-height: 60px;
  height: auto;
  padding: 10px 12px;
  background-color: var(--color-bg-page);
  border: 1px solid var(--color-neutral-300);
  border-radius: 8px;
  cursor: text;
  overflow: visible;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.orderForm__field:hover:not(.orderForm__field--error):not(:focus-within) {
  border-color: var(--color-primary-500);
  box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
}
.orderForm__field:focus-within:not(.orderForm__field--error) {
  background-color: var(--color-bg-card);
  border-color: var(--color-primary-500);
  box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
}
.orderForm__field:has(.orderForm__select) {
  position: relative;
  cursor: pointer;
  min-height: 60px;
}
.orderForm__field:has(.orderForm__select) .orderForm__fieldLabel {
  cursor: pointer;
}
.orderForm__field:has(.orderForm__select) .orderForm__selectIcon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.orderForm__field--textarea {
  min-height: 80px;
  height: auto;
  justify-content: flex-start;
  align-items: stretch;
}
.orderForm__field--error {
  position: relative;
  border: 2px solid var(--color-text-error);
  padding: 10px 12px;
  box-shadow: none;
  background-color: var(--color-bg-page);
}
.orderForm__field--error:not(:focus-within):has([data-error-empty]:not([hidden])) .orderForm__input,
.orderForm__field--error:not(:focus-within):has([data-error-empty]:not([hidden])) .orderForm__textarea {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.orderForm__field--error:not(:focus-within) .orderForm__fieldError[data-error-empty]:not([hidden]) {
  display: block;
}
.orderForm__field--error:focus-within .orderForm__fieldError[data-error-empty] {
  display: none !important;
}
.orderForm__fieldLabel {
  display: block;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-neutral-700);
  cursor: text;
}
.orderForm__fieldLabel--dark {
  color: #3d3d3d;
  font-weight: 600;
}
.orderForm__input, .orderForm__select, .orderForm__textarea {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  height: auto;
  min-height: 20px;
  border: none;
  border-radius: 8px;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-text-primary);
  background: transparent;
  outline: none;
  box-shadow: none;
  overflow: visible;
}
.orderForm__input {
  cursor: text;
}
.orderForm__textarea {
  flex: 1 1 auto;
  min-height: 40px;
  resize: none;
  overflow: hidden;
  line-height: 1.5;
  cursor: text;
}
.orderForm__selectWrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  align-self: stretch;
  min-width: 0;
  width: 100%;
  min-height: 20px;
}
.orderForm__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex: 1 1 0;
  min-width: 0;
  height: auto;
  min-height: 20px;
  padding-right: 28px;
  cursor: pointer;
}
.orderForm__selectIcon {
  width: 20px;
  height: 20px;
  max-width: 20px;
  flex-shrink: 0;
  pointer-events: none;
}
.orderForm__fieldError {
  display: none;
  color: var(--color-text-error);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.orderForm__consents {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-top: 8px;
}
.orderForm__checkboxRow {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  cursor: pointer;
}
.orderForm__checkboxRow--error .orderForm__checkbox {
  accent-color: var(--color-text-error);
  outline: 2px solid var(--color-text-error);
  outline-offset: 0;
  border-radius: 4px;
}
.orderForm__checkboxRow--error .orderForm__fieldError:not([hidden]) {
  display: block;
}
.orderForm__checkboxBody {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.orderForm__checkbox {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0;
  accent-color: var(--color-primary-500);
  cursor: pointer;
  border: 2px solid var(--color-text-muted);
  border-radius: 4px;
  background-color: var(--color-bg-page);
}
.orderForm__checkbox--checked {
  border-color: var(--color-primary-500);
}
.orderForm__checkboxIcon {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  max-width: 24px;
  padding: 3px;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.orderForm__checkboxIcon[hidden] {
  display: none;
}
.orderForm__checkboxText {
  flex: 1 1 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.14px;
}
.orderForm__checkboxText a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.2s ease-in-out;
}
.orderForm__checkboxText a:hover {
  opacity: 0.8;
}
.orderForm__checkboxText label {
  cursor: pointer;
}
.orderForm__checkboxText--expand {
  cursor: pointer;
}
.orderForm__consentToggle {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.orderForm__consentDetails {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.14px;
  color: var(--color-text-primary);
}
.orderForm__consentDetails[hidden] {
  display: none;
}
.orderForm__optionalConsents {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding-left: 34px;
  width: 100%;
}
.orderForm__optionalConsents--visible {
  display: flex;
}
.orderForm__legalNotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.orderForm__legalNote {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.12px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.orderForm__legalNote a {
  font-weight: 600;
  color: inherit;
  text-decoration: underline;
}

.faq {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
}
.faq__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 996px;
  width: 100%;
  padding: 24px;
  border: 8px solid var(--color-border-primary-strong);
}
@media (min-width: 769px) {
  .faq__container {
    padding: 32px;
  }
}
.faq__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 630px;
  width: 100%;
}
.faq__item {
  width: 100%;
}
.faq__question {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 14px;
  background-color: var(--color-bg-page);
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.faq__question-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 10px;
  height: 11px;
  transition: transform 0.2s ease;
}
.faq__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 9.75px;
  border-color: transparent transparent transparent var(--color-primary-900);
}
.faq__item--open .faq__icon {
  transform: rotate(90deg);
}
.faq__answer {
  display: none;
  width: 100%;
  padding: 10px 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
}
.faq__item--open .faq__answer {
  display: block;
}
.faq__hours {
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.callpage-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: var(--color-bg-header);
}
@media (min-width: 769px) {
  .callpage-header {
    padding: 16px 32px;
  }
}
.callpage-header__container {
  display: flex;
  align-items: center;
  max-width: var(--container-width);
  width: 100%;
}
.callpage-header__tagline {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.callpage-header__label {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text-invert);
  white-space: nowrap;
}
@media (min-width: 769px) {
  .callpage-header__label {
    font-size: 22px;
    line-height: 1.5;
  }
}
.callpage-header__review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.callpage-header__rating {
  font-size: 12px;
  line-height: 1;
  color: var(--color-text-invert);
  white-space: nowrap;
}
@media (min-width: 769px) {
  .callpage-header__rating {
    font-size: 16px;
  }
}
.callpage-header__stars {
  width: 85px;
  height: 16px;
}

.thank-you {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
}
@media (min-width: 769px) {
  .thank-you {
    padding: 32px;
  }
}
.thank-you__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 996px;
  width: 100%;
}
.thank-you__image {
  width: 100%;
  max-width: 626px;
  aspect-ratio: 626/417;
  border-radius: 16px;
  overflow: hidden;
}
.thank-you__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thank-you__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  text-align: center;
  color: var(--color-text-primary);
}
.thank-you__title {
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .thank-you__title {
    font-size: 42px;
    line-height: 1.2;
  }
}
.thank-you__subtitle {
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .thank-you__subtitle {
    font-size: 24px;
  }
}
.thank-you__hours {
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .thank-you__hours {
    font-size: 24px;
  }
}
.thank-you__text {
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}
.thank-you__note {
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .thank-you__note {
    font-size: 22px;
  }
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 32px;
  background-color: var(--color-bg-footer);
}
.footer__copyright {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: var(--container-width);
  width: 100%;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-invert);
}
@media (min-width: 1080px) {
  .footer__copyright {
    flex-direction: row;
  }
}
.footer__copyright > p {
  margin: 0;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer__links a {
  color: var(--color-text-invert);
  text-decoration: none;
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__text {
  width: 100%;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: left;
}

.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;
  font-size: 13px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.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%;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */