/* ═══════════════════════════════════════════════════════════════
   VILLA DETAILS — PAGE-SPECIFIC STYLES
   Reuses every color, font, spacing unit, radius, shadow and
   button style already defined in style.css. Section padding
   matches every other page exactly: 60px top/bottom, var(--gutter)
   left/right, via the shared .vd-container helper below.
   ═══════════════════════════════════════════════════════════════ */

.vd-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

body.vd-page .en-navbar {
  position: relative;
  top: 0;
  left: auto;
  right: auto;
  background: var(--black);
  border-radius: 0 0 28px 28px;
  padding: 18px var(--gutter) 18px;
  animation: none;
}

body.vd-page .en-nav-inner {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.vd-top {
  background: var(--cream-1);
  padding: 28px 0 0;
}

.vd-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Mulish', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  transition: color 0.3s ease;
}

.vd-breadcrumb:hover {
  color: var(--gold-dark);
}

.vd-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  padding-bottom: 18px;
}

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

.vd-title {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 38px;
  color: var(--charcoal);
}

.vd-title em {
  color: #07124A;
  font-style: italic;
}

.vd-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid-gray);
}

.vd-title-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.vd-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

.vd-rating svg { color: #C99A2E; }

.vd-rating span {
  font-weight: 400;
  color: var(--mid-gray);
  font-size: 12px;
}

.vd-rating--inline {
  font-size: 13px;
}

.vd-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Mulish', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.vd-share:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.vd-gallery-section {
  background: var(--cream-1);
  padding: 0 0 44px;
}

.vd-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

.vd-gallery-main {
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}

.vd-gallery-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
  border-radius: 8px;
}

.vd-gallery-main:hover img { transform: scale(1.03); }

/* Villa Video hero (admin panel "Villa Video" field) — same slot/sizing
   as the photo hero above, just a <div> instead of a <button> since a
   <video> needs its native controls to stay clickable. */
.vd-gallery-main--video {
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.vd-gallery-main--video video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  pointer-events: none; /* pure background video — no click/hover UI at all */
}

.vd-gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.vd-gallery-thumb {
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}

.vd-gallery-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}

.vd-gallery-thumb:hover img { transform: scale(1.06); }

.vd-gallery-thumb--more .vd-gallery-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,12,20,0.5);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.3s ease;
}

.vd-gallery-thumb--more:hover .vd-gallery-more-overlay {
  background: rgba(10,12,20,0.65);
}

.vd-main {
  background: var(--cream-1);
  padding: 0 0 60px;
}

.vd-main-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 60px;
  align-items: start;
}

.vd-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.vd-about .en-story-heading,
.vd-amenities .en-story-heading {
  font-size: 36px;
  margin-bottom: 14px;
}

.vd-about .en-story-body,
.vd-amenities .en-story-body {
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.vd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.vd-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--gold-dark);
}

.vd-stat strong {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--charcoal);
}

.vd-stat span {
  font-family: 'Mulish', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
}

.vd-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
  margin-top: 20px;
}

.vd-amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.vd-amenity-item svg { color: var(--gold); flex-shrink: 0; }

.vd-mealplans { margin-top: 44px; }

.vd-mealplans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.vd-mealplan-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vd-mealplan-item:hover { border-color: var(--gold); }

.vd-mealplan-item.is-active {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 1px var(--gold-dark);
  background: var(--cream-1);
}

.vd-mealplan-name {
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.vd-mealplan-desc {
  font-family: 'Mulish', sans-serif;
  font-size: 12.5px;
  color: var(--mid-gray);
  line-height: 1.4;
}

.vd-mealplan-price {
  font-family: 'Mulish', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold-dark);
  margin-top: 4px;
}

.vd-seasons { margin-top: 44px; }

.vd-seasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.vd-season-item {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vd-season-item.is-active {
  border-color: var(--gold-dark);
  background: var(--cream-1);
}

.vd-season-badge {
  display: none;
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--gold-dark);
  color: var(--white);
  font-family: 'Mulish', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 20px;
}

/* Only the card matching the guest's selected stay shows "CURRENTLY VALID" —
   see villa-details.js, which toggles .is-active on the season/special-offer
   cards as the check-in date and night count change. */
