@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.eot");
  src: url("../fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff"), url("../fonts/Inter-Regular.ttf") format("truetype"), url("../fonts/Inter-Regular.svg#Inter-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.eot");
  src: url("../fonts/Inter-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff"), url("../fonts/Inter-SemiBold.ttf") format("truetype"), url("../fonts/Inter-SemiBold.svg#Inter-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.eot");
  src: url("../fonts/Inter-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff"), url("../fonts/Inter-Bold.ttf") format("truetype"), url("../fonts/Inter-Bold.svg#Inter-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.eot");
  src: url("../fonts/Inter-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff"), url("../fonts/Inter-Medium.ttf") format("truetype"), url("../fonts/Inter-Medium.svg#Inter-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body {
  margin: 0;
  padding: 0;
  background-color: #F0EEEF;
}

body.modal-open {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

#modal_error .modal__body, #modal_success .modal__body {
  width: min(345px, 75%);
}
#modal_error .modal__content, #modal_success .modal__content {
  padding: 124px 0;
}

.product__details,
.product__gallery,
.product__related,
.product__reviews {
  min-width: 0;
}

.product .wrapper > * {
  min-width: 0;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1430px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1510px;
  }
}

.rating {
  --stars: 5;
  --rating-int: 0;
  --rating-frac: 0;
  --size: 18px;
  --gap: 5px;
  position: relative;
  display: inline-block;
  height: var(--size);
}

.rating__base,
.rating__fill {
  display: flex;
  gap: var(--gap);
}

.rating svg {
  width: var(--size);
  height: var(--size);
  flex: 0 0 auto;
  display: block;
}

.rating__base svg {
  fill: #E3E3E3;
}

.rating__fill svg {
  fill: #FFB300;
}

.rating__fill-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  width: calc(var(--rating-int) * var(--size) + var(--rating-int) * var(--gap) + var(--rating-frac) * var(--size));
}

.car-info-product-pg .one-prod-car-bt {
  width: auto;
}

