/* Venue detail — layout from yes_prototype_html/event_detail.html; scoped to .venue-detail-page */

.venue-detail-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.venue-detail-page .nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.venue-detail-page .nav-logo {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--black);
  text-decoration: none;
}
.venue-detail-page .nav-logo em {
  font-style: normal;
  color: var(--accent);
}
.venue-detail-page .nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.venue-detail-page .btn-ghost {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  background: transparent;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  cursor: pointer;
  transition: all var(--transition);
}
.venue-detail-page .btn-ghost:hover {
  border-color: var(--gray-400);
  color: var(--black);
}
.venue-detail-page .btn-primary {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--accent);
  border: none;
  border-radius: var(--radius-full);
  padding: 8px 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.venue-detail-page .btn-primary:hover {
  background: #6d28d9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}
.venue-detail-page .nav-right a.btn-ghost,
.venue-detail-page .nav-right a.btn-primary {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Venue detail photo mosaic — vd-gallery-* avoids generic gallery class collisions */
.venue-detail-page .vd-gallery-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 32px;
  box-sizing: border-box;
}
.venue-detail-page .vd-gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.venue-detail-page .vd-gallery-main {
  grid-row: 1 / 3;
  background: #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}
.venue-detail-page .vd-gallery-main--photo {
  padding: 0;
}
.venue-detail-page .vd-gallery-main--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
  z-index: 1;
}
.venue-detail-page .vd-gallery-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.venue-detail-page .vd-gallery-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.venue-detail-page .vd-gallery-ph svg {
  width: min(140px, 32%);
  height: auto;
  opacity: 0.55;
}
.venue-detail-page .vd-gallery-thumb {
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: default;
  overflow: hidden;
  transition: filter var(--transition);
  min-width: 0;
  min-height: 0;
}
.venue-detail-page .vd-gallery-thumb svg {
  width: min(72px, 45%);
  height: auto;
  opacity: 0.5;
}
.venue-detail-page .vd-gallery-thumb--click {
  cursor: pointer;
  padding: 0;
}
.venue-detail-page .vd-gallery-thumb:hover {
  filter: brightness(0.92);
}
.venue-detail-page .vd-gallery-thumb--2,
.venue-detail-page .vd-gallery-thumb--empty:nth-child(2) {
  background: #ddd6fe;
}
.venue-detail-page .vd-gallery-thumb--3,
.venue-detail-page .vd-gallery-thumb--empty:nth-child(3) {
  background: #ede9fe;
}
.venue-detail-page .vd-gallery-thumb--4,
.venue-detail-page .vd-gallery-thumb--empty:nth-child(4) {
  background: #c4b5fd;
}
.venue-detail-page .vd-gallery-thumb--5,
.venue-detail-page .vd-gallery-thumb--empty:nth-child(5) {
  background: #e0d9fc;
}
.venue-detail-page .vd-gallery-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.venue-detail-page .vd-gallery-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 20, 0.48);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 1;
}
.venue-detail-page .vd-gallery-grid--single {
  grid-template-columns: 1fr;
  grid-template-rows: min(420px, 52vw);
}
.venue-detail-page .vd-gallery-grid--single .vd-gallery-main {
  grid-row: 1;
  grid-column: 1;
  min-height: 280px;
}
.venue-detail-page .vd-gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition);
}
.venue-detail-page .vd-gallery-thumb--click:hover::after {
  background: rgba(0, 0, 0, 0.06);
}
.venue-detail-page .show-all-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.venue-detail-page .show-all-btn:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.venue-detail-page .sticky-tabs {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 40px 10px;
}
.venue-detail-page .tabs-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}
.venue-detail-page .tab-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-400);
  text-decoration: none;
  padding: 14px 18px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: var(--font-sans);
}
.venue-detail-page .tab-link:hover {
  color: var(--black);
}
.venue-detail-page .tab-link.active {
  color: var(--black);
  border-bottom-color: var(--black);
  font-weight: 500;
}

/* Reserved vertical gap below tab strip + full-width rule (flow layout; survives cache/CSS quirks) */
.venue-detail-page .detail-after-tabs {
  min-height: 40px;
  height: 40px;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 100%;
  pointer-events: none;
}

.venue-detail-page .detail-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.venue-detail-page #section-about,
.venue-detail-page #section-pricing,
.venue-detail-page #section-location,
.venue-detail-page #enquiry {
  scroll-margin-top: 118px;
}

