.single-room_row {
  position: relative;
}

.single-room_row:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--_primitives---colors--latte-hover);
  transition: height 0.3s ease-in-out;
  z-index: -1;
}

.single-room_row:hover:before {
  height: 100%;
}

.single-room_icon-box {
  position: relative;
  padding-bottom: 0.5rem;
}

.single-room_icon-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background-color: var(--_primitives---colors--gold);
  transition: width 0.3s ease-in-out;
}

.single-room_icon-box:hover:before {
  width: 100%;
}

.other-rooms_slider {
  position: relative;
}

.other-rooms_slider:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--_primitives---colors--latte);
  z-index: 1;
}

.other-rooms_slider .swiper-slide {
  flex: 0 0 auto;
}
