@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Poppins", sans-serif;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
}

small {
  font-size: 0.875rem;
}

strong {
  font-weight: 700;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 1024px) {
  .container {
    max-width: 1168px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.hidden {
  display: none !important;
}

@media (max-width: 1023px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hidden-desktop {
    display: none !important;
  }
}

.width-100 {
  width: 100%;
}

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

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

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

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .hero .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

.hero__gallery {
  width: 100%;
}
@media (min-width: 1024px) {
  .hero__gallery {
    flex: 0 0 calc(54% - 24px);
    height: 480px;
  }
}

.hero__info {
  width: 100%;
}
@media (min-width: 1024px) {
  .hero__info {
    flex: 1;
    order: -1;
  }
}

.gallery {
  display: flex;
  width: 100%;
  user-select: none;
}
.gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  background: #e0e0e0;
}
.gallery__main-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__main-slide {
  flex: 0 0 100%;
  height: 100%;
}
.gallery__main-slide img,
.gallery__main-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  z-index: 2;
  color: #333333;
}
.gallery__arrow svg {
  width: 16px;
  height: 16px;
}
.gallery__arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}
.gallery__arrow--prev {
  left: 10px;
}
.gallery__arrow--next {
  right: 10px;
}
.gallery__thumbs {
  display: none;
}
.gallery__thumbs-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
  background: #e0e0e0;
  position: relative;
}
.gallery__thumb img,
.gallery__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.gallery__thumb--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='rgba(0,0,0,0.35)'/%3E%3Cpolygon points='16,12 30,20 16,28' fill='white'/%3E%3C/svg%3E")
    center/28px no-repeat;
}
.gallery__thumb:hover {
  opacity: 0.8;
}
.gallery__thumb--active {
  border-color: #000000;
  opacity: 1;
}
@media (min-width: 1024px) {
  .gallery {
    gap: 12px;
    height: 100%;
  }
  .gallery__main {
    aspect-ratio: unset;
    flex: 1;
    min-width: 0;
    height: 100%;
    width: auto;
  }
  .gallery__thumbs {
    display: flex;
    flex-direction: column;
    width: 88px;
    height: 480px;
    overflow: hidden;
    flex-shrink: 0;
  }
}

.hero {
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #fafafa;
}
.hero__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__info-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__info-rating-stars {
  width: 86px;
  height: auto;
}
.hero__info-rating-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #666666;
}
.hero__info-title {
  font-weight: 900;
  font-style: Black;
  font-size: 24px;
  line-height: 130%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 8px;
}
.hero__info-subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  vertical-align: middle;
  color: #666666;
}
.hero__info-features {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.hero__info-feature {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero__info-feature-icon {
  width: 20px;
  height: 20px;
  object-fit: cover;
}
.hero__info-feature-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
}
.hero__info-satisfied {
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.hero__info-satisfied-customers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-bottom: 8px;
  width: 100%;
  border-bottom: #e9e9e9 1px solid;
}
.hero__info-satisfied-image {
  height: 20px;
  width: auto;
}
.hero__info-satisfied-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  vertical-align: middle;
  color: #666666;
}
.hero__info-button {
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16.5px 32px;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background-color: #0d04ff;
  color: #ffffff;
  transition: background-color 0.2s ease;
}
.hero__info-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 8px;
  justify-items: center;
  align-items: start;
}
.hero__info-benefit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.hero__info-benefits-icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.hero__info-benefits-text {
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  line-height: 130%;
  text-align: center;
  color: #666666;
}
@media (min-width: 1024px) {
  .hero__info-title {
    font-size: 32px;
  }
  .hero__info-satisfied {
    padding: 9px 16px;
    flex-direction: row;
  }
  .hero__info-satisfied-customers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-bottom: 0;
    width: unset;
    border-bottom: none;
    padding-right: 16px;
    /* border-right: #e9e9e9 1px solid; */
  }
  .hero__info-benefits {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .hero__info-benefit {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .hero__info-benefits-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
  }
  .hero__info-benefits-text {
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    line-height: 130%;
    text-align: center;
    color: #666666;
  }
}

.satisfaction {
  padding-block: 56px;
}
.satisfaction__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .satisfaction__title {
    font-size: 32px;
  }
}
.satisfaction__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #666666;
  margin-bottom: 40px;
}
.satisfaction__subtitle::after {
  content: "";
  display: block;
  width: 100px;
  height: 7px;
  border-radius: 10px;
  background-color: #d9d9d9;
  margin: 16px auto 0;
}
.satisfaction__content {
  display: flex;
  gap: 40px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .satisfaction__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.satisfaction__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 360px;
}
.satisfaction__item-image {
  width: 100%;
  height: 358px;
  width: auto;
  object-fit: cover;
}
.satisfaction__item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.satisfaction__item-rating {
  width: 84px;
  height: auto;
  margin-bottom: 16px;
}
.satisfaction__item-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #1c2b54;
  margin-bottom: 8px;
}
.satisfaction__item-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #666666;
}

