/* ----------------------------------------------------
   GALLERY GRID
   ---------------------------------------------------- */
.property-gallery-section {
  padding-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  height: 576px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--dark-200);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.gallery-item.main-item {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.gallery-item.sub-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.gallery-item.sub-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.gallery-item.sub-item:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
}

.gallery-item.sub-item:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.65);
}

.gallery-expand-icon {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.view-all-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-top: 4px;
}

/* ----------------------------------------------------
   LIGHTBOX MODAL
   ---------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: transparent;
  border: none;
  color: var(--white-75);
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.lightbox-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--primary);
  color: var(--black);
  border-color: var(--primary);
}

.lightbox-nav.prev {
  left: 32px;
}

.lightbox-nav.next {
  right: 32px;
}

.lightbox-content {
  max-width: 80%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
}

.lightbox-caption {
  color: var(--text-gray-light);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ----------------------------------------------------
   DETAIL CONTENT LAYOUT & TABS
   ---------------------------------------------------- */
.property-container-layout {
  color: var(--white);
}

.property-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--white-08);
  padding-bottom: 12px;
  margin-bottom: 24px;
  position: sticky;
  top: 0;
  background: var(--black);
  z-index: 10;
  padding-top: 15px;
}

.tab-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.tab-link:hover,
.tab-link.active {
  color: var(--primary);
}

.tab-link::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.tab-link.active::after {
  width: 100%;
}

/* Title, Location & Ratings */
.property-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--white);
}

.property-location {
  color: var(--text-gray-light);
  font-size: 15px;
}

.rating-badge {
  background: var(--primary-08);
  border: 1px solid var(--primary-20);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.rating-badge small {
  color: var(--text-gray-light);
  font-weight: 400;
}

.property-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--white-18);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.property-action-btn:hover {
  background: transparent;
  border-color: transparent;
  color: var(--primary);
}

.property-action-btn i {
  font-size: 16px;
}

.property-action-btn.love-btn.active {
  background: transparent;
  border-color: var(--primary-50);
  color: var(--primary);
}

.property-action-btn.love-btn.active:hover {
  border-color: transparent;
  color: var(--primary);
}

.property-action-btn.love-btn.active i {
  font-weight: 900;
}

/* Divider */
.section-divider {
  border-color: var(--white-08);
  margin: 32px 0;
}

/* Quick Specs Redesign */
.quick-specs-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.quick-spec-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.spec-icon-box {
  width: 48px;
  height: 48px;
  background: var(--white-04);
  border: 1px solid var(--white-06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.quick-spec-card:hover .spec-icon-box {
  border-color: var(--primary-25);
  background: var(--primary-05);
  transform: translateY(-2px);
}

.spec-details {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 11px;
  color: var(--text-gray-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}

.spec-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

/* Host Info */
.host-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.host-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-15);
}

.host-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--white);
}
.host-info .text-muted,
.host-info a {
  color: var(--text-gray-light) !important;
}

.property-description p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white-85);
  margin-bottom: 16px;
}

/* Amenities Grid */
.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.amenity-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.amenity-item i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 3px;
}

.amenity-item h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}

.amenity-item p {
  color: var(--text-gray-light);
  font-size: 13px;
  margin-bottom: 0;
}

/* Reviews */
/* Reviews Redesign */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--white-08);
  padding-bottom: 16px;
}

.reviews-title-wrapper {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.reviews-main-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: var(--white);
}

.reviews-subtitle {
  font-size: 14px;
  color: var(--text-gray-light);
  font-weight: 400;
}

.reviews-stars-header {
  color: var(--primary);
  font-size: 14px;
  display: flex;
  gap: 4px;
}

.reviews-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.review-card {
  background: #0d0d0d;
  border: 1px solid var(--white-08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  height: 100%;
}

.review-card:hover {
  border-color: var(--primary-25);
  box-shadow: 0 4px 20px var(--shadow-dark);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.reviewer-avatar-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--white-10);
}

.reviewer-profile-info {
  flex: 1;
}

.reviewer-name-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 3px 0;
}

.reviewer-role-text {
  font-size: 12px;
  color: var(--text-gray-light);
  margin: 0;
}

