/* --- Google Reviews Slider --- */
.reviews-slider {
  overflow: hidden;
  padding: 20px 0;
}

.reviews-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.reviews-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #cda45e;
}

.reviews-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}

/* Review Card Styling */
.testimonial-item {
  box-sizing: border-box;
  padding: 25px;
  margin: 10px;
  /* Reduced margin */
  height: 320px;
  /* Fixed height for uniformity */
  background: #26231d;
  border: 1px solid #37332a;
  position: relative;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Space out content */
  text-align: left;
  /* Better readability */
}

/* Quote Icon - Smaller and positioned better */
.testimonial-item::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1;
  position: absolute;
  top: 15px;
  left: 20px;
  color: #cda45e;
  opacity: 0.5;
}

.testimonial-item p {
  font-style: italic;
  margin: 30px 0 15px 0;
  /* Space for quote icon */
  color: #eee;
  font-size: 14px;
  /* Slightly smaller font */
  line-height: 1.5;
  flex-grow: 1;
  /* Allow text to take available space */
  overflow: hidden;
  /* Hide overflow */
}

.testimonial-item h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 2px 0;
  color: #fff;
}

.testimonial-item h4 {
  font-size: 13px;
  color: #999;
  margin: 0;
}

/* Stars */
.stars {
  color: #cda45e;
  margin-bottom: 5px;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 2px;
  z-index: 2;
}

.stars i {
  font-size: 16px;
}


/* --- Holiday Popup Styles --- */
#popupOverlay {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}

#holidayPopup {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1a1814;
  padding: 30px;
  border: 2px solid #cda45e;
  border-radius: 8px;
  z-index: 10000;
  /* Ensure it is above sticky footer (z-index 9999) */
  text-align: center;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  color: #fff;
  animation: fadeInPopup 0.5s ease-out;
}

@keyframes fadeInPopup {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

}

#holidayPopup h3 {
  color: #cda45e;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

#holidayPopup p {
  margin-bottom: 10px;
}

#holidayPopup .highlight {
  color: #cda45e;
  font-weight: bold;
  display: block;
  margin: 10px 0;
  font-size: 1.1em;
}

#holidayPopup button {
  background-color: #cda45e;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

#holidayPopup button:hover {
  background-color: #d3af71;
}

/* --- Sticky Footer Mobile --- */
#sticky-footer-mobile {
  display: none;
  /* Hidden on desktop */
}

@media (max-width: 768px) {
  #sticky-footer-mobile {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #0c0b09;
    /* Matches body bg */
    border-top: 1px solid #37332a;
    padding: 10px 15px;
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  }

  #sticky-footer-mobile .sticky-btn {
    background: transparent;
    border: 2px solid #cda45e;
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  #sticky-footer-mobile .sticky-btn i {
    font-size: 16px;
  }

  #sticky-footer-mobile .sticky-btn:hover,
  #sticky-footer-mobile .sticky-btn:active {
    background: #cda45e;
    color: #fff;
  }

  /* Ensure content isn't hidden behind footer */
  body {
    padding-bottom: 60px;
  }

  #footer {
    padding-bottom: 80px;
    /* Extra padding for main footer so it's visible above sticky */
  }
}

/* --- Map Placeholder Styles --- */
.map-placeholder {
  background: #26231d;
  border: 1px solid #37332a;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

.map-placeholder p {
  margin-bottom: 20px;
  color: #fff;
  font-style: italic;
}

#loadMapBtn {
  background: #cda45e;
  color: #fff;
  border: 0;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 600;
  cursor: pointer;
}

#loadMapBtn:hover {
  background: #d3af71;
}