/* ── Site Header (always fixed) ── */
.vd-site-header {
  position: relative;
  z-index: 100;
  background:
    linear-gradient(120deg, rgba(18, 13, 10, 0.82), rgba(18, 13, 10, 0.42)),
    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff8ef;
}

.vd-site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(204, 134, 80, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(9, 8, 7, 0.15), rgba(9, 8, 7, 0.34));
  pointer-events: none;
}

.vd-site-header .topbar,
.vd-site-header .navbar-wrap {
  position: relative;
  z-index: 1;
}

/* ── Gallery ── */
.vd-gallery {
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  gap: 4px;
  width: min(1240px, calc(100% - 80px));
  margin: 14px auto 0;
  height: 540px;
  padding: 0;
  background: #17110d;
  border-radius: 20px;
  overflow: hidden;
}

.vd-gallery__main {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
}

.vd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vd-gallery__main:hover img {
  transform: scale(1.02);
}

.vd-gallery__all-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: rgba(14, 11, 8, 0.82);
  backdrop-filter: blur(12px);
  color: #fff8ef;
  font: 600 0.85rem "Manrope", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
}

.vd-gallery__all-btn:hover {
  background: rgba(204, 134, 80, 0.85);
}

.vd-thumbs {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  border-radius: 0;
  overflow: hidden;
}

.vd-thumb {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.vd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.vd-thumb:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(204, 134, 80, 0.15);
}

.no-scroll {
  overflow: hidden;
}

.vd-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(8, 6, 4, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.vd-gallery-modal--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vd-gallery-modal img {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 70px);
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.vd-gallery-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 239, 0.3);
  background: rgba(25, 18, 13, 0.75);
  color: #fff8ef;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vd-gallery-modal__close:hover {
  background: rgba(204, 134, 80, 0.32);
  border-color: rgba(204, 134, 80, 0.55);
}

.vd-gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 239, 0.26);
  background: rgba(25, 18, 13, 0.74);
  color: #fff8ef;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vd-gallery-modal__nav--prev { left: 18px; }
.vd-gallery-modal__nav--next { right: 18px; }

.vd-gallery-modal__nav:hover {
  background: rgba(204, 134, 80, 0.32);
  border-color: rgba(204, 134, 80, 0.55);
}

/* ── Content Layout ── */
.vd-content {
  padding: 52px 0 80px;
}

.vd-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

/* ── Property Header ── */
.vd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255, 248, 239, 0.45);
}

.vd-breadcrumb a {
  color: rgba(255, 248, 239, 0.45);
  transition: color 0.2s ease;
}

.vd-breadcrumb a:hover { color: #e4ba96; }
.vd-breadcrumb span { opacity: 0.4; }

.vd-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.vd-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff8ef;
}

.vd-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  color: rgba(255, 248, 239, 0.6);
  font-size: 0.92rem;
}

.vd-location svg { color: #cc8650; flex-shrink: 0; }

.vd-price-block {
  margin-bottom: 28px;
  padding: 22px 24px;
  background: rgba(204, 134, 80, 0.08);
  border: 1px solid rgba(204, 134, 80, 0.2);
  border-radius: 18px;
}

.vd-price {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #e4ba96;
  line-height: 1;
}

.vd-price-label {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 248, 239, 0.5);
}

/* ── Key Stats Bar ── */
.vd-stats {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  background: rgba(255, 248, 239, 0.03);
  border: 1px solid rgba(255, 248, 239, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.vd-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 248, 239, 0.06);
  text-align: center;
}

.vd-stat:last-child { border-right: none; }

.vd-stat strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #e4ba96;
  line-height: 1;
}

.vd-stat small {
  font-size: 0.74rem;
  color: rgba(255, 248, 239, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Description ── */
.vd-section-title {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff8ef;
}

.vd-desc p {
  margin: 0 0 16px;
  color: rgba(255, 248, 239, 0.75);
  line-height: 1.8;
  font-size: 0.97rem;
}

/* ── Amenities ── */
.vd-amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 36px;
}

.vd-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 248, 239, 0.04);
  border: 1px solid rgba(255, 248, 239, 0.07);
  border-radius: 12px;
  font-size: 0.87rem;
  color: rgba(255, 248, 239, 0.8);
}

.vd-amenity svg { color: #cc8650; flex-shrink: 0; }

/* ── Location ── */
.vd-map-placeholder {
  height: 320px;
  background: rgba(45, 31, 21, 0.6);
  border: 1px solid rgba(204, 134, 80, 0.12);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 248, 239, 0.4);
  margin: 16px 0 16px;
}

.vd-map-placeholder svg { color: #cc8650; opacity: 0.6; }

.vd-nearby {
  font-size: 0.88rem;
  color: rgba(255, 248, 239, 0.55);
  line-height: 1.7;
  margin: 0 0 36px;
}

/* ── Investment Section ── */
.vd-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 16px 0 0;
}

.vd-metric {
  text-align: center;
  padding: 20px 14px;
  background: rgba(204, 134, 80, 0.06);
  border: 1px solid rgba(204, 134, 80, 0.14);
  border-radius: 16px;
}

