.room-types {
  background: var(--yellow-gray-100);
  padding: var(--sp) 0 calc(var(--sp) * 2);
  color: var(--bg);
}

.room-types .section-head__title > * {
  justify-content: center;
}

.room-types .section-head__title ._row-1 {
  justify-content: space-between !important;
}

.room-types .tabs__btn {
  flex: 0 0 50%;
  border: 2px solid var(--bg);
}

.room-types .tabs__btn._active {
  background: var(--bg);
  color: var(--white);
}

.room-types__room {
  display: flex;
  gap: 60px;
}

.room-types__room-info {
  background: var(--yellow-gray-100);
  width: 400px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 2px 0;
}

.room-types__room-info:before {
  background: inherit;
  content: "";
  display: block;
  width: 50vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 99%;
  pointer-events: none;
  z-index: -1;
}

.room-types__room-description {
  flex: 1 1 auto;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
}

.room-types__room-price {
  max-width: 350px;
}

.room-types__room-price-label {
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 4px;
}

.room-types__room-price-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 135%;
}

.room-types__room-price-text b {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 700;
}

.room-types__room-price-text .price {
  font: 500 var(--h5)/115% var(--heading-font-family);
}

.room-types__room-gallery {
  flex: 0 0 auto;
  max-width: 780px;
  padding: 2px 0;
}

.room-types__room-gallery .swiper .swiper-pagination {
  background: var(--black-10);
}

.room-types__room-photo {
  aspect-ratio: 390/560;
}

@media (max-width: 1260px) {
  .room-types .section-head__title ._row-1 {
    padding: 0;
  }

  .room-types__room {
    gap: 32px;
  }

  .room-types__room-info {
    width: initial;
    flex: 1 1 auto;
    gap: 32px;
  }

  .room-types__room-description {
    font-weight: 300;
    font-size: 18px;
    line-height: 135%;
  }

  .room-types__room-price-text {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
  }

  .room-types__room-gallery {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .room-types__room {
    flex-direction: column;
  }

  .room-types__room-info {
    width: 100%;
    gap: 16px;
  }

  .room-types__room-description {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
  }

  .room-types__room-price-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
  }

  .room-types__room-price-text {
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
  }

  .room-types__room-gallery {
    width: 100%;
  }
}