.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 60px 30px;
}

.product__container {
  max-width: 1100px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.product__row {
  width: 60%;
}

.product__row:first-child {
  max-width: 650px;
  height: 100%;
}

.product__row:last-child {
  max-width: 390px;
}

.product__mobile {
  display: none;
}

.product__inner {
  margin-bottom: 20px;
}

.product__title {
  color: #231f20;
  font-size: 36px;
  font-style: normal;
  font-weight: 250;
  line-height: 120%;
  letter-spacing: 1.08px;
  margin-bottom: 10px;
}

.product__review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.product__review span {
  color: #231f20;
  font-size: 12px;
  font-style: normal;
  font-weight: 250;
  line-height: 100%;
  letter-spacing: 1px;
}

.product__sliders {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  max-height: 560px;
}

.product__small-slider {
  height: 100%;
  max-width: 80px;
  width: 100%;
}

.product__small-slider .product__slider-item {
  width: 100%;
  height: 100%;
}

.product__slider-item {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.product__slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product__big-slider {
  width: 100%;
}

.product__products {
  margin-bottom: 20px;
}

.product__products-title {
  margin-bottom: 10px;
  color: #231f20;
  font-size: 12px;
  font-style: normal;
  font-weight: 250;
  line-height: 120%;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.product__products-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
}

.product__products-item:nth-child(1) input:checked + label {
  background: #3cdbc0;
}

.product__products-item:nth-child(2) input:checked + label {
  background: #97d700;
}

.product__products-item:nth-child(3) input:checked + label {
  background: #ff585d;
}

.product__products-item:nth-child(4) input:checked + label {
  background: #7f50f9;
}

.product__products-item input {
  display: none;
}

.product__products-item label {
  color: #231f20;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 250;
  line-height: 100%;
  letter-spacing: 0.42px;
  padding: 10px 20px;
  border-radius: 1000px;
  border: 1px solid rgba(213, 213, 213, 0.5);
  background: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product__description {
  background: #f8f8f8;
  padding: 14px 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product__description-title {
  color: #231f20;
  font-size: 12px;
  font-style: normal;
  font-weight: 250;
  line-height: 120%;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product__description-content {
  color: #231f20;
  font-size: 16px;
  font-style: normal;
  font-weight: 250;
  line-height: 120%;
  letter-spacing: 0.48px;
}

.product__include {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  padding: 10px 0;
}

.product__include-title {
  color: #231f20;
  font-size: 12px;
  font-style: normal;
  font-weight: 250;
  line-height: 140%;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product__include-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 6px;
}

.product__include-item {
  display: flex;
  align-items: center;
  flex: 1 1 100%;
}

.product__include-item-icon {
  margin-right: 6px;
  max-width: 40px;
}

.product__include-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product__include-item-title {
  color: #231f20;
  font-size: 14px;
  font-style: normal;
  font-weight: 250;
  line-height: 120%;
  letter-spacing: 0.48px;
}

.product__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(213, 213, 213, 0.5);
}

.product__benefits-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.product__benefits-item-title {
  position: relative;
}

.product__benefits-item-title::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 50%;
  background: #e3e829;
  z-index: 1;
}

.product__benefits-item-title span {
  color: #231f20;
  font-size: 14px;
  font-style: normal;
  font-weight: 250;
  line-height: 130%;
  letter-spacing: 0.54px;
  position: relative;
  z-index: 2;
}

.product__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.product__price-product-name {
  color: #231f20;
  font-size: 20px;
  font-style: normal;
  font-weight: 250;
  line-height: 120%;
  letter-spacing: 0.6px;
}

.product__price-new {
  color: #231f20;
  font-size: 20px;
  font-style: normal;
  font-weight: 250;
  line-height: 120%;
  letter-spacing: 1px;
  padding-left: 10px;
  position: relative;
}

.product__price-new::before {
  content: "";
  width: 1px;
  background: #231f20;
  padding-left: 1px;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}

.product__btn {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 120%;
  letter-spacing: 0.45px;
  text-transform: capitalize;
  border-radius: 1000px;
  background: #231f20;
  border: 1px solid #231f20;
  padding: 15px 20px;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 224px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-bottom: 18px;
}

.product__btn:hover {
  background: #fff;
  color: #231f20;
}

.product__pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #231f20;
  font-size: 12px;
  font-style: normal;
  font-weight: 250;
  line-height: 120%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
}

.product__pay a {
  color: #231f20;
  text-decoration: underline;
}

.product .swiper-button-prev:after,
.product .swiper-rtl .swiper-button-next:after {
  color: #231f20;
  font-size: 30px;
}

.product .swiper-button-next:after,
.product .swiper-rtl .swiper-button-prev:after {
  color: #231f20;
  font-size: 30px;
}

@media (max-width: 1023px) {
  .product__row {
    width: 50%;
  }

  .product__row:first-child {
    height: auto;
  }

  .product__sliders {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    max-height: none;
    height: auto;
  }

  .product__small-slider {
    max-width: none;
  }
}

@media (max-width: 990px) {
  .product__title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .product__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product__title {
    text-align: center;
  }
  .product {
    padding: 50px 20px;
  }

  .product__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .product__row {
    width: 100%;
  }

  .product__row:first-child {
    max-width: 500px;
  }

  .product__row:last-child {
    max-width: 500px;
  }

  .product__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .product__title {
    font-size: 26px;
  }

  .product__review img {
    width: 104px;
  }

  .product__desktop {
    display: none;
  }

  .product__benefits {
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .product__benefits-item-title span {
    font-size: 16px;
  }

  .product__price {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .product__price-product-name {
    font-size: 18px;
  }

  .product__price-new {
    font-size: 18px;
  }

  .product__btn {
    max-width: none;
  }
}

@media (max-width: 500px) {
  .product__benefits-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 213px;
    flex: 0 1 213px;
  }
}

@media (max-width: 400px) {
  .product__products-item label {
    font-size: 12px;
    padding: 8px 10px;
  }
}

@media (max-width: 374px) {
  .product {
    padding: 40px 15px;
  }

  .product__title {
    font-size: 24px;
  }

  .product__products-title {
    font-size: 10px;
  }

  .product__description-title {
    font-size: 10px;
  }

  .product__description-content {
    font-size: 14px;
  }

  .product__benefits-item-title span {
    font-size: 14px;
  }

  .product__price-product-name {
    font-size: 16px;
  }

  .product__price-new {
    font-size: 16px;
  }
}