.vd-metric strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: #e4ba96;
  margin-bottom: 4px;
}

.vd-metric span {
  font-size: 0.78rem;
  color: rgba(255, 248, 239, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Sidebar ── */
.vd-sidebar {
  position: sticky;
  top: 110px;
  background:
    radial-gradient(circle at top left, rgba(204, 134, 80, 0.1), transparent 52%),
    linear-gradient(145deg, rgba(41, 28, 20, 0.96), rgba(31, 22, 16, 0.96));
  border: 1px solid rgba(255, 248, 239, 0.12);
  border-radius: 24px;
  padding: 34px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 70px rgba(8, 6, 4, 0.38);
}

.vd-sidebar__label {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 248, 239, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vd-sidebar__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.currency-tabs {
  display: flex;
  flex: 1 1 100%;
  gap: 4px;
  padding: 3px;
  border-radius: 10px;
  background: rgba(255, 248, 239, 0.08);
  border: 1px solid rgba(255, 248, 239, 0.1);
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.currency-tab {
  flex: 1 1 0;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: rgba(255, 248, 239, 0.7);
  font: 700 0.76rem "Manrope", sans-serif;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.currency-tab:hover {
  color: #fff8ef;
}

.currency-tab--active {
  background: #b89b53;
  color: #100c08;
}

.vd-sidebar__price {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.05rem, 4vw, 2.55rem);
  font-weight: 600;
  color: #d9b464;
  line-height: 1;
}

.vd-sidebar__price-label {
  margin: 0 0 18px;
  font-size: 0.78rem;
  color: rgba(255, 248, 239, 0.52);
}

.vd-side-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  border-radius: 12px;
  border: 1px solid rgba(255, 248, 239, 0.12);
  margin-top: 10px;
  font-weight: 600;
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.vd-side-btn:hover {
  transform: translateY(-1px);
}

.vd-side-btn--primary {
  margin-top: 8px;
  background: #b89b53;
  border-color: #b89b53;
  color: #120d09;
  font-size: 1.05rem;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.01em;
}

.vd-side-btn--primary:hover {
  background: #c5a761;
  border-color: #c5a761;
}

.vd-side-btn--line {
  background: rgba(255, 248, 239, 0.02);
  color: #fff8ef;
}

.vd-side-btn--line:hover {
  border-color: rgba(204, 134, 80, 0.42);
  background: rgba(204, 134, 80, 0.08);
}

.vd-side-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.vd-side-btn--ghost {
  min-height: 56px;
  margin-top: 0;
  background: transparent;
  color: rgba(255, 248, 239, 0.86);
  justify-content: center;
}

.vd-side-btn--ghost:hover {
  border-color: rgba(204, 134, 80, 0.36);
  color: #fff8ef;
  background: rgba(204, 134, 80, 0.08);
}

.vd-side-btn--saved {
  border-color: rgba(204, 134, 80, 0.55);
  background: rgba(204, 134, 80, 0.14);
  color: #f1cb9f;
}

/* ── Related Section ── */
.vd-related {
  padding: 60px 0;
  background: rgba(20, 15, 10, 0.6);
}

.vd-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

/* ── Compact Footer ── */
.page-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 248, 239, 0.08);
  background: rgba(14, 11, 8, 0.9);
}

.page-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 248, 239, 0.4);
}

.page-footer__inner a {
  color: #cc8650;
  transition: color 0.2s ease;
}

.page-footer__inner a:hover { color: #e4ba96; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .vd-layout {
    grid-template-columns: 1fr 340px;
    gap: 36px;
  }
  .vd-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .vd-gallery {
    grid-template-columns: 1fr;
    width: min(calc(100% - 24px), 1180px);
    margin: 10px auto 0;
    height: auto;
  }
  .vd-gallery__main {
    height: 320px;
    border-radius: 20px 20px 0 0;
  }
  .vd-thumbs {
    grid-template-rows: 1fr;
    grid-template-columns: repeat(4, 1fr);
    height: 110px;
    border-radius: 0 0 20px 20px;
  }
  .vd-layout {
    grid-template-columns: 1fr;
  }
  .vd-sidebar { top: 92px; }
  .vd-sidebar__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .vd-related__grid {
    grid-template-columns: 1fr 1fr;
  }
  .vd-amenities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vd-gallery {
    width: min(calc(100% - 16px), 1180px);
    margin-top: 8px;
    padding-top: 0;
  }
  .vd-stats {
    flex-wrap: wrap;
  }
  .vd-stat {
    min-width: 33%;
  }
  .vd-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .vd-amenities {
    grid-template-columns: 1fr 1fr;
  }
  .vd-related__grid {
    grid-template-columns: 1fr;
  }
  .vd-sidebar {
    padding: 22px;
    top: 82px;
  }
  .currency-tabs {
    width: 100%;
  }
  .currency-tab {
    flex: 1;
    min-width: 0;
  }
  .vd-side-split {
    grid-template-columns: 1fr;
  }
  .page-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
/* Keep sticky sidebar behavior available on this page */
.page-shell {
  overflow-x: hidden;
  overflow-y: visible;
}