.vd-season-item.is-active .vd-season-badge {
  display: inline-block;
}

/* "EXPIRED" — shown (server-side, from season_end vs today) on any season
   whose date range has already passed, so old offers don't look bookable. */
.vd-season-item.is-expired {
  opacity: 0.55;
}

.vd-season-expired-badge {
  display: none;
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--mid-gray);
  color: var(--white);
  font-family: 'Mulish', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 20px;
}

.vd-season-item.is-expired .vd-season-expired-badge {
  display: inline-block;
}

.vd-season-name {
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.vd-season-dates {
  font-family: 'Mulish', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--mid-gray);
}

.vd-season-desc {
  font-family: 'Mulish', sans-serif;
  font-size: 12.5px;
  color: var(--mid-gray);
  line-height: 1.45;
  margin: 4px 0;
}

.vd-season-discount {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
}

@media (max-width: 640px) {
  .vd-mealplans-grid { grid-template-columns: 1fr; }
  .vd-seasons-grid { grid-template-columns: 1fr; }
}

.vd-booking {
  position: sticky;
  top: 24px;
}

.vd-booking-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(30,20,10,0.08);
}

.vd-booking-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.vd-price {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--charcoal);
}

.vd-price-unit {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: var(--mid-gray);
}

.vd-booking-sub {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  color: var(--mid-gray);
  margin: 6px 0 20px;
}

.vd-booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.vd-booking-field {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 8px 12px;
}

.vd-booking-field label {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  margin-bottom: 2px;
}

.vd-booking-field input {
  border: none;
  padding: 0;
  width: 100%;
  font-family: 'Mulish', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
  background: transparent;
}

.vd-guests {
  position: relative;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.vd-guests label {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  margin-bottom: 2px;
}

.vd-guests-summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Mulish', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
}

.vd-guests-summary svg {
  color: var(--mid-gray);
  transition: transform 0.3s ease;
}

.vd-guests.is-open .vd-guests-summary svg {
  transform: rotate(180deg);
}

.vd-guests-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(30,20,10,0.14);
  z-index: 5;
}

.vd-guests.is-open .vd-guests-panel {
  display: block;
}

.vd-guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Mulish', sans-serif;
  font-size: 13.5px;
  color: var(--charcoal);
}

.vd-guests-row + .vd-guests-row {
  margin-top: 14px;
}

.vd-guests .cu-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 0;
}

.vd-guests .cu-stepper-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.14);
  background: var(--white);
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

.vd-guests .cu-stepper-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.vd-guests .cu-stepper-value {
  font-weight: 600;
  min-width: 14px;
  text-align: center;
}

.vd-rooms-field {
  position: relative;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.vd-rooms-field label {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  margin-bottom: 2px;
}

/* Suites trigger — mirrors .vd-guests-summary (label left, value +
   chevron right) so it reads as the same kind of control instead of
   its own bespoke widget or a raw browser select. */
.vd-rooms-summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Mulish', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
}

.vd-rooms-summary svg {
  color: var(--mid-gray);
  transition: transform 0.3s ease;
}

.vd-rooms-field.is-open .vd-rooms-summary svg {
  transform: rotate(180deg);
}

/* Floating panel — mirrors .vd-guests-panel */
.vd-rooms-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 6px 0;
  box-shadow: 0 16px 40px rgba(30,20,10,0.14);
  z-index: 5;
  overflow: hidden;
}

.vd-rooms-field.is-open .vd-rooms-panel {
  display: block;
}

.vd-rooms-option {
  padding: 10px 16px;
  font-family: 'Mulish', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.vd-rooms-option + .vd-rooms-option {
  border-top: 1px solid rgba(0,0,0,0.06);
}

.vd-rooms-option:hover:not(.is-disabled) {
  background: var(--cream-2);
}

.vd-rooms-option.is-active {
  background: rgba(201,167,109,0.14);
  color: var(--gold-dark);
  font-weight: 700;
}

.vd-rooms-option.is-disabled {
  color: var(--light-gray);
  cursor: not-allowed;
}

.vd-rooms-hint {
  font-family: 'Mulish', sans-serif;
  font-size: 10.5px;
  color: var(--mid-gray);
  margin: 4px 0 0;
}

.vd-calendar {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 18px;
}

.vd-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
}

