@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;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(15px, 2.0833333333vw, 16px);
  line-height: 1.5;
  color: #333;
}

.h1 {
  font-family: "Ubuntu", sans-serif;
  font-size: clamp(32px, 4.5572916667vw, 39px);
  font-weight: 700;
  line-height: 1.2;
}

.h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: clamp(24px, 3.3854166667vw, 28px);
  font-weight: 700;
  line-height: 1.2;
}

.h3 {
  font-family: "Ubuntu", sans-serif;
  font-size: clamp(20px, 2.8645833333vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.h4 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(18px, 2.6041666667vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

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

.text-red {
  color: #fb2c36;
}

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

.footer {
  width: 100%;
  background-color: #314345;
  color: #fff;
  text-align: center;
  padding: clamp(16px, 3.125vw, 32px);
}

.footer__wrapper {
  max-width: 808px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.0833333333vw, 16px);
  font-size: clamp(13px, 1.8229166667vw, 14px);
  line-height: 1.2;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  -moz-column-gap: clamp(16px, 3.125vw, 24px);
       column-gap: clamp(16px, 3.125vw, 24px);
  justify-content: center;
  align-items: center;
}
.footer__links a {
  text-decoration: underline;
  color: #eee;
  transition: color 0.3s ease-in-out;
}
.footer__links a:hover {
  color: #fff;
}

.footer__text:not(:last-child) {
  padding: clamp(12px, 2.0833333333vw, 16px) 0;
}

.header {
  width: 100%;
  background-color: #314345;
  color: #fff;
  padding: 16px clamp(16px, 3.125vw, 32px);
}

.header__wrapper {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .header__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.header__logo {
  display: flex;
  padding: 0 8px;
  align-items: center;
  gap: 8px;
}
.header__logo img {
  width: 32.558px;
  height: 44.001px;
  min-width: 32.558px;
  min-height: 44.001px;
}
.header__logo span {
  font-family: "Source Sans 3", sans-serif;
  line-height: normal;
  font-size: 30px;
  font-weight: 700;
}

.header__text {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 700;
  line-height: 1.5;
}

.update {
  padding: 16px;
}

.update__wrapper {
  max-width: 1020px;
  margin: 0 auto;
  padding: 12px 8px;
  border-radius: 8px;
  border: 1px solid #fe9a00;
  background: #fef3c6;
}
.update__wrapper p {
  color: #333;
  font-family: "Open Sans";
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.main {
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .main {
    padding: 48px 32px;
  }
}

.main__wrapper {
  max-width: 1020px;
  margin: 0 auto;
}
@media (min-width: 850px) {
  .main__wrapper {
    display: grid;
    grid-template-columns: 1fr 296px;
    gap: 24px;
  }
}

.main__aside {
  display: none;
}
@media (min-width: 850px) {
  .main__aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.main__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 850px) {
  .main__content {
    gap: 16px;
  }
}

.banner {
  padding-bottom: 24px;
}

.banner__product {
  margin: 16px 0 24px;
  position: relative;
  width: 100%;
  padding-bottom: 40px;
}
.banner__product > img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.banner__badge {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  min-height: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding-left: 44px;
  -moz-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
  -ms-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
  -o-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.banner__badge-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 3;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__badge-icon img {
  width: 48px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.banner__badge-text .yellow {
  padding: 8px 16px 8px 40px;
  border-radius: 0 0 16px 0;
  background: #ffdf20;
  color: #333;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.banner__badge-text .red {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px 8px 40px;
  border-radius: 0 0 16px 0;
  background: #fb2c36;
  color: #fff;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

@property --bg-button {
  syntax: "<color>";
  inherits: false;
  initial-value: #00d492;
}
@property --shadow-button {
  syntax: "<color>";
  inherits: false;
  initial-value: #007a55;
}
.btn {
  --bg-button: #00d492;
  --shadow-button: #007a55;
  display: block;
  padding: 16px;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  border-bottom: 1px solid #007a55;
  background: linear-gradient(180deg, var(--bg-button) 0%, #007a55 100%);
  box-shadow: 1px 1px 10px 0 var(--shadow-button);
  color: #fff;
  text-shadow: 1px 1px 0 #007a55;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: --bg-button 0.3s ease-in-out, --shadow-button 0.3s ease-in-out;
}
.btn:hover {
  --bg-button: #007a55;
  --shadow-button: transparent;
}

.btn__icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}

.banner .btn {
  min-height: 66px;
}

.customer-reviews {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.customer-reviews__content {
  padding: 20px 16px;
  border-radius: 16px;
  border: 1px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.customer-reviews__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-score {
  color: #000;
  font-family: "Open Sans";
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.review-stars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-stars p {
  color: #888;
  font-family: "Open Sans";
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.stars img {
  width: 13.496px;
  height: 12.73px;
}

.reviews {
  display: flex;
  flex-direction: column;
}
.reviews > * {
  width: 100%;
}

.reviews-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-item > span {
  color: #333;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.reviews-item__progress {
  min-width: 208px;
  height: 7px;
  border-radius: 100vmax;
  background: #f6f6f6;
}

.progress-bar {
  display: block;
  height: 100%;
  border-radius: 100vmax;
  background: #ffdf20;
}

.main.animate-init .progress-bar {
  transform: scaleX(0);
  transform-origin: left center;
}

.main.animate-init .reviews.in-view .progress-bar {
  animation: progress-bar 1s ease-in-out forwards;
}

@keyframes progress-bar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.progress-bar--90 {
  width: 90%;
}

.progress-bar--7 {
  width: 7%;
}

.progress-bar--2 {
  width: 2%;
}

.progress-bar--0 {
  width: 0%;
}

.progress-bar--1 {
  width: 1%;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.author__content {
  padding: 10px;
  border-radius: 16px;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.author__content p {
  color: #000;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.author__avatar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.author__avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.author__avatar span {
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.main__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 850px) {
  .main__header {
    padding: 10px;
  }
}

.main__header-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 600px) {
  .main__header-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.main__header-top p {
  color: #888;
  font-family: "Open Sans";
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.main__header-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main__header-stars span {
  color: #000;
  font-family: "Open Sans";
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.article__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 500px) {
  .article__info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.article__author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.article__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.article__author p {
  color: #888;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.article-date {
  color: #888;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-align: right;
}

.article__slider.swiper {
  width: 100%;
  max-width: clamp(465px, 55.5555555556vw, 616px);
  overflow: hidden;
  aspect-ratio: 426/276;
  padding-bottom: 36px;
}
@media (min-width: 1000px) {
  .article__slider.swiper {
    max-width: clamp(616px, 61.9469026549vw, 700px);
  }
}

.article__slider-item.swiper-slide {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.article__slider-item.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.article__slider-item.swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.swiper-pagination-bullet {
  border-radius: 50%;
  border: 1px solid #e7e7e7 !important;
  background: #f6f6f6 !important;
  opacity: 1 !important;
  height: 10px !important;
  width: 10px !important;
  margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
  border-radius: 100vmax;
  width: 40px !important;
  background: #e7e7e7 !important;
  opacity: 1 !important;
  height: 10px !important;
}

.gray-box {
  border-radius: 16px;
  padding: 8px;
  background-color: #e7e7e7;
}
@media (min-width: 850px) {
  .gray-box {
    padding: 16px;
  }
}
.gray-box p {
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.article__image {
  width: 100%;
  height: auto;
}
.article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.article__image--custom {
  height: 394px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 850px) {
  .features {
    gap: 16px;
  }
}

.features__item {
  border-radius: 16px;
  background: rgba(197, 219, 220, 0.7);
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 850px) {
  .features__item {
    padding: 16px;
    gap: 24px;
  }
}
.features__item img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
}
@media (min-width: 850px) {
  .features__item img {
    width: 65px;
    height: 65px;
    min-width: 65px;
    min-height: 65px;
  }
}

.features__item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.features__item-content h3 {
  color: #518389;
  font-family: "Open Sans";
  font-size: clamp(18px, 2.6041666667vw, 20px);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.5;
}
.features__item-content p {
  color: #000;
  font-family: "Open Sans";
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-weight: 400;
  line-height: 1.5;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.spec__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 550px) {
  .spec__content {
    display: grid;
    grid-template-columns: 204fr 240fr 204fr;
    gap: 24px;
  }
}

.spec__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  justify-content: space-between;
}
@media (min-width: 550px) {
  .spec__items {
    gap: 16px;
  }
}
.spec__items:first-child {
  order: 1;
}
@media (min-width: 550px) {
  .spec__items:first-child {
    grid-column: 1/2;
  }
}
.spec__items:last-child {
  order: 2;
}
@media (min-width: 550px) {
  .spec__items:last-child {
    order: 3;
    grid-column: 3/4;
  }
}

.spec__content-image {
  order: 3;
  display: none;
}
@media (min-width: 550px) {
  .spec__content-image {
    order: 2;
    grid-column: 2/3;
    display: block;
  }
}
.spec__content-image img {
  max-width: 260px;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.spec__item {
  max-width: 288px;
  margin: 0 auto;
  width: 100%;
  border-radius: 16px;
  background: #f6f6f6;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.spec__item p {
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.spec__item-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}
.spec__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.trust-badges {
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}
@media (min-width: 550px) {
  .trust-badges {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 850px) {
  .trust-badges {
    padding: 16px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badges__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.trust-badges__item img {
  width: auto;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.trust-badges__item p {
  color: #333;
  text-align: center;
  font-family: "Open Sans";
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 8px;
}
@media (min-width: 850px) {
  .list {
    padding-left: 12px;
  }
}
.list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
}
.list li img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.list li span {
  color: #333;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.dimensions {
  padding: 16px 0;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 700px) {
  .dimensions {
    gap: 0px;
    display: grid;
    grid-template-columns: 1fr 378px;
    align-items: center;
  }
}
.dimensions img {
  width: 100%;
  height: auto;
  max-width: 378px;
  display: block;
  margin-left: auto;
  transform: translateX(16px);
}
@media (min-width: 700px) {
  .dimensions img {
    transform: translateX(0px);
  }
}
.dimensions p {
  color: #333;
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 1.5;
  padding-left: 8px;
}
@media (min-width: 700px) {
  .dimensions p {
    padding-left: 12px;
  }
}

.testimonials__item {
  padding: 10px;
  border-radius: 16px;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonials__item > p {
  color: #000;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.testimonials__item > img {
  width: 100%;
  height: auto;
}

.testimonials__item-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 500px) {
  .testimonials__item-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.testimonials__author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.testimonials__author img {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.testimonials__author h4 {
  color: #000;
  font-family: "Open Sans";
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 600;
  line-height: 1.5;
}
.testimonials__author p {
  color: #007a55;
  font-family: "Open Sans";
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-weight: 400;
  line-height: 1.5;
}

.main__comments {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media (min-width: 600px) {
  .main__comments {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(3, 1fr);
  }
}

.main__comments-item {
  width: 100%;
  max-width: 360px;
  border-radius: 8px;
  border: 1px solid #f6f6f6;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.main__comments-item > img {
  width: 100%;
  height: auto;
}

.comments-content {
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 500px) {
  .comments-content {
    padding: 16px;
  }
}
.comments-content h4 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.comments-content h4 span {
  color: #000;
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.comments-content h4 img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}
.comments-content p {
  color: #000;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.cta {
  padding: 16px;
  border-radius: 16px;
  border: 2px solid #007a55;
  background: #fdfffd;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .cta {
    padding: 24px;
    gap: 16px;
  }
}

.cta__content {
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .cta__content {
    padding: 24px 16px;
    gap: 24px;
  }
}
.cta__content h3 {
  color: #333;
  text-align: center;
  font-family: "Open Sans";
  font-size: clamp(20px, 2.8645833333vw, 22px);
  font-weight: 700;
  line-height: 150%;
}
.cta__content > p {
  color: #333;
  text-align: center;
  font-family: "Open Sans";
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 600;
  line-height: 1.5;
}

.discount-box {
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 223, 32, 0.25);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .discount-box {
    padding: 8px 12px;
  }
}
.discount-box p {
  text-align: center;
  font-family: "Open Sans";
  font-size: clamp(20px, 2.8645833333vw, 22px);
  line-height: 1.5;
}
.discount-box p:first-child {
  color: #000;
  font-weight: 700;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.product__content-item {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 200px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.product__content-item p {
  color: #333;
  text-align: center;
  font-family: "Open Sans";
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}
.product__content-item img {
  height: 50px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.alert-box {
  border-radius: 16px;
  border: 1px solid #fb2c36;
  background: rgba(254, 243, 198, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px;
}
@media (min-width: 768px) {
  .alert-box {
    padding: 16px;
  }
}
.alert-box h4 {
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
.alert-box p {
  color: #333;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.payments {
  padding: 32px 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .payments {
    padding: 40px 32px 16px;
  }
}
.payments p {
  color: #888;
  text-align: center;
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.comparison {
  width: 100%;
  overflow-x: auto;
}

.comparison__wrapper {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
}

.comparison__head {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.comparison__content {
  padding: 0 8px;
  width: 120px;
  background: #f6f6f6;
}

.comparison__head .comparison__content {
  width: 170px;
  border-radius: 16px 0 0 16px;
}

.comparison__cell {
  width: 100%;
  text-align: left;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
  border-bottom: 1px solid #d1d1d1;
  color: #000;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.comparison__cell img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  min-width: 24px;
  min-height: 24px;
}
.comparison__cell:last-child {
  border-bottom: none;
}

.comparison__cell--header {
  width: 100%;
  text-align: center;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-bottom: 1px solid #d1d1d1;
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.comparison__body {
  overflow-x: auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.comparison__item--last .comparison__content {
  border-radius: 0 16px 16px 0;
}

.comparison__item.active .comparison__content {
  width: 170px;
  padding: 8px;
  gap: 4px;
  border-radius: 16px;
  background-color: #61969c;
}
.comparison__item.active .comparison__content .comparison__cell--header {
  min-height: 40px;
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.comparison__item.active .comparison__content .comparison__cell img {
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
}

.comparison__body .comparison__cell {
  align-items: center;
  justify-content: center;
}

.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%;
}/*# sourceMappingURL=style.css.map */