	  
		.owl-prev,.owl-next {
		  position: absolute;
		  top: 50%;
		  transform: translateY(-50%);
		}
		.owl-prev:hover,.owl-next:hover{
			background: transparent !important;
		}
		
		.owl-prev {
		  left: -2rem;
		}
		
		.owl-next {
		  right: -2rem;
		}


/* Prachi(31-01-2025) Css for farmhouse images modal */
		/* Popup Background */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

/* Popup Image */
.popup-content {
  max-width: 90%;
  max-height: 80vh;
  margin-top: 5%;
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}


.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

#caption {
    color: #ccc;
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
    padding: 16px;
    transition: 0.3s ease;
    user-select: none;
    z-index: 10;
}

#prevBtn {
    left: 0;
}

#nextBtn {
    right: 0;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.closemodal {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
}

.closemodal:hover,
.closemodal:focus {
    color: #f1f1f1;
    text-decoration: none;
    cursor: pointer;
}

#reviewModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* or 60% for desktop */
  max-width: 600px; /* consistent width cap */
    max-height: 80%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: auto;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) {
    #reviewModal {
      width: 90%;
    }
  }

  @media (max-width: 480px) {
    #reviewModal {
      width: 95%;
    }
  }

  #modal-reviews-list li {
  width: 100%;           /* Take full width of parent */
  box-sizing: border-box;
  padding: 10px;
  border-bottom: 1px solid #eee;
}



	 
	  

		.clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.clamp-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.view-more-btn {
    background-color: black;
    border: 1px solid black;
    color: white;
    cursor: pointer;
    padding: 5px 5px;
    font-weight: bold;
    border-radius: 10px;
	margin-top: 60px;
}

.view-more-btn:hover{
	color: grey;
}
	 
  
  .toggle-section {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    max-width: 250px;
    background: #f9f9f9;
  }

 .toggle-header {
  display: flex;
  justify-content: left;  /* Center horizontally */
  align-items: left;
  cursor: pointer;
}

.toggle-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
 margin-left:32px;
 color:white;
  padding: 0 10px;
  background-color: black;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
/* 
  .toggle-arrow.rotate {
    transform: rotate(180deg);
  } */

	
  .toggle-body {
    margin-top: 10px;
    display: none;
  }

  .person-price {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    margin: 4px 0;
  }

  .ui-datepicker td.holiday a {
    background-color: #2c7d30ff !important;
    color: white !important;
}

.ui-datepicker td.holiday.ui-state-disabled span {
    background-color: #2c7d30ff !important;  /* your holiday/block color */
    color: #fff !important;
    pointer-events: none; /* keep disabled */
}

 
  
  /* Modal overlay */
  #modalOverlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    justify-content: bottom;
    align-items: bottom;
    z-index: 1000;
	margin-top: 200px;
  }
  .today-pr{
	display: none;
  }

  #modalOverlay.active {
  display: flex;
  justify-content: bottom; /* center horizontally */
  align-items: flex-end;   /* align modal at bottom */
}

.modalcontent {
	margin-top: 20px;
  background: white;
  padding: 20px;
  border-radius: 30px 30px 0 0; /* rounded top-left & top-right corners */
  max-width: 100%;
  width: 100%;      /* take full width on mobile */
  height: 75vh;     /* modal height = 50% viewport height */
  box-sizing: border-box;
 
    position: relative; /* make it the reference for absolute children */
  padding: 20px;
  /* Optional: add a little shadow for depth */
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  overflow-y: auto; /* scroll if content is tall */
}
@keyframes gradientShift {
  0%, 100% {
    background: linear-gradient(135deg, #ffffffff 0%, #ffffff 100%);
  }
  50% {
    background: linear-gradient(135deg, #ffffff 0%, #ffffffff 100%);
  }
}

#modalCloseBtn {
  position: absolute;
  top: 10px;  /* distance from top */
  right: 30px; /* distance from right */
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 10; /* make sure it's on top */

}

.modalcontent {
  animation: gradientShift 6s ease-in-out infinite;
}

  /* Hide button and modal by default */
#openModalBtn,
#modalOverlay {
  display: none;
}