.footer {
  background-color: #000000;
  padding-block: 40px;
}
.footer__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .footer__main {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 1024px) {
  .footer__brand {
    max-width: 401px;
    align-items: flex-start;
  }
}
.footer__logo-image {
  height: 28px;
  width: auto;
}
.footer__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #bdbdbd;
}
@media (min-width: 1024px) {
  .footer__text {
    text-align: left;
  }
}
.footer__links {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  .footer__links {
    text-align: left;
    align-items: flex-end;
  }
}
.footer__modals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
@media (min-width: 1024px) {
  .footer__link {
    text-align: left;
  }
}
.footer__link:hover {
  opacity: 0.7;
}
.footer__email {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #ffffff;
  transition: opacity 0.2s ease;
  margin-top: 8px;
}
.footer__email:hover {
  opacity: 0.7;
}

.rights__content {
  padding-block: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .rights__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.rights__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
}
.rights__cards {
  width: 306px;
}
.header__announcement {
  background-color: #f6f6f9;
  padding: 8px 0;
}
.header__announcement .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.header__announcement-country {
  display: flex;
  align-items: center;
  gap: 8px;
  display: none;
}
.header__announcement-country-image {
  width: 16px;
  height: 16px;
  object-fit: cover;
}
.header__announcement-country-text {
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  line-height: 130%;
  color: #000000;
}
.header__announcement-features {
  display: flex;
  gap: 16px;
  margin-left: auto;
}
.header__announcement-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__announcement-feature-icon {
  width: 16px;
  height: 16px;
  object-fit: cover;
}
.header__announcement-feature-text {
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  line-height: 130%;
  color: #000000;
}
.header__brand {
  background: #ffffff;
  padding: 20px 0;
}
.header__brand .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header__logo-image {
  height: 28px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header {
  /* ── Desktop list — hidden on mobile ── */
}
.header__nav-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header {
  /* ── Mobile: bag icon ── */
}
.header__nav-bag {
  display: flex;
  align-items: center;
}
.header__nav-bag img {
  width: 20px;
  height: 20px;
}
.header {
  /* ── Mobile: burger button ── */
}
.header__nav-burger {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header__nav-burger img {
  width: 24px;
  height: 24px;
}
@media (min-width: 1024px) {
  .header__announcement .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
  }
  .header__announcement-country-text {
    font-size: 14px;
  }
  .header__announcement-feature-text {
    font-size: 14px;
  }
  .header {
    /* Hide mobile-only elements */
  }
  .header__nav-bag,
  .header__nav-burger {
    display: none;
  }
  .header {
    /* Show desktop nav list */
  }
  .header__nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .header__nav-link {
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
    transition: opacity 0.2s ease;
  }
  .header__nav-link:hover {
    opacity: 0.6;
  }
  .header {
    /* Bag icon in desktop list */
  }
  .header__nav-link--bag img {
    width: 20px;
    height: 20px;
    display: block;
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.mobile-nav--open {
  display: block;
}
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}
.mobile-nav__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #000000;
  margin-bottom: 24px;
}
.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav__link {
  display: block;
  padding: 12px 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.mobile-nav__link:hover {
  opacity: 0.7;
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.product {
  background-color: #fafafa;
  padding-block: 56px;
}
.product__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #1341ae;
  margin-bottom: 16px;
}
.product__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #666666;
  margin-bottom: 40px;
}
.product__subtitle::after {
  content: "";
  display: block;
  width: 100px;
  height: 7px;
  border-radius: 10px;
  background-color: #d9d9d9;
  margin: 16px auto 0;
}
.product__info {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
}
.product__benefits {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.product__benefits-item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.product__benefits-icon {
  width: 49px;
  height: 49px;
  object-fit: cover;
}
.product__benefits-text {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 130%;
  color: #333333;
}
@media (min-width: 1024px) {
  .product__title {
    font-size: 32px;
  }
  .product__info {
    width: 100%;
    gap: 24px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .product__image {
    order: 0;
  }
  .product__image-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
  }
  .product__benefits--left {
    order: -1;
  }
  .product__benefits--right {
    order: 1;
  }
}

.goals {
  padding-block: 56px;
}
.goals__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #1341ae;
  margin-bottom: 16px;
}
.goals__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  vertical-align: middle;
  color: #666666;
  margin-bottom: 40px;
}
.goals__subtitle::after {
  content: "";
  display: block;
  width: 100px;
  height: 7px;
  border-radius: 10px;
  background-color: #d9d9d9;
  margin: 16px auto 0;
}
.goals__content {
  display: flex;
  gap: 40px;
  flex-direction: column;
  align-items: center;
}
.goals .goal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  gap: 40px;
}
.goals .goal__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 130%;
  color: #1341AE;
}
.goals .goal__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 7px;
  border-radius: 10px;
  background-color: #d9d9d9;
  margin: 16px auto 0;
}
.goals .goal__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: left;
  color: #333333;
  margin-top: 24px;
}
.goals .goal__button {
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16.5px 32px;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background-color: #0d04ff;
  color: #ffffff;
  margin-top: 24px;
  transition: background-color 0.2s ease;
}
.goals .goal__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.goals .goal__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.goals .goal__item-icon {
  width: 52px;
  height: 52px;
  object-fit: cover;
}
.goals .goal__item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: flex-start;
}
.goals .goal__item-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #333333;
}
.goals .goal__item-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #666666;
  text-align: left;
}
@media (min-width: 1024px) {
  .goals__title {
    font-size: 32px;
  }
  .goals .goal {
    flex-direction: row;
    align-items: center;
  }
  .goals .goal__image {
    max-width: 480px;
    height: auto;
    object-fit: cover;
  }
  .goals .goal__title {
    font-size: 32px;
  }
  .goals .goal__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
  }
  .goals .goal__button {
    max-width: 250px;
  }
  .goals .goal__reversed {
    flex-direction: row-reverse;
  }
  .goals .goal__list {
    margin-top: 40px;
  }
}

