.accommodation-carousel .swiper-slide {
  position: relative;
  overflow: hidden;
  border:border-box;
}

/* Dark overlay effect on hover */
.accommodation-carousel .swiper-slide img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0); /* Initially transparent */
  transition: background 0.3s ease-in-out;
}

.room-price-black {
  position: absolute;
  bottom: 25%;
  left: 5%;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.room-price-black:hover {
  color: white;
}

.accommodation-carousel .swiper-slide img {
  transition: all .7s ease-out;
}

.accommodation-carousel .swiper-slide img:hover::after {
  background: rgba(0, 0, 0, 0.4);/* Dark overlay on hover */
}

.accommodation-carousel .swiper-slide .hover-button {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: #FF7155;
  font-size: 14px;
  font-weight: 400;
  padding: 7px 20px;
  border: none;
  border-radius: 71px;
  opacity: 0;/* Hidden by default */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  cursor: pointer;
  text-transform: uppercase;
}
		/* Show button on hover */
		.accommodation-carousel .swiper-slide:hover .hover-button {
			opacity: 1;
			transform: translate(-50%, -50%) scale(1.1);/* Slight zoom-in */
		}
		/* Button hover effect */
		.accommodation-carousel .swiper-slide .hover-button:hover {
			background: #FF7155;
			color: white;
		}

.swiper2 .swiper-wrapper {
  height: 73vh;
  display: flex;
  width: 100% !important;
	margin: 0 !important; /* Ensure no extra margin */
	margin-left:15px !important;
  padding: 0 !important; /* Ensure no extra padding */
}

.swiper2.accommodation-carousel {
  width: 100%;
  height: 100%;
	overflow: hidden !important;
/*   padding-right: 2rem !important; */
}

.accommodation-carousel .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  position: relative;
  height: 570px;
	width: calc(45% - 30px) !important;
  margin: 0 15px;
  box-sizing: border-box;
	/*       max-width: 790px;
		margin: 0 1rem; */
}

.accommodation-carousel .swiper-slide img:hover {
  filter: brightness(50%);/* Darken the image */
}

.accommodation-carousel .swiper-slide img {
  display: block;
  width: 100%;
  border-radius: 8px;
  max-height: 458px;
}

.accommodation-carousel .swiper-slide h3 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 300 !important;
  font-family: "QuicheSans Bold";
  margin: 0 !important;
  line-height: 40px;
  margin: 1rem 0;
}

.accommodation-carousel .swiper-slide p {
  font-size: 18px;
  font-weight: 300 !important;
  margin: 0;
  line-height: 22px;
}

/*Swiper slide bar*/
div.swiper-scrollbar.swiper-scrollbar-horizontal{
	height:7px;
	 min-width: 500px !important; 
	cursor:pointer !important;
}
div.swiper-scrollbar.swiper-scrollbar-horizontal > div{
	background:var(--orange);
}

@media only screen and (min-width: 769px) {
    .accommodation-carousel .swiper-scrollbar {
        max-width: 300px;
        position: relative;
        left: 50% !important;
        bottom: 10% !important;
        transform: translateX(-50%);
        cursor: pointer;
    }
    .accommodation-carousel .swiper-scrollbar-drag {
        width: 73% !important;
        left: 0%;
        border-radius: 2px;
        background: var(--orange);
    }
}
/*Responsive for Slider*/
@media screen and (max-width: 1024px) {
    .accommodation-carousel .swiper-slide {
        width: 100% !important;
        margin: 15px 0; 
        height: 500px;
    }

    .accommodation-carousel .swiper-slide img {
        max-height: 350px; 
    }

    div.swiper-scrollbar.swiper-scrollbar-horizontal {
        min-width: unset !important;
    }

    .swiper2.accommodation-carousel {
        padding-right: 2rem !important;
    }
	.swiper2 .swiper-wrapper{
	 	width:100% !important;
	}
			.accommodation-carousel .swiper-scrollbar-drag {
        width: 32% !important;
    }
		.accommodation-carousel .swiper-slide .hover-button{
		top:40% !important;
	}
}
@media screen and (max-width: 500px) {
    .accommodation-carousel .swiper-slide h3 {
        font-weight: 500 !important;
    }

    .accommodation-carousel .swiper-slide p {
        font-size: 16px;
    }
	.accommodation-carousel .swiper-slide .hover-button{
		top:40% !important;
	}
}