.venue-detail-page .venue-header {
  margin-bottom: 28px;
}
.venue-detail-page .venue-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.venue-detail-page .venue-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.venue-detail-page .venue-title em {
  font-style: italic;
  color: var(--accent);
}
.venue-detail-page .header-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-top: 6px;
}
.venue-detail-page .action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-600);
  background: transparent;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--transition);
}
.venue-detail-page .action-btn:hover {
  border-color: var(--gray-400);
  color: var(--black);
}
.venue-detail-page .action-btn svg {
  width: 13px;
  height: 13px;
}
.venue-detail-page .action-btn.saved {
  color: #ef4444;
  border-color: #fecaca;
  background: #fff5f5;
}
.venue-detail-page a.action-btn {
  text-decoration: none;
}

.venue-detail-page .venue-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.venue-detail-page .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--gray-500);
}
.venue-detail-page .meta-pill svg {
  width: 13px;
  height: 13px;
  color: var(--gray-400);
}
.venue-detail-page .meta-sep {
  width: 1px;
  height: 14px;
  background: var(--gray-200);
}

.venue-detail-page .badge-tier {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.2px;
}
.venue-detail-page .badge-tier.badge-offer {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(124, 58, 237, 0.2);
}
.venue-detail-page .badge-tier.badge-unclaimed {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid rgba(234, 88, 12, 0.25);
}

.venue-detail-page .action-btn--claim {
  color: var(--accent);
  border-color: rgba(124, 58, 237, 0.35);
  background: var(--accent-light);
}
.venue-detail-page .action-btn--claim:hover {
  border-color: var(--accent);
  color: #5b21b6;
}

.venue-detail-page .claim-venue-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 36px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(234, 88, 12, 0.22);
  background: linear-gradient(135deg, #fff7ed 0%, #fff 55%);
}
.venue-detail-page .claim-venue-banner-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
.venue-detail-page .claim-venue-banner-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-600);
  max-width: 52ch;
}
.venue-detail-page .claim-venue-banner-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.venue-detail-page .claim-venue-banner-btn {
  white-space: nowrap;
  margin: 12px 0;
}
.venue-detail-page .claim-venue-banner-status,
.venue-detail-page .claim-modal-status {
  font-size: 14px;
  line-height: 1.45;
  color: #9a3412;
  font-weight: 500;
}
.venue-detail-page .claim-modal-status {
  margin: 0;
}
.venue-detail-page .claim-venue-banner-status {
  margin: 12px 0;
}
.venue-detail-page .pm-sheet--wide {
  max-width: 520px;
}
.venue-detail-page .claim-check-field {
  margin-top: 4px;
}
.venue-detail-page .claim-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--gray-600);
  cursor: pointer;
}
.venue-detail-page .claim-check-input {
  margin-top: 3px;
  flex-shrink: 0;
}
.venue-detail-page .eq-textarea {
  min-height: 96px;
  resize: vertical;
}

.venue-detail-page .quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.venue-detail-page .qs-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/*
 * Property stat is a real <a>: kill UA link underline / blue so it matches sibling <div class="qs-card"> tiles.
 */
.venue-detail-page .quick-stats > a.qs-card.qs-card--property,
.venue-detail-page .quick-stats > a.qs-card.qs-card--property:link,
.venue-detail-page .quick-stats > a.qs-card.qs-card--property:visited,
.venue-detail-page .quick-stats > a.qs-card.qs-card--property:hover,
.venue-detail-page .quick-stats > a.qs-card.qs-card--property:active,
.venue-detail-page .quick-stats > a.qs-card.qs-card--property:focus,
.venue-detail-page .quick-stats > a.qs-card.qs-card--property:focus-visible {
  box-sizing: border-box;
  cursor: pointer !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
  color: var(--black) !important;
  -webkit-text-fill-color: var(--black) !important;
}
.venue-detail-page .quick-stats > a.qs-card.qs-card--property .qs-icon,
.venue-detail-page .quick-stats > a.qs-card.qs-card--property .qs-val,
.venue-detail-page .quick-stats > a.qs-card.qs-card--property .qs-label {
  text-decoration: none !important;
  text-decoration-line: none !important;
}
.venue-detail-page .quick-stats > a.qs-card.qs-card--property .qs-val {
  color: var(--black) !important;
  -webkit-text-fill-color: var(--black) !important;
}
.venue-detail-page .quick-stats > a.qs-card.qs-card--property .qs-label {
  color: var(--gray-400) !important;
  -webkit-text-fill-color: var(--gray-400) !important;
}
.venue-detail-page .qs-icon {
  font-size: 20px;
  line-height: 1;
}
.venue-detail-page .qs-val {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: var(--black);
}
.venue-detail-page .qs-label {
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.venue-detail-page .section-block {
  margin-bottom: 36px;
}
.venue-detail-page .section-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.venue-detail-page .about-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 300;
}
.venue-detail-page .about-text p + p {
  margin-top: 12px;
}
.venue-detail-page .read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--accent);
  cursor: pointer;
  margin-top: 10px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-weight: 500;
  padding: 0;
}
.venue-detail-page .about-empty {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 300;
}

