@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 {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  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: 360px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2.2135416667vw, 18px);
  line-height: 1.5;
  color: #454545;
  background-color: #fff;
}

.footer {
  background: #262626;
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .footer {
    padding: 32px 24px;
  }
}

.footer__content {
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__content {
    gap: 16px;
  }
}

.footer__logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  padding: 9px 0;
}
.footer__logo img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.footer__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer__text img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.footer__text span {
  color: #d1d1d1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__links {
    gap: 24px;
  }
}
.footer__links a {
  color: #d1d1d1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.25s ease;
}
.footer__links a:hover {
  color: #fff;
}

.footer__copyright {
  color: #d1d1d1;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.text-white {
  color: #fff;
}

.text-orange {
  color: #f57b00;
}

.text-green {
  color: #469912;
}

@keyframes fade-in {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  from {
    transform: translateX(-15px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  from {
    transform: translateX(15px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.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;
}

.topbar {
  background: #6ec935;
  padding: 8px 32px;
}

.topbar__container {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.topbar__container img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.topbar__container p {
  color: #262626;
  text-align: center;
  font-size: clamp(15px, 2.0833333333vw, 18px);
  font-weight: 700;
  line-height: 1.2;
}

.header {
  padding: 16px;
  background-color: #262626;
}
@media (min-width: 768px) {
  .header {
    padding: 32px 16px;
  }
}

.header__container {
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1000px) {
  .header__container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.header__logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  padding: 9px 0;
}
.header__logo img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.header__text {
  color: #fff;
  font-size: clamp(15px, 2.0833333333vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

@property --gradient-header-button-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: transparent;
}
@property --gradient-header-button-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: transparent;
}
.header__button {
  --gradient-header-button-1: transparent;
  --gradient-header-button-2: transparent;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  background: linear-gradient(180deg, var(--gradient-header-button-1) 0%, var(--gradient-header-button-2) 100%);
  transition: --gradient-header-button-1 0.25s ease, --gradient-header-button-2 0.25s ease, transform 0.25s ease;
  transform: scale(1);
  transform-origin: center;
  will-change: transform, --gradient-header-button-1, --gradient-header-button-2;
}
.header__button svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  color: #6ec935;
  transition: color 0.25s ease;
}
.header__button span {
  color: #fff;
  font-size: clamp(16px, 2.2135416667vw, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16px;
}
.header__button:hover {
  --gradient-header-button-1: #6ec935;
  --gradient-header-button-2: #469912;
}
.header__button:hover svg {
  color: #fff;
}
.header__button:active {
  transform: scale(0.97);
}

.hero {
  background: #fff9f3;
}
@media (min-width: 768px) {
  .hero {
    background-image: url("../media/images/container-hero-image.webp");
    background-size: cover;
    background-position: 25% center;
    background-repeat: no-repeat;
    width: 100%;
    aspect-ratio: 3840/1800;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .hero {
    background-position: center;
    max-height: 900px;
  }
}

.hero__container {
  position: relative;
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero__container {
    padding: 0px 16px 48px;
  }
}
@media (min-width: 1200px) {
  .hero__container {
    padding: 0 0 48px;
  }
}

.hero__header {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .hero__header {
    padding: 40px 0px 16px;
    max-width: 555px;
  }
}
.hero__header p {
  font-size: clamp(20px, 3.125vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero__title {
  color: #454545;
  font-size: clamp(52px, 7.8125vw, 64px);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.hero__list {
  display: flex;
  padding: 0 16px 16px;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .hero__list {
    max-width: 555px;
    padding: 24px 0px;
    gap: 16px;
  }
}
.hero__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
}
.hero__list li img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.hero__list li p {
  display: flex;
  flex-direction: column;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  line-height: 1.5;
}

.hero__image--mobile {
  width: 100%;
  height: auto;
  position: relative;
  margin-left: auto;
}
.hero__image--mobile img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 768px) {
  .hero__image--mobile {
    display: none;
  }
}

.hero__badge {
  position: absolute;
  background-image: url("../media/icons/badge-shape.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: 1/1;
  padding: 24px 16px;
  min-width: 132px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
@media (min-width: 768px) {
  .hero__badge {
    min-width: 200px;
    padding: 24px;
  }
}

.hero__badge .price-small {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration-line: line-through;
}
@media (min-width: 768px) {
  .hero__badge .price-small {
    font-size: 26px;
  }
}

.hero__badge .price-big {
  color: #ffd426;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero__badge .price-big {
    font-size: 48px;
  }
}

.hero__badge .discount {
  padding: 4px 8px;
  border-radius: 100vmax;
  background: #ffd426;
  color: #262626;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .hero__badge .discount {
    font-size: 22px;
  }
}

.hero__badge.hero__badge--mobile {
  top: 5%;
  left: 21%;
  filter: drop-shadow(0 16px 40px rgba(255, 255, 255, 0.8));
  -webkit-filter: drop-shadow(0 16px 40px rgba(255, 255, 255, 0.8));
}

.hero__badge.hero__badge--desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero__badge.hero__badge--desktop {
    display: flex;
    filter: drop-shadow(0 16px 40px rgba(255, 255, 255, 0.8));
    -webkit-filter: drop-shadow(0 16px 40px rgba(255, 255, 255, 0.8));
    top: 150px;
    left: 72%;
  }
}
@media (min-width: 1200px) {
  .hero__badge.hero__badge--desktop {
    left: auto;
    top: 71px;
    right: 152px;
  }
}

.hero__cta {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff1e2;
}
@media (min-width: 768px) {
  .hero__cta {
    background: transparent;
    padding: 24px 0 72px;
    max-width: 555px;
    gap: 10px;
  }
}

.btn-wrapper {
  padding: 8px 0;
}
@media (min-width: 768px) {
  .btn-wrapper {
    order: 2;
    padding: 0;
  }
}

@property --gradient-btn-green-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #6ec935;
}
@property --border-btn-green-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #2c5e0d;
}
.btn-green {
  --gradient-btn-green-1: #6ec935;
  --border-btn-green-2: #2c5e0d;
  padding: 16px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 4px;
  border-bottom: 1px solid var(--border-btn-green-2);
  background: linear-gradient(180deg, var(--gradient-btn-green-1) 0%, #469912 100%);
  transition: --gradient-btn-green-1 0.25s ease, --border-btn-green-2 0.25s ease, transform 0.25s ease;
  transform: scale(1);
  transform-origin: center;
  will-change: transform, --gradient-btn-green-1, --border-btn-green-2;
}
@media (min-width: 768px) {
  .btn-green {
    padding: 24px 16px;
  }
}
.btn-green img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.btn-green span {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16px;
}
.btn-green:hover {
  --gradient-btn-green-1: #469912;
  --border-btn-green-2: #469912;
  transform: translateY(1px) scale(1);
}
.btn-green:active {
  transform: scale(0.97);
}

.hero .btn-green {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 320px;
}

.hero__rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__rating {
    order: 1;
  }
}

.hero__score {
  font-size: clamp(20px, 3.125vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.hero__rating-text {
  font-size: clamp(10px, 1.5625vw, 12px);
  font-weight: 400;
  line-height: 1.2;
}

.stars,
.stars-component {
  display: flex;
  align-items: center;
}
.stars img,
.stars-component img {
  width: 16px;
  height: 15px;
  min-width: 16px;
  min-height: 15px;
  max-width: 16px;
  max-height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.intro {
  padding: 16px;
  background-image: linear-gradient(to bottom, #f49600 0%, #f49600 41%, #fff 41%, #fff 100%);
}
@media (min-width: 768px) {
  .intro {
    padding: 24px 16px 48px;
  }
}

.intro__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .intro__container {
    gap: 24px;
  }
}

.intro__title {
  padding: 16px 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .intro__title {
    font-size: 64px;
    padding: 24px 0;
  }
}

.video-wrapper {
  max-width: 1110px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  aspect-ratio: 1110/620;
  box-shadow: 0 8px 80px 0 rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  background-color: #f6f6f6;
}
@media (min-width: 768px) {
  .video-wrapper {
    border-radius: 48px;
  }
}
.video-wrapper video {
  width: 100%;
  aspect-ratio: 1110/620;
  border-radius: 16px;
  border: 1px solid #f6f6f6;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 768px) {
  .video-wrapper video {
    border-radius: 48px;
  }
}

.intro__content {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .intro__content {
    padding: 24px 0;
    gap: 24px;
  }
}
.intro__content h3 {
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: 700;
  text-wrap: balance;
  line-height: 1.2;
  max-width: 550px;
  margin: 0 auto;
}

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

.description__container {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 920px) {
  .description__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

.description__media {
  max-width: 531px;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 1/1;
  border-top-left-radius: 48px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 48px;
  overflow: hidden;
}
.description__media video,
.description__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.description--reverse .description__media {
  order: 1;
}
@media (min-width: 920px) {
  .description--reverse .description__media {
    order: 2;
  }
}

.description--reverse .description__content {
  order: 2;
}
@media (min-width: 920px) {
  .description--reverse .description__content {
    order: 1;
  }
}

.description__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 531px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .description__content {
    gap: 24px;
  }
}
.description__content h3 {
  font-size: clamp(32px, 5.2083333333vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 920px) {
  .main.animate-init .description:not(.description--reverse) .description__media {
    transform: translateX(-15px);
    opacity: 0;
  }
  .main.animate-init .description:not(.description--reverse) .description__content {
    transform: translateX(15px);
    opacity: 0;
  }
  .main.animate-init .description:not(.description--reverse).in-view .description__media {
    animation: fade-in-left 0.5s ease forwards;
  }
  .main.animate-init .description:not(.description--reverse).in-view .description__content {
    animation: fade-in-right 0.5s ease forwards;
  }
  .main.animate-init .description.description--reverse .description__media {
    transform: translateX(15px);
    opacity: 0;
  }
  .main.animate-init .description.description--reverse .description__content {
    transform: translateX(-15px);
    opacity: 0;
  }
  .main.animate-init .description.description--reverse.in-view .description__media {
    animation: fade-in-right 0.5s ease forwards;
  }
  .main.animate-init .description.description--reverse.in-view .description__content {
    animation: fade-in-left 0.5s ease forwards;
  }
}

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

.specifications__container {
  border-radius: 8px;
  background: #f6f6f6;
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
  .specifications__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.specifications__content {
  padding: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .specifications__content {
    padding: 24px;
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .specifications__content {
    padding: 48px;
  }
}
.specifications__content > img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.specifications__content h2 {
  color: #4f4f4f;
  font-size: clamp(32px, 5.2083333333vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.specifications__content h3 {
  font-size: clamp(20px, 3.125vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}
.specifications__content ul {
  display: flex;
  flex-direction: column;
}
.specifications__content ul li {
  padding: 4px 0;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  line-height: 1.5;
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
}
.specifications__content ul li strong {
  font-weight: 700;
}

.set {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.set__item {
  width: 100%;
  padding: 12px 8px;
  border-radius: 100vmax;
  border: 1px solid #e7e7e7;
  background: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-weight: 700;
}

.badges {
  background: radial-gradient(circle, rgb(110, 201, 53) 0%, rgb(70, 153, 18) 100%);
  padding: 32px 16px;
}

.badges__container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  justify-content: center;
}
@media (min-width: 768px) {
  .badges__container {
    gap: 16px;
    padding: 8px 0px;
  }
}

.badges__item {
  width: calc(50% - 6px);
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.badges__item p {
  color: #fff;
  font-size: clamp(15px, 2.0833333333vw, 18px);
  font-weight: 400;
  line-height: 1.2;
}
.badges__item img {
  width: 100px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

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

.comments__container {
  max-width: 1110px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .comments__container {
    gap: 16px;
  }
}

.comments__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .comments__header {
    gap: 16px;
  }
}
.comments__header h2 {
  color: #4f4f4f;
  text-align: center;
  font-size: clamp(32px, 5.2083333333vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}
.comments__header p {
  color: #262626;
  text-align: center;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  line-height: 1.5;
}

.comments__content {
  width: 100%;
  display: column;
  -moz-columns: 1;
       columns: 1;
  gap: 16px;
}
@media (min-width: 490px) {
  .comments__content {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (min-width: 759px) {
  .comments__content {
    -moz-columns: 3;
         columns: 3;
  }
}

.comment {
  padding: 16px;
  border-radius: 8px;
  overflow: hidden;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 16px;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comment img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.comment__text {
  font-size: clamp(13px, 1.8229166667vw, 14px);
  line-height: 1.4;
  margin-top: 16px;
}

.comment__header {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.comment__header h3 {
  font-size: clamp(13px, 1.8229166667vw, 14px);
  font-weight: 600;
  line-height: 1.3;
}
.comment__header p {
  color: #10934b;
  font-size: clamp(10px, 1.5625vw, 12px);
  font-weight: 400;
  line-height: 1.3;
}

.features {
  padding: 32px 16px;
  background: #fff1e2;
}
@media (min-width: 768px) {
  .features {
    padding: 48px 16px;
  }
}

.features__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .features__container {
    display: grid;
    grid-template-columns: 400fr 544fr;
    gap: 48px;
    align-items: center;
    max-width: 992px;
    margin: 0 auto;
  }
}
.features__container > img {
  max-width: 400px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.features__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features__content > * {
  width: 100%;
}

.features__header {
  display: flex;
  flex-direction: column;
}
.features__header h2 {
  font-size: clamp(32px, 5.2083333333vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}
.features__header p {
  font-size: clamp(22px, 3.125vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.features__divider {
  height: 1px;
  width: 100%;
  border-radius: 100vmax;
  background-color: #e7e7e7;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.features__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
}
.features__list li img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.features__list li span {
  font-size: clamp(13px, 1.8229166667vw, 14px);
  line-height: 1.4;
}

.features__button {
  padding: 8px 0px;
}
@media (min-width: 768px) {
  .features__button {
    padding: 16px 0px;
  }
}
@media (min-width: 768px) {
  .features__button a.btn-green {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 240px;
  }
}/*# sourceMappingURL=style.css.map */