.def-bt {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  border-radius: 13px;
  background-image: linear-gradient(90deg, #85be46 0%, #43aa3e 42%, #009636 67%, #007c2f 100%);
  font-size: 14px;
  font-weight: bold;
  color: #fff !important;
  height: 48px;
  border: none;
  line-height: 1.2em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: all 0.3s;
}

.one-prod-car-bt a {
  font-family: "Inter";
  margin-left: auto;
  margin-right: auto;
  border-radius: 38px;
  padding: 10px 24px;
  background: #18a661;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  transition: all 0.3s ease-in-out;
  height: auto;
  text-transform: capitalize;
}
.one-prod-car-bt a:hover {
  background: #1E6E37;
  box-shadow: none;
}

.item-like svg.active .hart {
  fill: #58A618;
}

/*Modals*/
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.modal.active {
  display: block;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal__content {
  z-index: 2;
  width: min(730px, 90%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 10px;
  padding: 40px 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal__body {
  font-family: "LM Serif";
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  width: min(526px, 75%);
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  color: #363636;
}
@media (max-width: 767px) {
  .modal__body {
    width: 95%;
  }
}
.modal__body .title {
  font-family: "LM Serif";
  font-weight: 500;
  font-size: 40px;
  line-height: 140%;
  text-align: center;
  color: #18A661;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .modal__body .title {
    font-size: 34px;
  }
}
.modal__body strong {
  font-family: "Inter";
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  vertical-align: middle;
  color: #363636;
}
.modal__body img {
  max-width: 219px;
  height: auto;
  object-fit: cover;
  margin-bottom: 40px;
}
.modal__body a {
  text-decoration: none;
  color: #18A661;
}
.modal__body .rating {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 20px;
}
.modal__body .star {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.modal__body .star svg path {
  fill: rgba(54, 54, 54, 0.3);
  transition: 0.2s ease;
}
.modal__body .star.active svg path,
.modal__body .star.hover svg path {
  fill: #FFB300;
}
.modal__body .rating-form {
  margin-top: 20px;
  font-family: "Arial";
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #757575;
}
.modal__body input, .modal__body textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-image-source: linear-gradient(180deg, #118937 0%, #6DB54A 100%);
  border-image-slice: 1;
  resize: none;
  margin-bottom: 20px;
}
.modal__body input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  padding: 10px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #118937 0%, #6DB54A 100%) border-box;
  position: relative;
  cursor: pointer;
}
.modal__body input[type=checkbox]:checked {
  background: linear-gradient(180deg, #118937 0%, #6DB54A 100%);
  border-color: transparent;
}
.modal__body input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 8px;
  margin: 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}
.modal__body fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.modal__body fieldset label {
  text-align: start;
}
.modal__body .rating-submit {
  display: block;
  padding: 10px 64px;
  color: #fff;
  border-radius: 38px;
  background-color: #18A661;
  margin: 20px auto;
  width: max-content;
  border: none;
  cursor: pointer;
  transition: all ease 0.3s;
}
.modal__body .rating-submit:hover {
  background-color: #1E6E37;
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .modal__content {
    width: 90%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.product__gallery {
  display: flex;
  gap: 10px;
  position: relative;
}
.product__gallery .nav-slider {
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  background: transparent;
  justify-content: space-between;
  z-index: 1000;
}
.product__gallery .nav-slider .prev-arrow {
  position: relative;
  left: 30px;
  border: none;
  background: transparent;
  padding: 0;
}
@media (max-width: 767px) {
  .product__gallery .nav-slider .prev-arrow {
    left: 10px;
  }
}
.product__gallery .nav-slider .next-arrow {
  position: relative;
  right: 30px;
  border: none;
  background: transparent;
  padding: 0;
}
@media (max-width: 767px) {
  .product__gallery .nav-slider .next-arrow {
    right: 10px;
  }
}
.product__gallery img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product__gallery-preview {
  flex: 3 1 25%;
  min-width: 0;
  max-width: 138px;
  gap: 10px;
  position: relative;
}
@media (max-width: 1024px) {
  .product__gallery-preview {
    flex: 3 1 20%;
  }
}
@media (max-width: 767px) {
  .product__gallery-preview {
    display: none !important;
  }
}
.product__gallery-preview .slick-list {
  overflow: hidden;
}
.product__gallery-preview .frame {
  width: 100%;
  position: relative;
  aspect-ratio: 1/1;
  background: #fff;
}
.product__gallery-preview .frame:first-child {
  margin-top: 0 !important;
}
.product__gallery-preview .slick-slide {
  border: 1px solid #fff;
  cursor: pointer;
  box-sizing: border-box;
  margin-bottom: 10px;
  max-width: 100%;
}
.product__gallery-preview .slick-slide.slick-current {
  border-image: linear-gradient(180deg, #118937 0%, #6DB54A 100%) 1;
}
.product__gallery-preview .slick-slide:last-child {
  margin-bottom: 0;
}
.product__gallery-preview .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product__gallery-preview .prev-arrow {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.product__gallery-preview .prev-arrow svg {
  max-width: 100%;
  height: auto;
  background: #fff;
  border-radius: 60px;
}
.product__gallery-preview .next-arrow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(270deg);
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.product__gallery-preview .next-arrow svg {
  max-width: 100%;
  height: auto;
  background: #fff;
  border-radius: 60px;
}
.product__gallery-main {
  flex: 3 1 582px;
  max-width: 582px;
  min-width: 0;
  aspect-ratio: 1;
  width: 100%;
  background-color: #fff;
  height: min-content;
  position: relative;
  padding: 20px;
}
@media (max-width: 1600px) {
  .product__gallery-main {
    height: auto;
    aspect-ratio: unset;
  }
}
@media (max-width: 1024px) {
  .product__gallery-main {
    height: auto;
    aspect-ratio: unset;
    max-width: 100%;
  }
}
.product__gallery-main .gallery-slider {
  top: 50%;
  transform: translateY(-50%);
}
.product__gallery-main .slick-track {
  position: relative;
}
.product__gallery-main .slick-track .slick-slide {
  aspect-ratio: 1;
  width: 100%;
}
@media (max-width: 1600px) {
  .product__gallery-main .slick-track .slick-slide {
    aspect-ratio: 1;
    display: block;
  }
}
.product__gallery-main .slick-track .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product__gallery-main .arrow-left {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.product__gallery-main .arrow-right {
  position: absolute;
  rigt: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.product__gallery-main .slick-arrow {
  cursor: pointer;
}

.product__details {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: stretch;
}
.product__details .tags {
  margin-top: 30px;
}
.product__details .tags ul {
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
}
@media (max-width: 767px) {
  .product__details .tags ul {
    gap: 5px;
  }
}
.product__details .tags ul li {
  list-style: none;
  padding: 6px 15px;
  border-radius: 38px;
  background-color: #AEE0C8;
  font-family: "Inter";
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #363636;
}
@media (max-width: 767px) {
  .product__details .tags ul li {
    font-size: 12px;
  }
}
.product__details .tags ul li a {
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}
.product__details .sku {
  margin: 0;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  vertical-align: middle;
  color: #575756;
}
.product__details .price {
  margin-top: 30px;
  display: flex;
  width: max-content;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 50px;
}
.product__details .price .wrapper {
  display: flex;
  flex-direction: column;
  width: min-content;
  gap: 5px;
  margin-top: 0;
  justify-content: flex-start;
  align-items: flex-start;
}
.product__details .price .wrapper .discount {
  display: flex;
  gap: 20px;
}
.product__details .price .wrapper .discount + .actual {
  margin-top: 5px;
}
.product__details .price .wrapper .total {
  display: inline-flex;
  gap: 2px;
  font-family: "Inter";
  font-size: 15.6px;
  line-height: 100%;
  vertical-align: middle;
  text-transform: lowercase;
  text-decoration: line-through;
  color: #9C9C9C;
}
.product__details .price .wrapper .value {
  border-radius: 40px;
  padding: 1px 6px;
  background-color: #FF0000;
  color: #fff;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  vertical-align: middle;
}
.product__details .price .wrapper .actual {
  font-family: "Inter";
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #363636;
}
@media (max-width: 767px) {
  .product__details .price .wrapper .actual {
    font-size: 22px;
  }
}
.product__details .storage p {
  margin: 0;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  vertical-align: middle;
  color: #575756;
}
@media (max-width: 767px) {
  .product__details .storage p {
    font-size: 15px;
  }
}
.product__buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 767px) {
  .product__buttons {
    gap: 10px;
    margin-top: 15px;
  }
}
.product__buttons .one-prod-car-bt {
  max-width: 264px;
  flex: 1;
}
.product__buttons .def-bt {
  width: 100%;
  box-sizing: border-box;
}
.product__buttons-like {
  display: block;
  width: 34px;
  height: 30px;
}
.product__buttons-like button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.product__buttons-like button svg {
  max-width: 100%;
  height: 100%;
  fill: transparent;
}
.product__buttons-like button svg.active {
  fill: #18A661;
}
.product__buttons-like button svg path[fill] {
  max-height: 100%;
  fill: transparent;
  stroke: #18A661;
}
.product__buttons-badge {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  background-color: #FFB300;
  padding: 4px 10px;
}
.product__delivery {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.product__delivery-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 101px;
}
@media (max-width: 1600px) {
  .product__delivery-info {
    column-gap: 80px;
  }
}
@media (max-width: 1260px) {
  .product__delivery-info {
    column-gap: 10px;
  }
}
@media (max-width: 767px) {
  .product__delivery-info {
    row-gap: 15px;
  }
}
.product__delivery-info .time {
  font-family: "Inter";
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
}
@media (max-width: 1560px) {
  .product__delivery-info .time {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .product__delivery-info .time {
    flex: unset;
  }
}
.product__delivery-info .time span {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #575756;
}
.product__delivery-info .delivery-price {
  flex: 1;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .product__delivery-info .delivery-price {
    flex: unset;
  }
}
.product__delivery-info .delivery-price .title {
  font-family: "Inter";
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
  color: #575756;
  margin: 0;
  position: relative;
}
.product__delivery-info .delivery-price .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("../../img/car-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.product__delivery-info .delivery-price p {
  margin: 0;
  font-family: "Inter";
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  color: #575756;
}
.product__delivery-operator {
  padding: 15px 0;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}
.product__delivery-operator .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  vertical-align: middle;
  color: #575756;
}
.product__delivery-operator .item:first-child {
  margin-top: 0;
}
.product__delivery-payment p {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  vertical-align: middle;
  color: #575756;
  margin: 5px 0 0;
}
.product__summary {
  font-family: "Inter";
  background-color: #fff;
  padding: 30px 30px 57px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .product__summary {
    padding: 20px 20px 47px;
  }
}
.product__summary .reviews {
  display: flex;
  align-items: center;
  gap: 15px;
  align-self: start;
}
.product__summary .reviews span {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  vertical-align: middle;
  color: #575756;
}
.product__summary .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .product__summary .head {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.product__summary .head__icon {
  display: block;
  width: 62px;
  height: 39px;
}
.product__summary .head__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product__summary .head h1 {
  margin: 0;
  padding: 0 55px 0 0;
  flex: 1;
  font-family: "Inter";
  font-weight: 600;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 130%;
  vertical-align: middle;
}
@media (max-width: 1600px) {
  .product__summary .head h1 {
    padding: 0 30px 0 0;
  }
}
@media (max-width: 767px) {
  .product__summary .head h1 {
    font-size: 26px;
    padding: 0;
    letter-spacing: -0.7px;
  }
}
.product__summary .grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  grid-template-areas: unset;
}
@media (max-width: 767px) {
  .product__summary .grid {
    margin-top: 20px;
    grid-template-columns: 1fr;
    row-gap: 15px;
    justify-items: start;
  }
}

.breadcrumbs {
  padding: 20px 0 163px;
  background-image: var(--image-url);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  margin-top: 169px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 122px;
  }
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding: 20px 0 43px;
    margin-top: 140px;
  }
}
.breadcrumbs:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.breadcrumbs .container {
  position: relative;
  z-index: 2;
}
.breadcrumbs__list {
  display: inline-flex;
  flex-wrap: wrap;
  padding-left: 0;
  row-gap: 10px;
  column-gap: 5px;
  margin: 0;
}
.breadcrumbs__list li {
  list-style: none;
  text-transform: uppercase;
  color: #FCD666;
  font-family: "Arial";
  font-weight: 700;
  font-size: 11px;
  line-height: 100%;
  vertical-align: middle;
  position: relative;
  display: inline-flex;
  gap: 0.8rem;
}
.breadcrumbs__list li:not(:last-of-type) a:after {
  content: "/";
}
.breadcrumbs__list li a {
  display: inline-flex;
  color: #fff;
  text-decoration: none;
  column-gap: 5px;
}

.product__related {
  background-color: #fff;
  padding: 20px;
}
.product__related .d-flex {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .product__related .d-flex .nav-slider {
    display: none;
  }
}
.product__related .d-flex button {
  border: none;
  background-color: transparent;
  padding: 0;
}
.product__related .d-flex button:last-child {
  margin-left: 10px;
}
.product__related h2 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #363636;
  margin: 0;
}
@media (max-width: 640px) {
  .product__related h2 {
    font-size: 22px;
  }
}
.product__related .products {
  margin-top: 30px;
}
.product__related .products .item {
  height: auto;
  display: flex !important;
  padding: 0 7.5px;
}
.product__related .products .item:first-child {
  margin-left: 0;
}
.product__related .products .item-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 20px 10px;
  border: 1px solid #EBEBEB;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
@media (max-width: 1439px) {
  .product__related .products .item-wrapper {
    padding: 20px 20px;
  }
}
@media (max-width: 767px) {
  .product__related .products .item-wrapper {
    padding: 20px 10px;
  }
}
.product__related .products .item-wrapper > div:nth-child(2) {
  margin-top: auto;
}
.product__related .products .item .frame {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 110px;
}
.product__related .products .item .frame a {
  width: 79%;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .product__related .products .item .frame a {
    width: 90%;
  }
}
.product__related .products .item .frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}
.product__related .products .item-name {
  font-family: "Inter";
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  color: #363636;
  margin: 12px 0 0;
}
.product__related .products .item-price {
  font-family: "Inter";
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  color: #363636;
  margin-bottom: 12px;
}
.product__related .products .item-like {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}
.product__related .products .item-like button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.product__related .products .slick-list {
  margin: 0 -7.5px;
}
.product__related .products .slick-track {
  display: flex !important;
}
.product__related .slick-dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  padding-left: 0;
}
.product__related .slick-dots li {
  list-style: none;
}
.product__related .slick-dots li button {
  font-size: 0;
  border: none;
  background-color: transparent;
  border-radius: 36px;
  position: relative;
}
.product__related .slick-dots li button:before {
  content: "•";
  position: absolute;
  top: 53%;
  left: 53%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 18px;
  color: #009636;
  display: block;
}
.product__related .slick-dots li.slick-active button {
  background-color: rgba(88, 166, 24, 0.5019607843);
  width: 16px;
  height: 16px;
}
.product__related .slick-dots li.slick-active button:before {
  font-size: 32px;
}

.product__reviews {
  padding: 20px;
  background-color: #fff;
  flex: 1;
  margin-top: auto;
}
.product__reviews .head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.product__reviews .head h2 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #363636;
  margin: 0;
}
.product__reviews .head .count {
  color: #575756;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}
.product__reviews .head .review-btn {
  padding: 7px 20px;
  color: #18A661;
  border-radius: 38px;
  border: 1px solid #18A661;
  background-color: transparent;
  font-family: "Inter";
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
}
.product__reviews .reviews {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .product__reviews .reviews {
    margin-top: 15px;
  }
}
.product__reviews .reviews .average {
  font-family: "Inter";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  vertical-align: middle;
  color: #363636;
}
.product__reviews .reviews__items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .product__reviews .reviews__items {
    margin-top: 15px;
  }
}
.product__reviews .reviews__items .item {
  padding: 20px 0;
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .product__reviews .reviews__items .item {
    padding: 10px 0;
  }
}
.product__reviews .reviews__items .item:last-child {
  border-bottom: none;
}
.product__reviews .reviews__items .item .rating {
  --size: 12px;
}
.product__reviews .reviews__items .item-head {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 20px;
}
.product__reviews .reviews__items .item-head .author_name {
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #363636;
}
.product__reviews .reviews__items .item-head .date {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #575756;
}
.product__reviews .reviews__items .item-text p {
  margin: 0;
  padding: 0;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  vertical-align: middle;
  color: #575756;
}
.product__reviews .reviews__items .item-answer {
  padding: 12px 20px 0;
}
.product__reviews .reviews__items .item-answer .head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.product__reviews .reviews__items .item-answer .head .author {
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  vertical-align: middle;
  color: #363636;
  padding-left: 35px;
  position: relative;
}
.product__reviews .reviews__items .item-answer .head .author::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: 25px;
  height: 19px;
  background-image: url("../../img/Logo.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.product__reviews .reviews__items .item-answer .head .date {
  color: #575756;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  vertical-align: middle;
}
.product__reviews .reviews__items .item-answer .text {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  vertical-align: middle;
  color: #575756;
}
.product__reviews .reviews__items .item:has(.item-answer) .item-text {
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 12px;
}
.product__reviews .load-more {
  margin: 10px auto 0;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #18A661;
  font-family: "Inter";
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}

.product__description {
  padding: 20px;
  background-color: #fff;
}
.product__description:last-child {
  margin-top: auto;
  flex: 1;
}
.product__description .title {
  font-family: "Inter";
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #363636;
  margin-top: 0;
}
.product__description .text {
  font-family: "Inter";
  font-weight: 400;
  line-height: 140%;
  color: #575756;
  font-size: 16px;
}
.product__description .text strong {
  font-weight: 600;
  color: #363636;
}
.product__description .text h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #363636;
}
.product__description .text ul {
  margin: 15px 0;
}
.product__description .text ul li::marker {
  color: #18A661;
  font-size: 20px;
}

.social-links {
  margin-top: 20px;
  padding-bottom: 100px;
}
@media (max-width: 1024px) {
  .social-links {
    padding: 20px 20px 50px;
  }
}
@media (max-width: 767px) {
  .social-links {
    padding: 20px 0 50px;
  }
}
.social-links .wrapper {
  background-color: #fff;
  padding: 50px 76.5px;
}
@media (max-width: 1024px) {
  .social-links .wrapper {
    padding: 20px;
  }
}
.social-links .wrapper .head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .social-links .wrapper .head {
    gap: 10px;
  }
}
.social-links .wrapper .head .title h2 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-transform: uppercase;
  color: #363636;
  margin: 0;
}
@media (max-width: 767px) {
  .social-links .wrapper .head .title h2 {
    font-size: 22px;
    text-align: center;
  }
}
.social-links .wrapper .head .logo {
  display: block;
  width: 62px;
  height: auto;
  aspect-ratio: 2/1.26;
  background: transparent;
}
.social-links .wrapper .head .logo img {
  display: flex;
  width: 62px;
  height: 39px;
  object-fit: cover;
}
.social-links .social-links__slider .item {
  position: relative;
  width: max-content;
}
.social-links .social-links__slider .item img {
  display: block;
  max-width: 100%;
  height: auto;
}
.social-links .social-links__slider .item .icon {
  position: absolute;
  bottom: 0;
  right: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, rgba(5, 33, 0, 0) -30.23%, rgba(5, 33, 0, 0.4) 96.5%);
  border-top-left-radius: 10px;
}

/*--------------------------------------------*/
.social-links__slider {
  margin: 30px -3px 0;
}

.social-links__slider .item {
  padding: 0 3px;
  box-sizing: border-box;
}

.social-links__slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .social-links__slider {
    width: calc(100% + (100vw - 100%) / 2);
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
  .social-links__slider .slick-list {
    overflow: hidden;
    padding-right: 60px !important;
  }
}
@media (max-width: 600px) {
  .social-links__slider .slick-list {
    padding-right: 50px !important;
  }
}
.product {
  padding: 40px 0 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .product {
    padding: 10px 0 0;
  }
}
.product .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .product .wrapper {
    grid-template-columns: 1fr;
  }
}
.product .product__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .product .product__left {
    display: contents;
  }
  .product .product__gallery {
    order: 1;
  }
  .product .product__details {
    order: 2;
  }
  .product .product__related {
    order: 3;
  }
  .product .product__reviews {
    order: 4;
  }
}

/*# sourceMappingURL=product.css.map */