.reviewer-rating-stars-badge {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviewer-rating-stars-badge i {
  font-size: 14px;
}

.reviewer-quote-content {
  font-style: italic;
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-85);
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-date-text {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-gray-light);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: auto;
}

.view-all-reviews-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white-10);
  border-radius: 30px;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-all-reviews-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Location Map Placeholder */
.map-placeholder {
  height: 380px;
  background: #808080;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--white-05);
}

.map-marker-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker-core {
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px var(--primary-50);
}

.marker-pulse {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-20);
  border: 1px solid rgba(254, 161, 22, 0.4);
  animation: mapGlow 2s infinite ease-out;
  z-index: 1;
}
textarea {
background: rgba(255, 255, 255, 0.02);
border: 1px solid var(--white-08);
}

@keyframes mapGlow {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.map-info-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 16px 20px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 5;
}

.map-info-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.map-info-text {
  font-size: 13px;
  color: var(--text-gray-light);
  line-height: 1.5;
  margin: 0;
}

/* ----------------------------------------------------
   STICKY BOOKING WIDGET
   ---------------------------------------------------- */
.sticky-booking-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--white-08);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.sticky-booking-widget:hover {
  border-color: var(--primary-20);
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--white-08);
  padding-bottom: 18px;
}

.price-value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.price-unit {
  color: var(--text-gray-light);
  font-size: 14px;
  margin-left: 4px;
}

.widget-availability-text {
  font-size: 9px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.rating-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.rating-label-text {
  font-size: 8px;
  font-weight: 700;
  color: var(--text-gray-light);
  letter-spacing: 1px;
}

.booking-fields-wrapper {
  border: 1px solid var(--white-08);
  border-radius: 12px;
  overflow: visible;
  background: rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.booking-fields-wrapper select.form-input-custom {
  background: var(--dark-100);
  border: 1px solid var(--white-08);
  color: var(--white);
}

.booking-fields-wrapper select.form-input-custom option {
  background: var(--dark-200);
  color: var(--white);
}

.light-mode .booking-fields-wrapper select.form-input-custom {
  color: var(--text-dark);
  border-color: var(--border-color);
}

.light-mode .booking-fields-wrapper select.form-input-custom option {
  color: var(--text-dark);
}

.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--white-08);
}

.date-input-group {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
}

.date-input-group.border-start {
  border-left: 1px solid var(--white-08) !important;
}

.booking-guests {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
}

.date-input-group label,
.booking-guests label {
  font-size: 8px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.input-with-icon {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.input-with-icon i {
  font-size: 14px;
  color: var(--primary) !important;
}

.input-with-icon input,
.input-with-icon .select-field {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  padding: 0 !important;
  box-shadow: none !important;
}

.input-with-icon input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.input-with-icon .select-field {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 20px !important;
}

/* Custom dropdown for guests */
.booking-guests.dropdown-wrapper {
  position: relative;
}

.booking-guests .filter-select {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
}

.booking-guests .filter-select .selected-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.booking-guests .filter-select .arrow-icon {
  font-size: 12px;
  color: var(--text-gray-light);
  transition: transform 0.3s ease;
}

.booking-guests.active .filter-select .arrow-icon {
  transform: rotate(180deg);
}

.booking-guests .filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #111;
  border: 1px solid var(--white-10);
  border-radius: 12px;
  margin-top: 8px;
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 8px 0;
}

/* Custom sleek scrollbar for guests dropdown */
.booking-guests .filter-dropdown::-webkit-scrollbar {
  width: 6px;
}

.booking-guests .filter-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.booking-guests .filter-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.booking-guests .filter-dropdown::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.booking-guests .filter-dropdown.show {
  display: block;
}

.booking-guests .guests-option {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--white-85);
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking-guests .guests-option:hover {
  background: var(--white-08);
  color: var(--white);
}

.booking-guests .guests-option.selected {
  background: var(--primary-10);
  color: var(--primary);
  font-weight: 600;
}

.booking-submit-btn {
  background: var(--primary);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px var(--primary-20);
}

.booking-submit-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(254, 161, 22, 0.45);
}