.vd-calendar-nav {
  display: flex;
  gap: 6px;
}

.vd-calendar-nav button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}

.vd-calendar-nav button:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.vd-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.vd-calendar-weekdays span {
  text-align: center;
  font-family: 'Mulish', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--mid-gray);
}

.vd-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.vd-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.vd-cal-day:disabled {
  color: rgba(0,0,0,0.15);
  cursor: default;
}

.vd-cal-day:not(:disabled):hover {
  background: rgba(201,167,109,0.16);
}

.vd-cal-day.is-empty { visibility: hidden; }

.vd-cal-day.is-range {
  background: rgba(201,167,109,0.18);
  border-radius: 0;
}

.vd-cal-day.is-selected {
  background: #1E1E1E;
  color: var(--white);
  font-weight: 700;
}

.vd-cal-day.is-range:first-of-type { border-radius: 8px 0 0 8px; }

.vd-reserve {
  width: 100%;
  margin-bottom: 18px;
}

.vd-price-breakdown {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vd-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Georgia, serif;
  font-size: 13px;
  color: var(--mid-gray);
}

.vd-price-total {
  font-weight: 00;
  color: var(--charcoal);
  font-size: 15px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.vd-price-row--discount {
  color: var(--gold-dark);
}

/* ═══════════════════════════════════════
   DAYS DESIGNED BY HAND
   Same carousel pattern used on the About page — horizontally
   scrollable flex strip (not a fixed grid), so any number of
   items can overflow and the prev/next arrows have something to
   scroll.
═══════════════════════════════════════ */
.vd-day {
  background: var(--cream-2);
  padding: 60px 0;
}

.vd-day-header {
  max-width: 1400px;
  margin: 0 auto 36px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.vd-day-header .en-label-gold { margin-bottom: 10px; }

.vd-day-heading {
  margin-bottom: 0;
  font-size: 36px;
}

.vd-day-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.vd-day-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--white);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.vd-day-arrow:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.vd-day-strip {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);

  display: flex;
  flex-wrap: nowrap;

  gap: 20px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.vd-day-strip::-webkit-scrollbar {
  display: none;
}

.vd-day-item {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 280px;

  aspect-ratio: 3 / 4;

  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}

.vd-day-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}

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

.vd-day-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.vd-day-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--white);
}

.vd-location-section {
  background: var(--cream-1);
  padding: 60px 0;
}

.vd-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vd-location-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
}

.vd-location-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-map-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.94);
  color: var(--charcoal);
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.vd-map-pill:hover {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.04);
}

.vd-location-scroll {
  margin-top: 30px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,167,109,0.4) transparent;
}

.vd-location-scroll::-webkit-scrollbar { width: 5px; }
.vd-location-scroll::-webkit-scrollbar-track { background: transparent; }
.vd-location-scroll::-webkit-scrollbar-thumb {
  background: rgba(201,167,109,0.35);
  border-radius: 10px;
}
.vd-location-scroll::-webkit-scrollbar-thumb:hover { background: rgba(201,167,109,0.6); }

.vd-location-group + .vd-location-group { margin-top: 28px; }

.vd-location-group-title {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 4px;
}

.vd-location-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vd-location-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.vd-location-item:last-child { border-bottom: none; }

.vd-location-item-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  margin-left: -14px;
  padding: 12px 6px 12px 14px;
  font-family: 'Mulish', sans-serif;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

.vd-location-item-btn:hover {
  background: rgba(201,167,109,0.07);
  border-left-color: rgba(201,167,109,0.45);
  transform: translateX(3px);
}

.vd-location-item-btn.is-active {
  background: rgba(201,167,109,0.1);
  border-left-color: var(--gold);
}

.vd-location-item-btn.is-active .vd-location-name {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.vd-location-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.vd-location-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 11px;
  color: var(--mid-gray);
  flex-shrink: 0;
}

.vd-location-meta strong {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-dark);
}