.venue-detail-page .vd-link-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.venue-detail-page .vd-link-card-item {
  margin: 0;
}
.venue-detail-page .vd-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--gray-50);
  text-decoration: none;
  color: var(--black);
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.venue-detail-page .vd-link-card:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, white);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
}
.venue-detail-page .vd-link-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--accent);
  flex-shrink: 0;
}
.venue-detail-page .vd-link-card-icon svg {
  width: 20px;
  height: 20px;
}
.venue-detail-page .vd-link-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.venue-detail-page .vd-link-card-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
.venue-detail-page .vd-link-card-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.venue-detail-page .vd-link-card-arrow {
  color: var(--gray-400);
  flex-shrink: 0;
}
.venue-detail-page .vd-link-card:hover .vd-link-card-arrow {
  color: var(--accent);
}

.venue-detail-page .vd-social-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.venue-detail-page .vd-social-card-item {
  margin: 0;
}
.venue-detail-page .vd-social-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--gray-50);
  text-decoration: none;
  color: var(--black);
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.venue-detail-page .vd-social-card:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, white);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
}
.venue-detail-page .vd-social-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--black);
  flex-shrink: 0;
}
.venue-detail-page .vd-social-card-icon svg {
  width: 16px;
  height: 16px;
}
.venue-detail-page .vd-social-card-label {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
.venue-detail-page .vd-social-card-arrow {
  color: var(--gray-400);
  flex-shrink: 0;
}
.venue-detail-page .vd-social-card:hover .vd-social-card-arrow {
  color: var(--accent);
}

.venue-detail-page .vd-contact-loading {
  margin: 0;
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 300;
}
.venue-detail-page .vd-contact-cards--modal {
  margin-bottom: 8px;
}
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--gray-50);
}
.venue-detail-page .vd-contact-gate-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-600);
  font-weight: 300;
}
.venue-detail-page .vd-contact-reveal-btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--accent);
  border: none;
  border-radius: var(--radius-full);
  padding: 9px 18px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.venue-detail-page .vd-contact-reveal-btn:hover:not(:disabled) {
  background: #6d28d9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}
.venue-detail-page .vd-contact-reveal-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}
.venue-detail-page .vd-contact-gate-error {
  margin: 0;
  font-size: 13px;
  color: #b91c1c;
}
.venue-detail-page .vd-contact-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.venue-detail-page .vd-contact-card-item {
  margin: 0;
}
.venue-detail-page .vd-contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--gray-50);
}
.venue-detail-page .vd-contact-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.venue-detail-page .vd-contact-card-value,
.venue-detail-page .vd-contact-card-value-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  word-break: break-word;
}
.venue-detail-page .vd-contact-card-value-link {
  text-decoration: none;
}
.venue-detail-page .vd-contact-card-value-link:hover {
  color: var(--accent);
}

.venue-detail-page .vd-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.venue-detail-page .vd-video-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.venue-detail-page .vd-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #0f0f14;
  box-shadow: 0 10px 30px rgba(15, 15, 20, 0.08);
}
.venue-detail-page .vd-video-frame iframe,
.venue-detail-page .vd-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #0f0f14;
}
.venue-detail-page .vd-video-title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--black);
}