.pricing-breakdown {
  border-top: 1px solid var(--white-08);
  padding-top: 20px;
  margin-top: 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  color: var(--white-85);
  font-size: 14px;
  margin-bottom: 12px;
}

.price-row.total-row {
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 0;
}

.underline-label {
  text-decoration: underline;
  text-decoration-color: var(--white-18);
  text-underline-offset: 4px;
}

/* Standalone Aether Guarantee Card */
.aether-guarantee-card {
  background: var(--white-04);
  border: 1px solid var(--white-06);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.aether-guarantee-card:hover {
  border-color: var(--primary-15);
  background: var(--white-04);
}

.guarantee-icon-box {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-25);
  background: var(--primary-05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.guarantee-icon-box svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.guarantee-details {
  display: flex;
  flex-direction: column;
}

.guarantee-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.guarantee-text {
  font-size: 12px;
  color: var(--text-gray-light);
  line-height: 1.4;
  margin-bottom: 0;
}

/* ----------------------------------------------------
   trending videos section
   ---------------------------------------------------- */
.trending-videos-section {
  background: var(--black);
  padding-bottom: 60px;
}

.videos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.videos-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
}

.videos-title i {
  color: var(--primary);
}

.videos-title h3 {
  color: var(--white);
  font-weight: 700;
  margin: 0;
}

.discover-link {
  text-decoration: none;
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
}

.discover-link:hover {
  color: var(--primary-hover);
}

.video-card {
  position: relative;
  display: block;
  height: 480px;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: var(--dark-700);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.video-card:hover img {
  transform: scale(1.08);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--overlay-dark), transparent 60%);
}

.live-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;

  background: var(--primary);
  color: var(--white);

  padding: 4px 10px;
  border-radius: 6px;

  font-size: 20px;
  font-weight: 700;
  opacity: 0.7;
}

.video-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
}

.video-overlay h5 {
  color: var(--white);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.video-stats {
  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--white-85);
  font-size: 20px;
}

.video-user {
  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--white);
  font-size: 15px;
  font-weight: 600;

  margin-bottom: 10px;
}

.video-user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

/* ----------------------------------------------------
   SIMILAR VILLAS SECTION
   ---------------------------------------------------- */
.similar-villas-section {
  padding: 80px 0;
  border-top: 1px solid var(--white-08);
  background: var(--black);
}

.similar-villas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.similar-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.similar-main-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.similar-subtitle {
  font-size: 14px;
  color: var(--text-gray-light);
  margin: 0;
}

.explore-all-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white-18);
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.explore-all-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}


.hourly-price-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hourly-price-item {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--white-08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hourly-price-item:hover {
  border-color: var(--primary-25);
  background: var(--primary-05);
}

.hourly-price-item input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hourly-price-item label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  margin: 0;
  font-size: 14px;
  color: var(--white-85);
}

.hourly-price-item label .price {
  color: var(--primary);
  font-weight: 700;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.map-placeholder {
  position: relative;
  overflow: hidden;
}

.time-picker-input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  padding: 0 !important;
}

.summary-room-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

/* ----------------------------------------------------
   RESPONSIVENESS MEDIA QUERIES
   ---------------------------------------------------- */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 150px;
    height: auto;
  }

  .gallery-item.main-item {
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
    height: 260px;
  }

  .gallery-item.sub-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-item.sub-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-item.sub-item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-item.sub-item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .sticky-booking-widget {
    position: relative;
    top: 0;
    margin-top: 32px;
  }

}