.enjoy {
  padding-block: 56px;
  background-color: #f8f8f8;
}
.enjoy__title {
  font-weight: 900;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #1341ae;
  margin-bottom: 16px;
}
.enjoy__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #666666;
  margin-bottom: 40px;
}
.enjoy__subtitle::after {
  content: "";
  display: block;
  width: 100px;
  height: 7px;
  border-radius: 10px;
  background-color: #d9d9d9;
  margin: 16px auto 0;
}
.enjoy__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #666666;
  margin: 0 auto 40px;
}
.enjoy__content {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: center;
}
.enjoy__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  width: 100%;
}
.enjoy__item-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #1c2b54;
  margin-bottom: 10px;
  margin-top: 16px;
}
.enjoy__item-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #666666;
}
.enjoy__item-image {
  width: 100%;
  max-width: 85px;
  height: auto;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .enjoy__title {
    font-size: 32px;
  }
  .enjoy__content {
    flex-direction: row;
    align-items: stretch;
  }
  .enjoy__item {
    width: 100%;
  }
}

.steps {
  padding-block: 56px;
}
.steps__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #1341ae;
  margin-bottom: 16px;
}
.steps__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #666666;
  margin-bottom: 40px;
}
.steps__subtitle::after {
  content: "";
  display: block;
  width: 100px;
  height: 7px;
  border-radius: 10px;
  background-color: #d9d9d9;
  margin: 16px auto 0;
}
.steps__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #666666;
  margin: 0 auto 40px;
}
.steps__content {
  display: flex;
  gap: 40px;
  flex-direction: column;
  align-items: center;
}
.steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
}
.steps .step .step__image {
  width: 100%;
  height: 300px;
}
.steps .step__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
}
.steps .step__heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.steps .step__icon {
  width: 32px;
  height: 32px;
  object-fit: cover;
}
.steps .step__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: #000000;
}
.steps .step__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  vertical-align: middle;
  color: #666666;
}
@media (min-width: 1024px) {
  .steps__title {
    font-size: 32px;
  }
  .steps__content {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.stay-cool {
  padding-block: 56px;
  background-color: #f8f8f8;
}
.stay-cool__title {
  font-weight: 900;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #1341ae;
  margin-bottom: 16px;
}
.stay-cool__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #666666;
  margin-bottom: 40px;
}
.stay-cool__subtitle::after {
  content: "";
  display: block;
  width: 100px;
  height: 7px;
  border-radius: 10px;
  background-color: #d9d9d9;
  margin: 16px auto 0;
}
.stay-cool__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #666666;
  margin: 0 auto 40px;
}
.stay-cool .stay-cool_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 500px) {
  .stay-cool .stay-cool_content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .stay-cool .stay-cool_content {
    grid-template-columns: repeat(6, 1fr);
  }
}
.stay-cool .stay-cool_content .stay-cool_item img {
  width: 56px;
  height: 56px;
  margin: 0 auto;
}
.stay-cool .stay-cool_content .stay-cool_item p {
  color: #333;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 20.8px */
  margin-top: 16px;
  width: 100%;
}
.why {
  padding-block: 56px;
  background-color: #fafafa;
}
.why__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  margin-bottom: 16px;
  color: #1341ae;
}
@media (min-width: 1024px) {
  .why__title {
    font-size: 32px;
  }
}
.why__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  max-width: 740px;
  margin: 0 auto 40px;
  color: #666666;
}
.why__subtitle::after {
  content: "";
  display: block;
  width: 100px;
  height: 7px;
  border-radius: 10px;
  background-color: #d9d9d9;
  margin: 16px auto 0;
}
.why__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #666666;
}
.why__table {
  display: flex;
  flex-direction: column;
}
.why__head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 14px 0;
}
.why__head-label {
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  line-height: 130%;
  color: #1341ae;
}
@media (min-width: 1024px) {
  .why__head-label {
    font-size: 32px;
  }
}
.why__head-col--product {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why__head-col--product img {
  height: 90px;
  width: auto;
}
@media (min-width: 1024px) {
  .why__head-col--product img {
    height: 240px;
  }
}
.why__head-col--other {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e1e6f5;
  gap: 8px;
  border-radius: 8px;
  height: 100%;
  width: 100%;
  max-width: 90px;
  max-height: 90px;
  justify-self: center;
}
.why__head-col--other img {
  width: 18px;
  height: auto;
}
@media (min-width: 1024px) {
  .why__head-col--other img {
    width: 57px;
  }
}
@media (min-width: 1024px) {
  .why__head-col--other {
    gap: 24px;
    max-width: 240px;
    max-height: 240px;
  }
}
.why__head-col--other span {
  font-weight: 500;
  font-size: 10px;
  line-height: 130%;
  text-align: center;
  vertical-align: middle;
  color: #333333;
}
@media (min-width: 1024px) {
  .why__head-col--other span {
    font-size: 16px;
  }
}
.why__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 14px 12px;
}
.why__row:nth-child(even) {
  background-color: #e1e6f5;
}
.why__row:nth-child(odd) {
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .why__row:nth-child(2) {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .why__row:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
.why__cell {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__cell img {
  height: 20px;
  width: auto;
}
.why__cell--feature {
  justify-content: flex-start;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #333333;
}

.award {
  margin-top: 40px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.3019607843);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .award {
    flex-direction: row;
    justify-content: space-between;
    max-width: 930px;
    justify-self: center;
  }
}
.award__image {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.award__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.award__rating {
  height: 16px;
  width: auto;
}
.award__product-image {
  width: 122px;
  height: auto;
  object-fit: cover;
}
.award__title {
  font-weight: 900;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #333333;
}
.award__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #666666;
}
.award__moneyback-image {
  width: 104px;
  height: auto;
  object-fit: cover;
}

.faq {
  padding-block: 40px;
}
.faq__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #1341ae;
  margin-bottom: 40px;
}
.faq__title::after {
  content: "";
  display: block;
  width: 100px;
  height: 7px;
  border-radius: 10px;
  background-color: #d9d9d9;
  margin: 16px auto 0;
}
@media (min-width: 1024px) {
  .faq__title {
    font-size: 32px;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__item {
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
  border-radius: 6px;
  padding: 16px;
}
.faq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  cursor: pointer;
  text-align: left;
}
.faq__question {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  text-transform: capitalize;
  color: #333333;
}
.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__item.is-open .faq__body {
  max-height: 260px;
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  padding-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000000;
}

.bottom {
  background-color: #f3f5fb;
  padding-block: 24px;
}
.bottom__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  row-gap: 24px;
  column-gap: 0;
}
@media (min-width: 1024px) {
  .bottom__features {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, auto);
  }
}
.bottom__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bottom__feature-image {
  width: 40px;
  height: auto;
}
.bottom__feature-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  text-align: center;
  color: #666666;
}

.sticky-checkout {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #000000;
  padding-block: 12px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.sticky-checkout--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.sticky-checkout__content {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.sticky-checkout__product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticky-checkout__product-image {
  width: 48px;
  height: auto;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .sticky-checkout__product-image {
    width: 56px;
  }
}
.sticky-checkout__product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sticky-checkout__product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-checkout__product-rating-stars {
  height: 12px;
  width: auto;
}
@media (min-width: 1024px) {
  .sticky-checkout__product-rating-stars {
    height: 16px;
  }
}
.sticky-checkout__product-rating-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-transform: capitalize;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .sticky-checkout__product-rating-text {
    font-size: 16px;
  }
}
.sticky-checkout__product-brand {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .sticky-checkout__product-brand {
    font-size: 20px;
  }
}
.sticky-checkout__button {
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: #0d04ff;
  color: #ffffff;
  transition: background-color 0.2s ease;
  animation: pulse-btn 2s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .sticky-checkout__button {
    font-size: 18px;
    padding: 16px 32px;
  }
}

@keyframes pulse-btn {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