.venue-detail-page .vd-floorplan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.venue-detail-page .vd-floorplan-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.venue-detail-page .vd-floorplan-card:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--gray-200));
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.1);
  transform: translateY(-1px);
}
.venue-detail-page .vd-floorplan-media {
  display: block;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(45deg, #f4f4f1 25%, transparent 25%),
    linear-gradient(-45deg, #f4f4f1 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f4f4f1 75%),
    linear-gradient(-45deg, transparent 75%, #f4f4f1 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-color: #fafaf8;
  overflow: hidden;
}
.venue-detail-page .vd-floorplan-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 10px;
  box-sizing: border-box;
}
.venue-detail-page .vd-floorplan-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid var(--gray-200);
}
.venue-detail-page .vd-floorplan-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
.venue-detail-page .vd-floorplan-action {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}

.venue-detail-page .vd-document-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.venue-detail-page .vd-document-item {
  margin: 0;
}
.venue-detail-page .vd-document-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  text-decoration: none;
  color: var(--black);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.venue-detail-page .vd-document-link:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, white);
}
.venue-detail-page .vd-document-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--accent);
  flex-shrink: 0;
}
.venue-detail-page .vd-document-icon svg {
  width: 18px;
  height: 18px;
}
.venue-detail-page .vd-document-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}
.venue-detail-page .vd-document-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.venue-detail-page .pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.venue-detail-page .pricing-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--gray-200);
}
.venue-detail-page .pricing-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-600);
  vertical-align: top;
}
.venue-detail-page .pricing-table tr:last-child td {
  border-bottom: none;
}
.venue-detail-page .pricing-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--black);
}
.venue-detail-page .pricing-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-400);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.venue-detail-page .map-placeholder {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  height: 200px;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.venue-detail-page .map-placeholder:hover {
  border-color: var(--gray-300);
}
.venue-detail-page .map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.venue-detail-page .map-pin-icon {
  font-size: 28px;
  position: relative;
  z-index: 1;
}
.venue-detail-page .map-address {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
.venue-detail-page .map-open-link {
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  position: relative;
  z-index: 1;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.venue-detail-page .enquiry-card {
  position: sticky;
  top: 80px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  animation: venueDetailFadeUp 0.4s ease both;
}
@keyframes venueDetailFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.venue-detail-page .eq-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.venue-detail-page .eq-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.venue-detail-page .eq-price {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.venue-detail-page .eq-price-unit {
  font-size: 14px;
  color: var(--gray-400);
}
.venue-detail-page .eq-price-note {
  font-size: 12px;
  color: var(--gray-400);
}
.venue-detail-page .eq-badges {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.venue-detail-page .eq-body {
  padding: 20px 24px;
}
.venue-detail-page fieldset.eq-fieldset {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.venue-detail-page .eq-disabled-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 14px;
  line-height: 1.5;
}
.venue-detail-page .eq-login-note {
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.venue-detail-page .eq-form-errors {
  font-size: 13px;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 14px;
}
.venue-detail-page .eq-field-error {
  margin: 6px 0 0;
  font-size: 12px;
  color: #b91c1c;
}
.venue-detail-page .eq-input--error,
.venue-detail-page .eq-textarea.eq-input--error {
  border-color: #fca5a5;
}
.venue-detail-page .eq-form {
  margin-bottom: 12px;
}
.venue-detail-page .eq-field {
  margin-bottom: 14px;
}
.venue-detail-page .eq-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.venue-detail-page .eq-input,
.venue-detail-page .eq-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--black);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  outline: none;
}
.venue-detail-page .eq-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}
.venue-detail-page .eq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.venue-detail-page fieldset.eq-fieldset[disabled] .eq-input,
.venue-detail-page fieldset.eq-fieldset[disabled] .eq-textarea {
  opacity: 0.65;
  cursor: not-allowed;
}
.venue-detail-page .btn-enquire-main {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background: var(--accent);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  transition: background var(--transition), transform var(--transition);
}
.venue-detail-page .btn-enquire-main:hover {
  background: #6d28d9;
}
.venue-detail-page .btn-enquire-main:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.venue-detail-page .btn-shortlist-main {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 16px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.venue-detail-page .btn-shortlist-main:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}
.venue-detail-page .eq-trust {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.venue-detail-page .eq-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-400);
}
.venue-detail-page .eq-trust-item svg {
  width: 13px;
  height: 13px;
  color: var(--gray-300);
  flex-shrink: 0;
}

.venue-detail-page .similar-section {
  padding: 0 40px 64px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-200);
  padding-top: 48px;
}
.venue-detail-page .similar-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.venue-detail-page .similar-header h2 {
  font-size: 20px;
  font-weight: 500;
}
.venue-detail-page .similar-header a {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
}
.venue-detail-page .similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.venue-detail-page .sim-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.venue-detail-page .sim-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.venue-detail-page .sim-card-hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
}
.venue-detail-page .sim-card .gms-rating {
  position: relative;
  z-index: 2;
}
.venue-detail-page .sim-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  background-size: cover;
  background-position: center;
}
.venue-detail-page .sim-card:hover .sim-img {
  transform: scale(1.04);
}
.venue-detail-page .sim-img.si1 {
  background: #ddd6fe;
}
.venue-detail-page .sim-img.si2 {
  background: #d1fae5;
}
.venue-detail-page .sim-img.si3 {
  background: #fee2e2;
}
.venue-detail-page .sim-img.si4 {
  background: #ede9fe;
}
.venue-detail-page .sim-body {
  padding: 14px 16px;
  position: relative;
  z-index: 0;
}
.venue-detail-page .sim-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
}
.venue-detail-page .sim-loc {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.venue-detail-page .sim-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.venue-detail-page .sim-price {
  font-size: 13px;
  font-weight: 500;
}
.venue-detail-page .sim-cap {
  font-size: 12px;
  color: var(--gray-400);
}

.venue-detail-page .venue-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
.venue-detail-page .venue-lightbox.open {
  display: flex;
}
.venue-detail-page .lightbox-inner {
  max-width: min(960px, 94vw);
  width: 94%;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.venue-detail-page .lightbox-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.venue-detail-page .lightbox-header #venue-lb-title {
  font-size: 14px;
  font-weight: 500;
  min-width: 0;
}
.venue-detail-page .lb-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.venue-detail-page .lb-counter {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}
.venue-detail-page .lb-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1;
  transition: all var(--transition);
}
.venue-detail-page .lb-close:hover {
  background: var(--gray-200);
  color: var(--black);
}
.venue-detail-page .lightbox-body {
  position: relative;
  padding: 0;
  max-height: min(80vh, 720px);
  overflow: auto;
  background: #0f0f14;
}
.venue-detail-page .lightbox-body img {
  width: 100%;
  height: auto;
  max-height: min(80vh, 720px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #0f0f14;
}
.venue-detail-page .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background var(--transition), transform var(--transition);
}
.venue-detail-page .lb-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}
.venue-detail-page .lb-nav--prev {
  left: 12px;
}
.venue-detail-page .lb-nav--next {
  right: 12px;
}

