



body {
  font-family: 'Founders Grotesk Text';
  background-color: #fff9f4;
  color: #333;
  text-transform:uppercase;
  font-size:12px;
}

.booking-box {
  background-color: #fff;
}

.listing-custom-contentarea .container {
    max-width: 1320px !important;
}

@media (min-width: 1200px) {
    .listing-custom-contentarea .container {
        width: 1320px !important;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lido STF Cond', sans-serif;
    font-weight: 400;
}



.list-custon-avatar {
	width:100px;
	height:100px;
	border-radius:50%;
	vertical-align: bottom;
}

/* ===== Header / Hero styles ===== */
.hero-section {
  position: relative;
}

/* hero image - responsive height */
.hero-img {
  width: 100%;
  min-height: 260px;           /* don't get too small */
  max-height: 520px;
  background-size: cover; 
  background-position: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* top icons row */ 
.hero-actions {
  z-index: 30;
  pointer-events: none; /* allow buttons to be clickable only on children */
  top:50px;
}

/* allow pointer events on the actual buttons */
.hero-actions .hero-action-btn { pointer-events: auto; max-height:32px; max-width:32px; }

/* listing card that overlaps the hero image */
.listing-card {
  transform: translateY(-6.5rem); /* overlap amount - adjust to taste */
  border-radius: 12px;
  z-index: 40;
  background: #ffffff;
  padding: 1rem;
}



/* style for the rating badge next to title */
.rating-badge {
  background: rgba(255, 199, 12, 0.08);
  color: #f6a800;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}

/* small host mini layout */
.host-mini img { object-fit: cover; }

/* ===== Base carousel container ===== */
.listing-custom-carousel {
  position: relative;
  width: 100%;
  height: 500px; /* default desktop height */
  overflow: hidden;
}

/* ===== Carousel items ===== */
.listing-custom-carousel .carousel-item {
  width: 100%;
  height: 100%;
}

/* ===== Make image always fill container ===== */
.listing-custom-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* ensures full coverage without distortion */
  object-position: center;   /* keep image center-focused */
  display: block;
}

/* ===== Responsive adjustments ===== */
@media (max-width: 992px) {
  .listing-custom-carousel {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .listing-custom-carousel {
    height: 400px;
  }
  
  
  .listing-custom-contentarea {
	  margin-top:-50px;
	  padding:10px;
	  border-top-left-radius:20px;
	  border-top-right-radius:20px;
  }
  
  .listing-custom-mobile-block {
  }
  
  .custom-center {
    text-align: center !important;
  }
  
  .listing-custom-showmore-btn {
	  width:100%;
  }
  
  	.listing-custom-carousel .carousel-item img {
		height:390px;
	}
	
	 .listing-custom-review-block .reviewer-name {
	  font-size: 12px !important;
	}
	
	.listing-custom-review-block .reviewer-info small {
	  font-size: 10px !important;
	}
	
	.listing-custom-review-block .review-avatar {
		    width: 38px !important;
		height: 38px !important;
	}
	
	.listing-custom-review-block .review-card {
		margin-bottom:20px;
	}
	
	.review-card p {
	    font-size:12px;
	    line-height: 20px;
	    padding-bottom: 5px;
	}
}


/* Optional: remove red/green borders used for testing */
.listing-custom-hero {
  position: relative;
  max-height: none;
  border: none;
}

.listing-custom-contentarea {
	position:relative;
	background-color:#fff9f4;
}

.listing-custom-author-block {
	width:100%;
	padding:15px 0px;
	border-top:0px none #372338;
	margin-top:15px;
}

.listing-custom-features-list {
	width:100%;
	padding:15px 0px;
	border-bottom:1px dashed #372338;
}

.listing-custom-features-list ul {
	  margin:0px;
	  padding:0px;
}


.listing-custom-features-list ul li {
  position: relative;
  padding-left: 2.1rem; /* space for icon */
  line-height: 1.3;
  display: flex;
  align-items: center;
  margin:10px 0px;
  font-size:12px;

}

/* Add Bootstrap check-circle icon before each li */
.listing-custom-features-list ul li::before {
  content: "\F26A"; /* Unicode for bi-check-circle */
  font-family: "bootstrap-icons";
  font-weight: normal;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%); /* vertical center */
  color: #222; /* green check */
  font-size: 1rem;
  line-height: 1;
}

.listing-custom-about-block {
	width:100%;
	padding:15px 0px;
}

.listing-custom-showmore-btn {
	border-radius:8px !important;
	background-color:#ebebeb;
	padding:14px 24px !important;
	display:block;
	border:0px none;
	font-size:12px !important;
	text-transform:uppercase;
	font-weight: 600;
}


/* Popup overlay hidden by default */
.listing-custom-about-content-popup {
  display: flex;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  justify-content: center;
  align-items: flex-end; /* show from bottom */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.listing-custom-about-content-popup p {
    font-size:12px;
    line-height: 18px;
}

/* When active (visible) */
.listing-custom-about-content-popup.active {
  opacity: 1;
  pointer-events: auto;
}

/* Inner popup container */
.content-popup {
  background: #fff9f4;
  border-radius: 16px 16px 0 0;
  padding: 20px;
  max-width: 600px;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

/* Slide up effect */
.listing-custom-about-content-popup.active .content-popup {
  transform: translateY(0);
}

/* Optional: for smaller devices */
@media (min-width: 768px) {
  .listing-custom-about-content-popup {
    align-items: center;
  }
  .content-popup {
    border-radius: 12px;
    max-height: 80vh;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .listing-custom-about-content-popup.active .content-popup {
    transform: scale(1);
  }


}

.listing-custom-about-content-popup .content-popup .popup-header {
	position:absolute;
	top:20px;
	right:20px;
}

.listing-custom-amenities-block, .listing-custom-review-block {
	width:100%;
	padding:15px 0px;

}

.listing-custom-amenities-content > .listing-custom-features-list {
	padding:0px;
	border-bottom:0px none;
	margin-left:-10px;
}

.listing-custom-review-block .listing-custom-review-content .review {
	background-color:transparent;
}
.listing-custom-review-block .listing-custom-review-content .review p {
	margin-bottom:0px;
}









/* --- Scoped Review Block Styles --- */

.listing-custom-review-block .review-card {
  height: 100%;
  background: #a7cfc9;
  border-radius: 1rem;
  border: 1px solid #372338;
  padding:10px;
}

.listing-custom-review-content {
    padding-top: 10px !important;
}

.listing-custom-review-content .container {
	padding:0px;
	margin:0px;
}

.listing-custom-review-block .swiper {
    margin-top: 15px;
}



.listing-custom-review-block .review-meta {
  font-size: 0.85rem;
}

.listing-custom-review-block .review-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.listing-custom-review-block .review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.listing-custom-review-block .reviewer-info {
  line-height: 1.2;
}

.listing-custom-review-block .reviewer-name {
  font-size: 0.95rem;
}

.listing-custom-review-block .show-more {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
  font-size: 0.9rem;
}








/* --- Host Section --- */
.host-section {
  padding:15px 0px;
  width:100%;
}

.host-card {
  border: 1px solid #eaeaea;
  border-radius: 16px;
  background: #fff9f4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.host-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #372338 ;
}

.host-stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.host-stats strong {
  font-size: 1.05rem;
}



.host-response button {
  
      padding: 14px 24px !important;
  border: 1px solid #000 !important;
    background-color: #372338 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: .3125rem !important;
}

@media (max-width: 767.98px) {
  .host-card {
    flex-direction: column;
    text-align: center;
  }
  .host-avatar {
    margin-bottom: 10px;
  }
  .host-stats {
    justify-content: center;
    margin: auto !important;
	text-align:center !important;
  }
  
  .listing-custom-things-block p {
      font-size:11px;
  }
  
  
  
  .listing-custom-things-block a {
      font-size: 11px !important;
      font-weight: 800 !important;
  }
}

@media (max-width: 768px) {
  .listing-custom-review-block .review-text {
	  font-size: 13px;
	}
	
	.add-price-booking {
		font-size:12px !important;
	}
}

.listing-custom-things-block a {
	font-weight:600;
	text-decoration:none !important;
}

.booking-box {
	padding:15px;
	border:1px solid #ddd;
	border-radius:12px;
	max-height:100px;
	box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 16px;
}


.add-price-booking {
	font-size:14px;
	color:#000;
}

.add-price-booking span {
	display:block;
	font-size:12px;
}

.booking-box button {
	font-size:14px;
	text-transform:uppercase;
}

.custom-icon-size {
  display: flex;
  align-items: center;      /* vertically centers icon + text */
  gap: 8px;                 /* space between icon and text */
  margin-bottom:2px;
  font-size:11px;
}

.custom-icon-size i {
	font-size:15px;
	color:#000;
}

.custom-icon-size a {
    color:#372338 !important;
}

.listing-custom-location-block {
	padding:15px 0px;
}


/* Default desktop layout (no change) */
.booking-box {
  position: static ;
}

/* ✅ Mobile floating booking bar */
@media (max-width: 768px) {
	
  .booking-box {
	border:0px none;
	border-radius:0px;
	max-height:auto;
}	
	
	
  .booking-box {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff9f4;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.15);
    padding: 10px 15px;
    z-index: 1050;
  }

  .booking-box .row {
    align-items: center;
  }


  .booking-box .btn {
    margin-top: 0 !important;
  }
}


/* Popup base */
.booking-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

/* Desktop style */
.booking-popup {
  position:relative;
  background: #fff9f4;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

/* ✅ Mobile slide-up */
@media (max-width: 768px) {
  .booking-popup-overlay {
    align-items: flex-end;
    justify-content: center;
  }
  .booking-popup {
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .booking-popup.show {
    transform: translateY(0);
  }
  
  .host-stats strong {
	  font-size:14px;
  }
  
  .host-stats .text-muted {
	  font-size:12px;
  }
  
  .host-details strong {
	  font-size:12px;
  }
}

/* Optional scroll prevention when popup open */
body.popup-open {
  overflow: hidden;
}

.booking-popup .popup-header {
	position:absolute;
	top:10px;
	right:10px;
}

.custom-review-scroll {
	text-decoration:none;
}

.listing-custom-about-content .about-text {
    font-size:12px;
    line-height: 18px;
}

.listing-custom-about-content h3 {
    margin: 0;
    padding: 0;
}

.listing-custom-about-content h3, .listing-custom-amenities-content h3, .listing-custom-review-content h3, .listing-custom-location-block h3, .listing-custom-host h3, .listing-custom-things-block h3 {
	font-size: 18px;
	font-weight:600;
}

.listing-custom-review-content h3 {
    margin: 0px;
    padding: 0px;
}

.listing-custom-amenities-content h3 {
        margin-top: 10px;
}

.listing-custom-things-know {
	padding:15px 0px;
	margin-bottom:15px;
	
	
}

/* Common Popup Overlay */
.common-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* Popup Box */
.common-popup {
  background: #fff9f4;
  padding: 20px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  position: relative;
  transition: all 0.4s ease;
}

/* Header (close button already positioned by you) */
.common-popup .popup-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

/* ✅ Mobile Slide-up Animation */
@media (max-width: 768px) {
  .common-popup-overlay {
    align-items: flex-end;
    justify-content: center;
  }
  .common-popup {
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .common-popup.show {
    transform: translateY(0);
  }
  
  .listing-common-btn {
	width:100%;
  }
  
  .listing-common-btn, .listing-custom-showmore-btn {
    	 padding: 14px 24px !important;
    border: 1px solid #000 !important;
    background-color: #372338 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: .3125rem !important;
    }
	
	.reviewSwiperInstance .swiper-slide {
	
	position:relative;
	margin-bottom:20px;
	padding: 0 !important;
}
	
}

.listing-custom-things-block p {
	margin-bottom:0;
}
.custom-border-bottom {
	border-bottom:1px solid #372338;
}

.listing-custom-things-block a {
	color:#222;
}

.listing-custom-things-block .listing-custom-things-list span {
	display:block;
	line-height:2;
}

.common-popup .popup-header {
	position:absolute;
	top:10px;
	right:10px;
}

.listing-common-btn {
	border-radius:8px !important;
	background-color:#ebebeb;
	padding:14px 24px !important;
	display:block;
	border:0px none;
	font-size:14px;
	text-transform:uppercase;
	font-weight: 600;
}

.hero-actions  a i, .hero-actions  button i{
	position:relative;
	top:2px;
}

.popup-header button i {
	position:relative;
	top:2px;
}

.popup-header button {
    max-width: 32px;
    max-height: 32px;
}

.listing-custom-host p {
    font-size:12px;
}

.listing-custom-about-content a, .listing-custom-amenities-content a, .listing-custom-review-content a, .listing-custom-location-block a, .listing-custom-host a, .listing-custom-things-block a {
	color:#372338;
	text-decoration:none;
}

.listing-custom-about-content a:hover, .listing-custom-amenities-content a:hover, .listing-custom-review-content a:hover, .listing-custom-location-block a:hover, .listing-custom-host a:hover, .listing-custom-things-block a:hover {
	text-decoration:underline;
}
.host-mini img {
	border:1px solid #372338;
}

.yellow-highlight {
	border: 1px solid #372338;
	background-color: #dbf572;
    display: inline-block;
    position: absolute;
    bottom: 0px;
    z-index: 99999;
    right: 20px;
    padding: 5px 15px;
	border-radius: 1.875rem;
	width:100%;
	max-width:200px;
}



.reviewSwiperInstance .swiper-slide {
	position:relative;
	margin-bottom:20px
}

.write-reviews {
    padding-top:10px;
    padding-bottom: 10px;
    text-align: center;
    /*border-bottom: 1px dashed #372338;*/
}


.custom-dotted-line-top {
    border-top: 1px dashed #372338;
    height: 1px;
    margin: 0px 15px; width:94%;
}

.custom-dotted-line-bottom {
    border-bottom: 1px dashed #372338;
    height: 1px;
    margin: 0px 15px; width:94%;
}

.listing-custom-things-block h6 {
    border-bottom: 1px solid #372338;
    padding-bottom: 3px;
    display: inline-block;
}

.i-section.user-events-listings {
    padding:15px 0 !important;
}

.hero-custom-gallery-wrapper {
    position: absolute;
    right: 50px;
    bottom: 50px;
}


.hero-custom-gallery {
    position: relative; /* parent needed */
}

.hero-custom-gallery-icon {
    position: absolute;
    right: 20px;         /* adjust horizontal position */
    top: 50%;            /* start at 50% height */
    transform: translateY(-50%); /* perfect center vertically */

    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.hero-custom-gallery-icon i {
    font-size: 22px;
    line-height: 1;
    color: #372338;
}

@media (max-width: 768px) {
    .hero-custom-gallery-wrapper {
        right: 10px;
        bottom: 100px;
        z-index: 999;
    }
}

.pswp--ui-visible .pswp__hide-on-close {
    background-color: #00000096;
}

.pswp--touch .pswp__button--arrow {
    visibility: visible !important;
}

.pswp__button--arrow--prev {
    left: 20px !important;
}



.thumb-gallery-img li img {
    max-width: 100%;
    border:1px solid #372338;
}

.thumb-gallery-img li {
    margin-bottom: 10px;
}

#thumbGallery .common-popup {
    position: relative;
    max-height: 83vh !important;
}

#closePopup {
    position: absolute;
    right: 15px;
    top: 15px;
    max-width:36px;
    border: 1px solid #372338;
}



/* dark background behind the image area (PhotoSwipe already provides dark backdrop) */
.pswp__bg { 
    background: #000 !important;
    opacity:1 !important;}

/* ensure image is contained (no stretching) */
.pswp__img {
  object-fit: contain !important; /* modern browsers */
}

/* style caption area */
.pswp__caption {
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 14px 20px;
  font-size: 14px;
  text-align: center;
}

/* caption text line-height & max width */
.pswp__caption__center {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
}

.pswp--ui-visible .pswp__hide-on-close {
    background-color: transparent!important;
}