.vd-location-media img {
  transition: opacity 0.45s ease;
}

.vd-location-media img.is-fading {
  opacity: 0;
}

.vd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,10,18,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vd-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.vd-lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 10px;
}

.vd-lightbox-close,
.vd-lightbox-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.vd-lightbox-close:hover,
.vd-lightbox-nav:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--gold);
}

.vd-lightbox-close {
  top: 24px;
  right: 24px;
}

.vd-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.vd-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.vd-lightbox-prev:hover, .vd-lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

.vd-lightbox-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 600px) {
  .vd-lightbox-prev { left: 10px; }
  .vd-lightbox-next { right: 10px; }
  .vd-lightbox-close { top: 14px; right: 14px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — VILLA DETAILS PAGE
   Same breakpoint scale as the rest of the site.
═══════════════════════════════════════ */
@media (max-width: 1440px) {
  .vd-main-grid { gap: 44px; }
}

@media (max-width: 1200px) {
  .vd-gallery { height: 300px; }
}

@media (max-width: 1024px) {
  .vd-main-grid { grid-template-columns: 1fr; }
  .vd-booking { position: static; max-width: 480px; }
  .vd-location-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .vd-gallery { grid-template-columns: 1fr; height: auto; }
  .vd-gallery-main { height: 260px; }
  .vd-gallery-thumbs { grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr; height: 100px; }
  .vd-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .vd-amenities-grid { grid-template-columns: 1fr; }
  .vd-day-item { flex: 0 0 42vw; min-width: 220px; }
  .vd-location-grid { grid-template-columns: 1fr; }
  .vd-location-media { height: 300px; }
  .vd-location-scroll { max-height: 320px; }
}

@media (max-width: 768px) {
  .vd-title { font-size: 30px; }
  .vd-title-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .vd-day-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .vd-day-heading { font-size: 30px; }
}

@media (max-width: 576px) {
  .vd-gallery-thumbs { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; height: 200px; }
  .vd-stats { grid-template-columns: 1fr 1fr; }
  .vd-day-item { flex: 0 0 78vw; min-width: 200px; }
  .vd-booking-fields { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 430px) {
  .vd-title { font-size: 26px; }
  .vd-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════
   MANDATORY RULES FOR STRICT ADHERENCE
   Sits between Location and the closing CTA. Same 60px vertical
   rhythm and var(--gutter) side padding as every other vd-* section;
   background alternates to cream-2, matching the cream-1 / cream-2
   pattern already used up and down the page.
═══════════════════════════════════════ */
.vd-rules-section {
  background: var(--cream-2);
  padding: 90px 0;
}

.vd-rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.35);
}

.vd-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 34px;
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.3s ease;
}

.vd-rule-item:hover {
  background: rgba(201,167,109,0.08);
}

.vd-rule-icon {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.vd-rule-item p {
  font-family: 'Mulish', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}

.vd-rules-accept {
  margin-top: 48px;
}

.vd-rules-accept-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 30px 36px;
  box-shadow: 0 20px 50px rgba(30,20,10,0.08);
  cursor: pointer;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.vd-rules-accept-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(30,20,10,0.14);
}

.vd-rules-checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vd-rules-checkbox-box {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 6px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.vd-rules-checkbox-box svg {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vd-rules-checkbox-input:checked + .vd-rules-checkbox-box {
  background: var(--gold);
  border-color: var(--gold);
}

.vd-rules-checkbox-input:checked + .vd-rules-checkbox-box svg {
  opacity: 1;
  transform: scale(1);
}

.vd-rules-checkbox-input:focus-visible + .vd-rules-checkbox-box {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}

.vd-rules-checkbox-text {
  font-family: 'Mulish', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--charcoal);
}

@media (max-width: 900px) {
  .vd-rules-section { padding: 64px 0; }
  .vd-rules-grid { grid-template-columns: 1fr; }
  .vd-rule-item { border-right: none; }
  .vd-rules-accept-card { padding: 26px 26px; }
}

@media (max-width: 576px) {
  .vd-rule-item { padding: 22px 20px; }
  .vd-rules-accept-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .vd-rules-checkbox-box { margin-top: 0; }
}