.order__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 900px;
}
.order__left,
.order__right {
  width: 100%;
}
.order__right {
  padding: 25px 40px 25px 40px;
}
.product__img {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
}
.product-slider {
  width: 100%;
  height: 100%;
}
.product-slider .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
  transition: 0.8s;
}
.product-button-prev,
.product-button-next {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 10px;
  transform-origin: center;
  background-color: var(--white);
  will-change: transform;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-button-prev {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.product-button-prev img {
  transform: rotate(180deg);
}
.product-button-next {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.product-button-next::after {
  display: none;
}
.product-button-prev::after {
  display: none;
}
.product-button-prev:hover,
.product-button-next:hover {
  transform: scale(0.95);
  opacity: 0.91;
}
.product-button-next.swiper-button-disabled,
.product-button-prev.swiper-button-disabled {
  opacity: 0.35;
}
.swiper-pagination-bullet-active {
  background: #646464;
}
.swiper-pagination {
  background-color: #ffffff;
  width: fit-content !important;
  margin: 0 auto;
  left: 0;
  right: 0;
  border-radius: 50px;
  padding: 3px 6px 5px 6px;
}
.order__right span {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: var(--gray);
}
.order__rooms {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.order__rooms h6 {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-black);
  border-radius: 50px;
  padding: 11px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.order__right h2 {
  font-size: 35px;
  line-height: 46px;
  color: var(--primary-black);
  margin-bottom: 10px;
}
.order__right p {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 26px;
  font-weight: var(--font-regular);
  color: var(--primary-black);
  margin-bottom: 25px;
}
.order__price {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.order__price h4 {
  font-size: 35px;
  line-height: 46px;
  color: var(--primary-black);
}
@media (max-width: 991.98px) {
  .order__wrap {
    width: 100%;
  }
  .order__right {
    padding: 20px;
  }
  .order__price {
    flex-direction: column;
    gap: 20px;
    align-items: self-start;
  }
  .order__price button {
    width: 100%;
  }
  .order__rooms {
    gap: 5px;
  }
  .order__rooms h6 {
    font-size: 14px;
  }
  .order__right p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .product-button-prev,
  .product-button-next {
    width: 45px;
    height: 45px;
  }
  .order__price h4 {
    font-size: 30px;
  }
  .order__right h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