/* Show only on mobile screens */
@media (max-width: 768px) {
  #openModalBtn {
    display: inline-block; /* or block, your choice */
  }
  #modalOverlay {
    /* When active, display flex (already handled by .active) */
    /* but when inactive (default), hide */
    display: none;
  }
  #modalOverlay.active {
    display: flex;
  }

   .today-pr{
	display: block;
  }
}


/* Hide link on desktop */
#openModalBtn {
  display: none;
  margin: 0;
}

/* Mobile view */
@media (max-width: 768px) {

  .mobile-div-hide{
	display: none;
  }
  #openModalBtn {
    display: inline-block;
    margin: 0 10px;
  }
}


 
  
	
.coupon-form {
  display: flex;
  gap: 5px; /* space between input and button */
}

.coupon-form input {
  font-size: 15px;
  height: 40px;
  flex: 1; /* take remaining space */
  padding: 0 8px;
 margin-top: 10px;
 

}

.coupon-form a {
  font-size: 15px;
  height: 40px;
  display: flex;
  align-items: center;       /* vertical center */
  justify-content: center;   /* horizontal center */
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  background-color: black;
  color: white;
  text-align: center !important;
  text-decoration: none;     /* remove underline if needed */
}



 
  
.coupon-slider {
  margin-bottom: 20px;
  overflow-x: auto;         /* enable horizontal scrolling */
  overflow-y: hidden;
  width: 100%;
  scrollbar-width: none;    /* hide scrollbar for Firefox */
}

.coupon-slider::-webkit-scrollbar {
  display: none;            /* hide scrollbar for Chrome/Safari */
}

.coupon-track {
  display: flex;
  gap: 10px;
  padding: 10px;
  /* ❌ Removed animation for manual scrolling */
}

.coupon-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 15px 14px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  min-width: 200px;          /* ensure proper box width */
  flex: 0 0 auto;            /* prevent shrinking */
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.coupon-box:hover {
  transform: scale(1.05);
}

.coupon-icon {
  width: 28px;
  height: 28px;
  background-color: #1db954; /* green */
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.coupon-details {
  flex: 1;
}

.coupon-code {
  font-weight: bold;
  font-size: 14px;
  color: #000;
}

.coupon-text {
  font-size: 10px;
  color: #1db954; /* green text */
}

.coupon-apply {
  font-size: 13px;
  font-weight: 500;
  color: #007aff; /* blue link */
  text-decoration: none;
}

/* Optional: highlight selected coupon */
.coupon-box.active {
  border: 2px solid #1db954;
  box-shadow: 0 0 8px rgba(29,185,84,0.4);
}

 
  
	.wallet-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  min-width: 270px;
  font-family: Arial, sans-serif;
  margin-right: 10px; /* spacing in slider */
  margin-top: 10px;
  margin-bottom: 10px;

}

.wallet-icon {
  width: 28px;
  height: 28px;
  background-color: #ff9800; /* orange for wallet coins */
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.wallet-details {
  flex: 1;
}

.wallet-title {
  font-weight: bold;
  font-size: 14px;
  color: #000;
}

.wallet-subtext {
  font-size: 12px;
  color: #ff9800; /* matches wallet icon color */
}

.wallet-action {
  font-size: 13px;
  font-weight: 500;
  color: #007aff; /* blue link */
  text-decoration: none;
}

 
  
	/* Default: Desktop view */
.label-mobile {
  display: none;
}
.label-desktop {
  display: inline;
}

/* Mobile view: show "Total" instead of "Total Payable" */
@media (max-width: 768px) {
  .label-desktop {
    display: none;
  }
  .label-mobile {
    display: inline;
  }
}

 
  
.farm-full-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: scroll; /* enable scroll */
  -ms-overflow-style: none;  /* hide scrollbar IE/Edge */
  scrollbar-width: none;     /* hide scrollbar Firefox */
}

.farm-full-modal::-webkit-scrollbar {
  display: none; /* hide scrollbar Chrome/Safari */
}


.farm-full-body {
  max-width: 1200px;   /* center container */
  margin: 60px auto 40px;
  padding: 20px;
}

.farm-image-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.farm-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.farm-image-number {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
}

.farm-close {
  position: fixed;
  top: 15px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 100000;
}