.venue-detail-page .detail-footer {
  margin-top: auto;
  border-top: 1px solid var(--gray-200);
  padding: 40px;
}
.venue-detail-page .detail-footer .footer {
  max-width: 1200px;
  margin: 0 auto;
}

/* Property stat (and any other action stat): hover + focus ring on the card / link */
.venue-detail-page .qs-card--action {
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.venue-detail-page .qs-card--action:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
}
.venue-detail-page .quick-stats > a.qs-card.qs-card--property:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (max-width: 900px) {
  .venue-detail-page .detail-layout {
    grid-template-columns: 1fr;
  }
  .venue-detail-page .vd-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .venue-detail-page .vd-gallery-main {
    grid-row: 1;
    grid-column: 1 / 3;
  }
  .venue-detail-page .vd-gallery-thumb--4,
  .venue-detail-page .vd-gallery-thumb--5,
  .venue-detail-page .vd-gallery-thumb--empty:nth-child(n + 4) {
    display: none;
  }
  .venue-detail-page .vd-video-grid,
  .venue-detail-page .vd-floorplan-grid {
    grid-template-columns: 1fr;
  }
  .venue-detail-page .vd-gallery-grid--single {
    grid-template-rows: min(280px, 58vw);
  }
  .venue-detail-page .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .venue-detail-page .vd-link-cards {
    grid-template-columns: 1fr;
  }
  .venue-detail-page .claim-venue-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .venue-detail-page .claim-venue-banner-actions {
    justify-content: flex-start;
    padding: 4px 0 8px;
  }
  .venue-detail-page .claim-venue-banner-btn {
    margin: 8px 0 12px;
    align-self: flex-start;
  }
  .venue-detail-page .similar-grid {
    grid-template-columns: 1fr;
  }
  .venue-detail-page .nav {
    padding: 0 20px;
  }
  .venue-detail-page .yes-breadcrumb--inset,
  .venue-detail-page .vd-gallery-wrap,
  .venue-detail-page .sticky-tabs,
  .venue-detail-page .detail-layout,
  .venue-detail-page .similar-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
