.product {
  position: relative;
  z-index: 0;
  margin-top: 50px;
}

.product__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0px 15px;
}

.product__title {
  font-weight: 700;
  line-height: 120%;
  color: #1d1e20;
  font-size: 46px;
}

.product__top {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
}

@media (max-width: 1020px) {
  .product__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .product {
    position: relative;
    z-index: 0;
    margin-top: 150px;
    margin-bottom: 40px;
  }
}

.product__slider {
  width: 952px;
  height: 576px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

@media (max-width: 1360px) {
  .product__slider {
    width: 666px;
    height: 403px;
  }
}

@media (max-width: 992px) {
  .product__slider {
    width: 100%;
    height: auto;
    border-radius: 0;
  }
}

.product__body {
  width: 952px;
}

.product__body h3 {
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .product__body {
    margin-top: 40px;
    width: 100%;
  }
}

.product__line {
  margin: 20px 0px;
  border-bottom: 1px solid #e1e1e1;
}

.product__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.product__wrapper {
  display: -ms-grid;
  display: grid;
  height: 100%;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: column;
}

@media (max-width: 1360px) {
  .product .cards-padingation {
    bottom: 20px;
  }
}

.product__reg {
  color: #aab1b7;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  margin-top: 18px;
  display: block;
  padding-left: 660px;
  text-decoration: underline;
}

@media (max-width: 1360px) {
  .product__reg {
    padding-left: 512px;
  }
}

@media (max-width: 992px) {
  .product__reg {
    padding-left: 20px;
    margin-top: 13px;
  }
}

@media (max-width: 767px) {
  .product__reg {
    padding-left: 0;
  }
}

.product__slide {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* (9 / 16) * 100% */
  overflow: hidden;
}

.product__slide img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .product__slide img {
    border-radius: 0;
  }
}

.product__vertical {
  width: 37% !important;
  aspect-ratio: 9 / 16;
  transform: translate(-50%, 0);
  left: 50% !important;
}

.product__arrow_next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  position: absolute;
  background-color: var(--primary-color);
  cursor: pointer;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 20px;
}

.product__arrow_next svg {
  width: 40px;
}

.product__arrow_next:hover {
  background-color: var(--primary-color);
}

.product__arrow_prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  background-color: var(--primary-color);
  cursor: pointer;
  top: 50%;
  left: 20px;
}

.product__arrow_prev svg {
  width: 40px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.product__arrow_prev:hover {
  background-color: var(--primary-color);
}

.product__sidebar {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  background-color: #f3f3f3;
  padding: 30px;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .product__sidebar {
    width: 100%;
  }
}

.product__sidebar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.product__price {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.product__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.product__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media (max-width: 390px) {
  .product__row {
    font-size: 14px;
  }
}

.product__name {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .product__name {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}

.product__value {
  color: #42494f;
}
._btn {
  cursor: pointer;
  width: 100%;
  height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  background-color: var(--primary-color);
  border-radius: 7px;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

._btn:hover {
  background-color: var(--primary-color);
}

._btn._secondary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: #ffffff;
}

._btn._secondary:hover {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: #ffffff;
}
._h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 100%;
}
