/*===========================================
  Destinations Slider & Swiper Setup
===========================================*/
.destinations-slider {
/*   position: relative; */
  padding: 40px 0;
	overflow: hidden;
}

.destinations-slider .swiper-pagination{
	display:none!important
}

.destinations-slider .swiper-container {
  width: 100%;
  overflow: hidden; /* Prevent slide overflow */
}

.destinations-slider .swiper-wrapper {
  padding-bottom: 20px;
}

.destinations-slider .swiper-slide {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0; /* Prevent shrinking */
}

.swiper-slide {
  box-sizing: border-box;
}
/*===========================================
  Destination Card & Image
===========================================*/
.destination-image {
  position: relative;
  width: 260px;
  height: 360px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.destination-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*===========================================
  Top-Left Tag Badge
===========================================*/
.destination-tag {
      position: absolute;
    top: 12px;
    left: 12px;
    background: #83bd39;
    color: #ffffff;
    text-transform: capitalize;
    font-size: 11px;
    padding: 1px 10px;
    border-radius: 7px;
    z-index: 2;
}

/*===========================================
  Overlay Gradient & Layout
===========================================*/
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.6)
  );
  color: #fff;
  z-index: 1;
}

.overlay-content {
  display: flex;
  flex-direction: column;
 // gap: 8px;
	top: 53%;
    position: relative;
}

/*===========================================
  Title & Tagline
===========================================*/
.destination-city {
     margin: 0;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    color: #c19529 !important;
    font-family: "Trebuchet MS", sans-serif !important;
    letter-spacing: 1.1px;
    margin-bottom: 5px !important;
}

.destination-tagline {
     margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #80c526;
    font-style: italic;
    margin-bottom: 0px !important;
}


/*===========================================
  Meta Info: Clock + Duration & Rating
===========================================*/
.destination-meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
	    justify-content: space-between;
	padding-bottom:5px
}

.icon-clock {
  width: 24px!important;
    height: 24px!important;
    margin-right: 4px;
    vertical-align: middle;
    fill: #ffffff;
	    padding-right: 2px;
}

.destination-duration {
  display: flex;
  align-items: center;
  color: white;
	font-size: 17px;
}

.destination-duration .star {
 font-size: 21px;
	color: #ffd54f!important;
	    padding-right: 5px;
}

.destination-rating-out {
  font-weight: 600;
  color: #ffffff;
}


/*===========================================
  View Plan Button
===========================================*/
.destination-button {
  display: block;
    text-align: center;
    background: transparent;
    color: #ffffff;
    border: 1px solid white;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    /* margin-top: 10px !important; */
    text-decoration: none;
    transition: background 0.3s ease;
}

.destination-button:hover {
  background: #d3a12a;
	color: #ffffff!important;
}


/*===========================================
  Swiper Navigation & Pagination
===========================================*/
.swiper-button-prev,
.swiper-button-next {
  color: #333333;
  width: 36px;
  height: 36px;
  opacity: 1 !important;
  background-size: 18px 18px;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
  background: #FF6B6B;
}


/*===========================================
  Responsive Adjustments
===========================================*/
@media (max-width: 768px) {
/*   .destination-image {
    width: 100%;
    height: 280px;
  } */

/*   .destinations-slider .swiper-wrapper {
    gap: 16px;
  } */
	 .destinations-slider .swiper-wrapper {
    gap: 0;
    padding: 0;
  }
}

@media (max-width: 480px) {
/*   .destination-image {
    width: 160px;
    height: 220px;
  } */
	 .destinations-slider .swiper-wrapper {
    gap: 0;
    padding: 0;
  }

  .destination-city {
    font-size: 16px;
  }

  .destination-tagline,
  .destination-meta-info {
    font-size: 12px;
  }

  .destination-button {
    font-size: 12px;
    padding: 8px 0;
  }
	
	.custom-nav-prev {
  left: 20px!important; /* Adjust based on layout */
}

.custom-nav-next {
  right: 20px!important;
}
	.swiper-slide {
		flex: 0 0 100%;
    box-sizing: border-box;
}

}


p.destination-title {
    font-size: 14px;
    color: white;
    margin-bottom: 0px;
    font-family: 'DM Serif Display', serif;
    letter-spacing: 1.1px;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.custom-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 40px;
    color: #aea080;
    cursor: pointer;
}

.custom-nav-prev {
  left: -50px; /* Adjust based on layout */
}

.custom-nav-next {
  right: -50px;
}

.custom-nav:hover {
  color: #d3a12a; /* Add hover effect if desired */
}