@media (max-width: 767px) {
  .property-tabs {
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
  }

  .property-tabs::-webkit-scrollbar {
    height: 0px;
  }

  .property-title {
    font-size: 26px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-grid-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.main-item {
    grid-column: 1;
    height: 220px;
  }

  .gallery-item.sub-item {
    display: none;
  }

  .gallery-item.sub-item:nth-child(5) {
    display: block;
    grid-column: 1;
    grid-row: 2;
    height: 180px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .lightbox-nav.prev {
    left: 12px;
  }

  .lightbox-nav.next {
    right: 12px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }

  .map-info-card {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 14px 16px;
  }
}

@media (max-width: 575px) {
  .similar-villas-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Custom Flatpickr Gold theme overrides */
.flatpickr-calendar.dark {
  background: #111 !important;
  border: 1px solid var(--white-10) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.prevMonthDay.selected,
.flatpickr-day.nextMonthDay.selected {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #000 !important;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange {
  background: rgba(254, 161, 22, 0.15) !important;
  border-color: transparent !important;
}
.flatpickr-months .flatpickr-month {
  color: var(--white) !important;
}
.flatpickr-current-month
  .flatpickr-monthDropdown-months
  .flatpickr-monthDropdown-month {
  background: #111 !important;
}
.flatpickr-day {
  color: var(--white-85) !important;
}
.flatpickr-weekday {
  color: var(--text-gray-light) !important;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: var(--white-18) !important;
}

/* ----------------------------------------------------
   PROPERTY CARDS (scoped for "You may also like")
   ---------------------------------------------------- */
.similar-villas-section .property-card {
  background: var(--dark-card);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--white-06);
}

.similar-villas-section .property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  border-color: var(--primary-15);
}

.similar-villas-section .property-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.similar-villas-section .property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.similar-villas-section .property-card:hover .property-card-image img {
  transform: scale(1.06);
}

.similar-villas-section .placeholder-image {
  background-color: var(--border-hover);
}

.similar-villas-section .wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(4px);
  text-decoration: none;
}

.similar-villas-section .wishlist-btn:hover {
  background: var(--primary);
  color: var(--black);
  transform: scale(1.1);
}

.similar-villas-section .wishlist-btn i {
  font-size: 15px;
}

.similar-villas-section .property-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.similar-villas-section .property-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.similar-villas-section .property-title-row h4 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.similar-villas-section .property-title-row a {
  text-decoration: none;
}

.similar-villas-section .property-rating {
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.similar-villas-section .property-rating i {
  color: var(--primary);
  font-size: 10px;
}

.similar-villas-section .property-location {
  color: var(--dark-600);
  font-size: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.similar-villas-section .property-location i {
  color: var(--dark-600);
  font-size: 13px;
}

.similar-villas-section .property-hotel-author {
  margin-bottom: 10px;
}

.similar-villas-section .property-hotel-author a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s;
}

.similar-villas-section .property-hotel-author a:hover {
  color: var(--primary);
}

.similar-villas-section .property-hotel-author img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.similar-villas-section .property-hotel-author span {
  color: var(--text-gray-light);
  transition: color 0.2s;
}

.similar-villas-section .property-hotel-author a:hover span {
  color: var(--primary);
}

.similar-villas-section .room-amenity-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.similar-villas-section .amenity-icon-item {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-gray-light);
  transition: all 0.2s ease;
  cursor: default;
}

.similar-villas-section .amenity-icon-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
  transform: translateY(-1px);
}

.similar-villas-section .amenity-more-btn {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.similar-villas-section .amenity-more-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.similar-villas-section .amenity-more-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-200);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px;
  gap: 6px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.similar-villas-section .amenity-more-tooltip i {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-gray-light);
}

.similar-villas-section .amenity-more-btn:hover .amenity-more-tooltip {
  display: inline-flex;
}

.similar-villas-section .room-hourly-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.similar-villas-section .hourly-price-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 6px 10px;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.similar-villas-section .hourly-price-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-20);
}

.similar-villas-section .hourly-price-item strong {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.similar-villas-section .hourly-price-item small {
  color: var(--text-gray-light);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

.similar-villas-section .property-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.similar-villas-section .property-footer div {
  display: block;
}

.similar-villas-section .property-footer small {
  display: block;
  color: var(--dark-600);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.similar-villas-section .property-footer strong {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.similar-villas-section .property-footer span {
  color: var(--dark-600);
  font-size: 11px;
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
}

/* ----------------------------------------------------
   THEME-ADAPTABLE HELPERS
   ---------------------------------------------------- */
.rating-breakdown-label {
  color: var(--white-70);
}

.widget-counter-label {
  color: var(--text-gray-light);
  font-size: 13px;
}

.widget-counter-value {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.share-btn {
  background: var(--dark-200);
  border: 1px solid var(--white-08);
  color: var(--white);
}