@keyframes farmSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

 
  
	.farm-video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

/* Modal content box */
.farm-video-content {
  background: #fff;
  margin: 5% auto;
  padding: 15px;
  border-radius: 12px;
  width: 80%;
  max-width: 800px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  animation: popupFade 0.3s ease-in-out;
}

/* Close button */
.farm-video-close {
  color: #333;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.farm-video-close:hover {
  color: red;
}

@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
 
  
	.play-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: white;
    font-size: 42px;
    opacity: 0.85;
    transition: opacity 0.3s;
    line-height: 1;
}

.play-overlay:hover {
    opacity: 1;
    color: #ff0000; /* optional hover color */
}
.disabled-btn {
    opacity: 0.5;
    cursor: not-allowed !important;
    position: relative;
	pointer-events:none;
}



.disabled-btn:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -32px;
    right: 0;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 1000;
}

.disabled-btn:hover::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 10px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #000 transparent;
}

#visitfarmModal .close {
    cursor: pointer;
}

 
  
/* Common Box Style */
.breakfast-box {
    padding: 8px 10px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    display: block;

    /* Force Full Width */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    flex-shrink: 0;  /* Fix when parent is flex */
}

/* Allowed Breakfast Style */
.breakfast-allowed {
    background: #e6fff0;
    border-left: 4px solid #16a085;
    color: #045b3b;
}

/* Blocked/Upgrade Message */
.breakfast-blocked {
    background: #fff5e6;
    border-left: 4px solid #ff8600;
    color: #a05200;
}

/* Responsive Tweaks */
@media (max-width: 780px) {
    .breakfast-box {
        font-size: 12px;
        padding: 6px 8px;
        border-radius: 4px;
        margin-top: 8px;
    }
}
/* Cashback Box Styles */
.cashback-box {
    padding: 8px 10px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.cashback-allowed {
    background: #e8ffea;
    border-left: 4px solid #1abc9c;
    color: #0e6b4b;
}

.cashback-blocked {
    background: #fff0f0;
    border-left: 4px solid #ff4d4d;
    color: #a60000;
}

@media (max-width: 480px) {
    .cashback-box {
        font-size: 12px;
        border-radius: 4px;
        margin-top: 8px;
    }
}

 
  
 /* Container */
.voucher-slider {
  margin-bottom: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scrollbar-width: none;
}

.voucher-slider::-webkit-scrollbar {
  display: none;
}

/* Track */
.voucher-track {
  display: flex;
  gap: 16px;
  padding: 12px 6px;
  flex-wrap: nowrap;
}

/* Voucher Card */
.voucher-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0fff7, #e6fff2);
  border: 1px dashed #16c172;
  box-shadow: 0 8px 20px rgba(22,193,114,0.15);
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
}

.voucher-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(22,193,114,0.25);
}

/* Discount Icon */
.voucher-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #16c172, #0fb364);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* Details */
.voucher-details {
  flex: 1;
}

.voucher-number {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.voucher-text {
  font-size: 12px;
  font-weight: 600;
  color: #16c172;
  margin-top: 2px;
}

/* Apply Button */
.voucher-apply-btn {
  background: #16c172;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.voucher-apply-btn:hover {
  background: #0fb364;
  transform: scale(1.05);
  color:white;
}

/* USED State */
.voucher-box.used {
  background: #f1f1f1;
  border: 1px dashed #bbb;
  box-shadow: none;
  cursor: not-allowed;
}

.voucher-box.used .voucher-icon {
  background: #bbb;
}

.voucher-box.used .voucher-text,
.voucher-box.used .voucher-number {
  color: #777;
}

/* Optional USED badge */
.voucher-box.used::after {
  content: "USED";
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  color: #777;
  background: #e0e0e0;
  padding: 2px 8px;
  border-radius: 12px;
}

 
  
  /* ===== Exclusive Membership Voucher (Compact & Elegant) ===== */

.membership-voucher {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    border: 1.5px dashed #27ae60;
    border-radius: 12px;
    background: #f6fff9;
    align-items: center;
    margin: 12px 0;
}

/* Left icon */
.membership-voucher .voucher-left {
    flex-shrink: 0;
}

.membership-voucher .voucher-icon {
    width: 36px;
    height: 36px;
    background: #27ae60;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right content */
.membership-voucher .voucher-right {
    flex: 1;
}

/* Title */
.membership-voucher .voucher-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #145c32;
}

/* Input + button row */
.membership-voucher .voucher-input-wrap {
    display: flex;
    gap: 6px;
    margin-bottom: 4px;
}

/* Input */
.membership-voucher .voucher-input {
    flex: 1;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #cdeedc;
    padding: 0 10px;
    font-size: 13px;
}

.membership-voucher .voucher-input:focus {
    outline: none;
    border-color: #27ae60;
}

/* Apply button */
.membership-voucher .voucher-apply-btn {
    height: 32px;
    padding: 0 14px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.membership-voucher .voucher-apply-btn:hover {
    background: #1f8f52;
}

/* Note text */
.membership-voucher .voucher-note {
    font-size: 11px;
    color: #4f6f5c;
    line-height: 1.3;
}

.membership-voucher .voucher-limit {
    color: #1f8f52;
    font-weight: 600;
}

/* ===== Mobile refinement ===== */
@media (max-width: 480px) {
    .membership-voucher {
        padding: 10px;
        gap: 10px;
    }

    .membership-voucher .voucher-title {
        font-size: 13px;
    }

    .membership-voucher .voucher-input {
        font-size: 12px;
    }

    .membership-voucher .voucher-apply-btn {
        font-size: 12px;
        padding: 0 12px;
    }
}
.visit-farm-wrapper {
    position: relative;
    display: inline-block;
}

.disabled-btn {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: auto; /* IMPORTANT: allows hover */
}

/* Tooltip hidden by default */
.disabled-tooltip {
    position: absolute;
    bottom: 110%;
    right: 20;
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease;
    z-index: 10;
}

/* Small arrow */
.disabled-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 15px;
    border-width: 6px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

/* Show tooltip on hover */
.visit-farm-wrapper:hover .disabled-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.disabled-tooltip {
    background: black;
}

.disabled-tooltip::after {
    border-color: black transparent transparent transparent;
}


.review-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  margin-bottom: 20px;
}

.review-score {
  font-size: 42px;
  font-weight: 700;
}

.review-stars {
  color: #f4b400;
  font-size: 22px;
}

.review-meta {
  font-size: 14px;
  color: #666;
}

.review-list li {
  list-style: none;
  margin-bottom: 14px;
}

.review-card {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.view-more-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: black;
  color: #fff;
  border: none;
  font-size: 15px;
}
.review-media {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.review-media img,
.review-media video {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
}

.review-badge {
  font-size: 11px;
  background: #33C375;
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
}


/* BACKDROP */
.media-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
}

/* DIALOG */
.media-dialog {
  position: relative;
  max-width: 900px;
  width: 95%;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20,20,20,0.95);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  animation: fadeUp .35s ease;
  overflow: hidden;
}

/* CLOSE */
.media-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

/* MAIN VIEW */
.media-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
#mediaViewer img,
#mediaViewer video {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
}

/* NAV ARROWS */
.media-main .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
}
.media-main .prev { left: 10px; }
.media-main .next { right: 10px; }

/* THUMBNAILS */
.media-thumbs {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: #111;
  overflow-x: auto;
}
.media-thumbs img,
.media-thumbs video {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
}
.media-thumbs .active {
  opacity: 1;
  outline: 2px solid #fff;
}

/* ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(-45%); }
  to { opacity: 1; transform: translateY(-50%); }
}

.media-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10001; /*  IMPORTANT */

  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: rgba(0,0,0,0.75);
  color: #fff;

  border: 1px solid rgba(255,255,255,0.3);
  font-size: 22px;
  font-weight: bold;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all .2s ease;
}

.media-close:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}
.review-stars {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  gap: 2px;
}

/* Full star */
.star.full {
  color: #ffb400; /* gold */
}

/* Half star (fake half but visually correct) */
.star.half {
  color: #ffb400;
  opacity: 0.6;
}

/* Empty star */
.star.empty {
  color: #ddd; /* light gray */
}

#map {
    pointer-events: none !important;
    touch-action: none !important;
    user-select: none !important;
}

 