:root {
  --dark: #0a0a0a;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --dark-4: #2a2a2a;
  --gold: #c9a84c;
  --gold-light: #e0c872;
  --gold-dark: #a8893a;
  --white: #ffffff;
  --gray: #999;
  --light-gray: #f5f5f5;
  --surface: #ffffff;
  --surface-muted: #f8f7f4;
  --border: rgba(20,20,20,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

/* Navbar */
.lux-navbar {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0.3rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.lux-navbar .navbar-brand img { height: 80px; }
.lux-navbar .nav-link {
  color: var(--white) !important;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem !important;
  transition: color 0.3s;
}
.lux-navbar .nav-link:hover,
.lux-navbar .nav-link.active { color: var(--gold) !important; }
.lux-navbar .navbar-toggler {
  border-color: var(--gold);
  color: var(--gold);
}
.lux-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a84c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.lux-contact-bar {
  background: var(--dark-2);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--gray);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lux-contact-bar a { color: var(--gold); margin-left: 1.5rem; }
.lux-contact-bar i { margin-right: 0.4rem; }

/* Hero */
.lux-hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lux-hero video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.lux-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
  z-index: 1;
}
.lux-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.lux-hero-content h3 {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.lux-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* Marketplace hero */
.market-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #f5f1e8, #ffffff);
}
.market-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.market-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.market-hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #efe6d4, #ffffff);
}
.market-hero-content {
  position: relative;
  max-width: 640px;
  padding: 6rem 0;
  margin: 0 auto;
  text-align: center;
}
.market-strap {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.market-hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.market-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.market-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Marketplace hero search */
.market-search {
  margin-top: -2.5rem;
  position: relative;
  z-index: 4;
}

.market-search-form {
  max-width: 720px;
  margin: 0 auto;
}

.market-search-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(20,20,20,0.08);
  padding: 1rem 1.2rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.market-search-input-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.market-search-input-wrap input {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-muted);
  color: #1f1f1f;
  font-size: 0.9rem;
  outline: none;
}

.market-search-input-wrap input:focus {
  border-color: var(--gold);
}

.market-search-pills {
  display: flex;
  gap: 3px;
  background: var(--surface-muted);
  border-radius: 8px;
  padding: 3px;
}

.market-pill {
  background: transparent;
  border: none;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  cursor: pointer;
  border-radius: 6px;
}

.market-pill:hover {
  color: #1f1f1f;
}

.market-search-btn {
  background: var(--gold);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 576px) {
  .market-search-bar {
    flex-direction: column;
  }
}

/* Section styles */
.lux-section {
  padding: 5rem 0;
}
.lux-section-dark { background: var(--dark); }
.lux-section-darker { background: var(--dark-2); }
.lux-section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.lux-section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.lux-section-title .gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto;
}
.lux-section-title p { color: var(--gray); }

.market-section {
  padding: 4.5rem 0;
  color: #1f1f1f;
}
.market-section-light {
  background: var(--surface);
}
.market-section-muted {
  background: var(--surface-muted);
}
.market-section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.market-section-title h2 {
  font-size: 2.3rem;
  color: #1a1a1a;
}
.market-section-title p {
  color: var(--gray);
}

.market-section .lux-prop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(20,20,20,0.06);
}
.market-section .lux-prop-card:hover {
  box-shadow: 0 20px 50px rgba(20,20,20,0.12);
  border-color: rgba(201,168,76,0.3);
}
.market-section .lux-prop-card .card-body h5 a { color: #1a1a1a; }
.market-section .lux-prop-card .card-body h5 a:hover { color: var(--gold-dark); }
.market-section .lux-prop-card .prop-meta {
  border-top: 1px solid var(--border);
}
.market-section .lux-prop-card .prop-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-muted);
}
.market-section .lux-prop-card .prop-price { color: var(--gold-dark); }
.market-section .lux-prop-card .card-img .badge-status {
  background: rgba(184,138,47,0.9);
  color: #1a1a1a;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

/* Category cards */
.lux-cat-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
}
.lux-cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.1);
}
.lux-cat-card img { height: 50px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.lux-cat-card h5 { font-size: 1rem; margin: 0; }

.market-cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  height: 100%;
  box-shadow: 0 12px 30px rgba(20,20,20,0.05);
}
.market-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,138,47,0.3);
  box-shadow: 0 18px 38px rgba(20,20,20,0.08);
}
.market-cat-card img { height: 52px; margin-bottom: 1rem; }
.market-cat-meta {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}
.market-cat-card h5 { font-size: 1rem; color: #1f1f1f; margin: 0; }

/* Property cards */
.lux-prop-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s;
  height: 100%;
}
.lux-prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(201,168,76,0.3);
}
.lux-prop-card .card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.lux-prop-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.lux-prop-card:hover .card-img img { transform: scale(1.05); }
.lux-prop-card .card-img .badge-status {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--gold);
  color: var(--dark);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}
.lux-prop-card .card-body { padding: 1.5rem; }
.lux-prop-card .card-body h5 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.lux-prop-card .card-body h5 a { color: var(--white); }
.lux-prop-card .card-body h5 a:hover { color: var(--gold); }
.lux-prop-card .prop-location {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.lux-prop-card .prop-location i { color: var(--gold); margin-right: 0.3rem; }
.lux-prop-card .prop-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lux-prop-card .prop-meta i { color: var(--gold); margin-right: 0.3rem; }
.lux-prop-card .prop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}
.lux-prop-card .prop-price {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.lux-prop-card .prop-actions a {
  color: var(--gray);
  margin-left: 0.8rem;
  font-size: 1.1rem;
  transition: color 0.3s;
}
.lux-prop-card .prop-actions a:hover { color: var(--gold); }

/* Buttons */
.btn-market {
  background: var(--gold);
  color: #1a1a1a;
  border: none;
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 6px;
  transition: all 0.3s;
}
.btn-market:hover {
  background: var(--gold-light);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184,138,47,0.25);
}
.btn-market-ghost {
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 6px;
  transition: all 0.3s;
}
.btn-market-ghost:hover {
  background: var(--gold);
  color: #1a1a1a;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.8rem 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.8rem 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Page header */
.lux-page-header {
  background: var(--dark-2);
  padding: 5rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.lux-page-header h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.lux-page-header .breadcrumb {
  background: none;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.lux-page-header .breadcrumb a { color: var(--gold); }
.lux-page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--gray);
  content: ">";
}
.lux-page-header .breadcrumb-item.active { color: var(--gray); }

/* Contact section */
.lux-contact-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lux-contact-card:hover { border-color: var(--gold); }
.lux-contact-card .social-links a { font-size: 1rem; margin-right: 1rem; }
.lux-contact-card .social-links i { font-size: 1rem; margin-bottom: 0; }
.lux-contact-card i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.lux-contact-card h5 { margin-bottom: 0.5rem; }
.lux-contact-card p { color: var(--gray); margin: 0; font-size: 0.9rem; }

.market-contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(20,20,20,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.market-contact-card i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.market-contact-card p { color: var(--gray); margin: 0; font-size: 0.9rem; }
.market-muted { color: var(--gray); }

/* Map */
.lux-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
  filter: grayscale(0.8) brightness(0.8);
}

.market-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 16px;
  filter: grayscale(0.4) brightness(0.95);
}
.market-map-placeholder {
  height: 320px;
  border-radius: 16px;
  background: var(--surface-muted);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.95rem;
}

/* Filter bar */
.lux-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lux-filter-bar a {
  color: var(--gray);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.lux-filter-bar a:hover,
.lux-filter-bar a.active {
  color: var(--dark);
  background: var(--gold);
  border-color: var(--gold);
}
.lux-filter-bar .dropdown-menu {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
}
.lux-filter-bar .dropdown-menu a {
  border: none;
  color: var(--white);
  padding: 0.5rem 1rem;
  display: block;
}
.lux-filter-bar .dropdown-menu a:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Pagination */
.lux-pagination .page-link {
  background: var(--dark-3);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}
.lux-pagination .page-item.active .page-link {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.lux-pagination .page-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* Footer */
.lux-footer {
  background: var(--dark-2);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.lux-footer h5 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.lux-footer p, .lux-footer li { color: var(--gray); font-size: 0.9rem; }
.lux-footer ul { list-style: none; padding: 0; }
.lux-footer ul li { margin-bottom: 0.6rem; }
.lux-footer ul li a { color: var(--gray); }
.lux-footer ul li a:hover { color: var(--gold); }
.lux-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
}
.social-links a {
  color: var(--gray);
  font-size: 1.4rem;
  margin-right: 1.5rem;
  transition: color 0.3s;
}
.social-links a:hover { color: var(--gold); }
.lux-footer .footer-logo { height: 90px; margin-bottom: 1rem; }

.sticky-social-rail {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
  border: 1px solid rgba(201,168,76,0.22);
  border-left: 0;
  background: rgba(20, 20, 20, 0.88);
  box-shadow: 0 16px 32px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}
.sticky-social-rail a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: var(--gold);
  font-size: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: color 0.25s, background 0.25s, transform 0.25s;
}
.sticky-social-rail a:last-child { border-bottom: 0; }
.sticky-social-rail a:hover,
.sticky-social-rail a:focus {
  color: var(--gold);
  background: var(--dark);
  transform: translateX(4px);
}

@media (max-width: 767.98px) {
  .sticky-social-rail {
    top: 50%;
    bottom: auto;
    left: 0;
    transform: translateY(-50%);
    flex-direction: column;
  }
  .sticky-social-rail a {
    width: 38px;
    height: 38px;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .sticky-social-rail a:last-child { border-bottom: 0; }
  .sticky-social-rail a:hover,
  .sticky-social-rail a:focus {
    color: var(--gold);
    background: var(--dark);
    transform: translateX(3px);
  }
}

.scroll-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: var(--gold);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s, background 0.25s, color 0.25s;
}
.scroll-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-to-top:hover,
.scroll-to-top:focus {
  color: var(--gold);
  background: var(--dark);
  border-color: rgba(201,168,76,0.45);
}

.property-chat {
  position: fixed;
  right: 1.25rem;
  bottom: 5.25rem;
  z-index: 1050;
}
.property-chat-toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: var(--gold);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  padding: 0;
  box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}
.property-chat-toggle:hover {
  background: var(--gold-light);
}
.property-chat.is-open .property-chat-toggle {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}
.property-chat-panel {
  position: absolute;
  right: 0;
  bottom: 3.55rem;
  width: min(320px, calc(100vw - 1.5rem));
  max-height: min(460px, calc(100dvh - 6.75rem));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(18,18,18,0.98);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(0,0,0,0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.25s, transform 0.25s;
}
.property-chat.is-open .property-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.property-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.7rem 0.8rem;
  background: rgba(255,255,255,0.035);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.property-chat-header > div { min-width: 0; }
.property-chat-header span {
  display: block;
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.property-chat-header strong {
  color: var(--white);
  display: block;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.property-chat-close {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.property-chat-close:hover { color: var(--gold); }
.property-chat-messages {
  flex: 1 1 auto;
  min-height: 92px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding: 0.7rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.42) rgba(255,255,255,0.04);
}
.chat-message {
  width: fit-content;
  max-width: 94%;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.45;
  margin-bottom: 0.5rem;
  overflow-wrap: anywhere;
}
.chat-message.assistant {
  color: rgba(255,255,255,0.86);
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.07);
}
.chat-message.user {
  margin-left: auto;
  max-width: 82%;
  color: var(--dark);
  background: var(--gold);
}
.chat-message.loading {
  color: var(--gray);
}
.chat-match-list {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}
.chat-match-card {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 0.12rem;
  padding: 0.82rem 0.6rem 0.6rem;
  color: var(--gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: 8px;
}
.chat-match-card:hover {
  color: var(--gray);
  border-color: rgba(201,168,76,0.38);
  background: rgba(201,168,76,0.08);
}
.chat-match-card strong {
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.25;
  padding-right: 4.8rem;
  overflow-wrap: anywhere;
}
.chat-match-card b {
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  max-width: 4.5rem;
  color: var(--dark);
  background: var(--gold);
  border-radius: 999px;
  padding: 0.12rem 0.35rem;
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-match-card em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
  font-size: 0.8rem;
}
.chat-match-card span,
.chat-match-card small {
  display: block;
  color: var(--gray);
  font-size: 0.76rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.chat-request-link {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: var(--gold);
  border-radius: 4px;
  padding: 0.5rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.chat-request-link:hover {
  color: var(--dark);
  background: var(--gold-light);
}
.property-chat-prompts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0 0.7rem 0.65rem;
}
.property-chat-prompts button {
  min-width: 0;
  color: var(--gold);
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 4px;
  padding: 0.42rem 0.35rem;
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.property-chat-prompts button:hover {
  color: var(--dark);
  background: var(--gold);
}
.property-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 0.4rem;
  padding: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.property-chat-form input {
  min-width: 0;
  color: var(--white);
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.6rem 0.7rem;
  font-size: 0.8rem;
}
.property-chat-form input::placeholder { color: var(--gray); }
.property-chat-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
}
.property-chat-form button {
  color: var(--dark);
  background: var(--gold);
  border: 0;
  border-radius: 4px;
}

@media (max-width: 767.98px) {
  .scroll-to-top {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 40px;
    height: 40px;
  }
  .property-chat {
    right: 0.7rem;
    bottom: 4.5rem;
  }
  .property-chat-toggle {
    width: 44px;
    height: 44px;
  }
  .property-chat-panel {
    width: min(320px, calc(100vw - 1.5rem));
    max-height: min(430px, calc(100dvh - 6.25rem));
  }
}

.lux-testimonial-card {
  position: relative;
  min-height: 100%;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(30,30,30,0.98), rgba(20,20,20,0.98));
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.lux-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(201,168,76,0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s;
}
.lux-testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.42);
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}
.lux-testimonial-card:hover::before { opacity: 1; }
.testimonial-mark,
.testimonial-stars,
.testimonial-quote,
.testimonial-author {
  position: relative;
  z-index: 1;
}
.testimonial-mark {
  color: rgba(201,168,76,0.28);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12rem;
  margin-bottom: 1rem;
}
.testimonial-quote {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.testimonial-author img,
.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  flex: 0 0 54px;
}
.testimonial-author img {
  object-fit: cover;
}
.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.testimonial-author h5 {
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
}
.testimonial-author span {
  display: block;
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}
.lux-empty-state {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: 8px;
}
.lux-empty-state i {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.lux-empty-state p {
  color: var(--gray);
  margin-bottom: 0;
}

/* About tabs */
.lux-tabs .nav-pills .nav-link {
  color: var(--gray);
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s;
}
.lux-tabs .nav-pills .nav-link.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* CEO section */
.lux-ceo {
  background: var(--dark-3);
  border-radius: 12px;
  padding: 3rem;
  border: 1px solid rgba(201,168,76,0.1);
}
.lux-ceo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

/* Service cards */
.lux-service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
}
.lux-service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.lux-service-card img {
  height: 60px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}
.lux-service-card h5 { margin-bottom: 1rem; }
.lux-service-card p { color: var(--gray); font-size: 0.9rem; }

/* Property detail */
.lux-gallery img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
}
.lux-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  overflow-x: auto;
}
.lux-gallery-thumbs img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  border: 2px solid transparent;
}
.lux-gallery-thumbs img:hover,
.lux-gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--gold);
}
.lux-overview-table {
  width: 100%;
}
.lux-overview-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lux-overview-table td {
  padding: 0.8rem 0;
  font-size: 0.95rem;
}
.lux-overview-table td:first-child { color: var(--gray); }
.lux-overview-table td:last-child { text-align: right; font-weight: 500; }

/* Sidebar */
.lux-sidebar {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
}
.lux-sidebar h5 { color: var(--gold); margin-bottom: 1.5rem; }
.lux-sidebar .form-control {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 4px;
  padding: 0.7rem 1rem;
  margin-bottom: 0.8rem;
}
.lux-sidebar .form-control::placeholder { color: var(--gray); }
.lux-sidebar .form-control:focus {
  border-color: var(--gold);
  box-shadow: none;
}
.lux-sidebar textarea.form-control { min-height: 100px; }

/* Contact buttons */
.lux-contact-btn {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.lux-contact-btn a {
  flex: 1;
  text-align: center;
  padding: 0.6rem;
  border-radius: 4px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}
.lux-contact-btn .btn-call { background: var(--dark); border: 1px solid rgba(255,255,255,0.1); }
.lux-contact-btn .btn-whatsapp { background: #25D366; }
.lux-contact-btn .btn-telegram { background: #27A7E7; }

/* Facilities list */
.lux-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lux-facilities span {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--gray);
}

/* Form styling for contact page */
.lux-form .form-control {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 4px;
  padding: 0.8rem 1rem;
}
.lux-form .form-control::placeholder { color: var(--gray); }
.lux-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
}
.lux-form textarea.form-control { min-height: 150px; }

.property-request-section {
  background: var(--dark-2);
  padding: 4rem 0;
}
.property-request-card {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(145deg, rgba(30,30,30,0.98), rgba(10,10,10,0.98));
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}
.property-request-copy span {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.property-request-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}
.property-request-copy p {
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}
.property-request-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.property-request-form input,
.property-request-form select,
.property-request-form textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 4px;
  padding: 0.75rem 0.95rem;
}
.property-request-form textarea {
  min-height: 120px;
  resize: vertical;
}
.property-request-form input::placeholder,
.property-request-form textarea::placeholder {
  color: var(--gray);
}
.property-request-form input:focus,
.property-request-form select:focus,
.property-request-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
}
.request-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 5.25rem;
  z-index: 1060;
  width: min(360px, calc(100vw - 2rem));
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  color: var(--white);
  background: rgba(20,20,20,0.96);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.25s, transform 0.25s;
}
.request-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.request-toast-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  color: var(--dark);
  background: var(--gold);
  border-radius: 50%;
}
.request-toast.error .request-toast-icon {
  color: var(--white);
  background: #dc3545;
}
.request-toast strong {
  display: block;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.request-toast.error strong { color: #ffb4bd; }
.request-toast p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.request-toast-close {
  margin-left: auto;
  color: var(--gray);
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
}
.request-toast-close:hover { color: var(--gold); }

/* Rich text content */
.lux-rich-text { color: var(--gray); line-height: 1.8; }
.lux-rich-text p { margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 768px) {
  .lux-hero { height: 60vh; }
  .lux-hero-content h1 { font-size: 2rem; }
  .lux-section { padding: 3rem 0; }
  .lux-page-header { padding: 3rem 0 2rem; }
  .lux-page-header h1 { font-size: 2rem; }
  .lux-gallery img { height: 280px; }
  .market-hero-content { padding: 4rem 0; }
  .market-hero-actions { flex-direction: column; align-items: center; }
  .market-section { padding: 3rem 0; }
  .market-section-title h2 { font-size: 1.9rem; }
  .market-search { margin-top: -1.5rem; }
  .market-search-bar { flex-direction: column; }
  .market-field-submit { display: block; text-align: center; }
  .market-field-submit .btn-market { width: auto; min-width: 200px; display: inline-block; }
  .property-request-card { grid-template-columns: 1fr; padding: 1.4rem; }
  .request-grid { grid-template-columns: 1fr; }
  .request-toast {
    right: 0.85rem;
    bottom: 4.75rem;
  }
}

@media (max-width: 992px) {
}

/* ================================================
   SEARCH BAR + FILTER DRAWER + CHIPS
   ================================================ */

.lux-search-bar {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  background: var(--dark-3);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  flex-wrap: wrap;
}

.lux-search-input-wrap {
  flex: 1;
  min-width: 180px;
  position: relative;
}

.lux-search-input-wrap input {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--dark-4);
  border-radius: 8px;
  padding: 0.6rem;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
}

.lux-search-input-wrap input:focus {
  border-color: var(--gold);
}

.lux-suggest-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--dark-2);
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  display: none;
  z-index: 100;
  max-height: 260px;
  overflow-y: auto;
}

.lux-suggest-dropdown.is-open { display: block; }

.lux-suggest-group-label {
  padding: 0.4rem 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--gray);
  text-transform: uppercase;
  border-top: 1px solid var(--dark-4);
}

.lux-suggest-item {
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--white);
}

.lux-suggest-item:hover,
.lux-suggest-item.is-highlighted {
  background: var(--dark-3);
  color: var(--gold);
}

.lux-suggest-item .count {
  color: var(--gray);
  font-size: 0.75rem;
}

.lux-status-pills {
  display: flex;
  gap: 3px;
  background: var(--dark);
  border-radius: 8px;
  padding: 3px;
}

.lux-pill {
  background: transparent;
  border: none;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--gray);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.lux-pill.is-active {
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 600;
}

.lux-pill:hover:not(.is-active) {
  color: var(--white);
}

.lux-filter-toggle {
  background: var(--dark);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.lux-filter-badge {
  background: var(--gold);
  color: #1a1a1a;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.lux-search-btn {
  background: var(--gold);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.lux-filter-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
  align-items: center;
}

.lux-chip {
  background: var(--dark-3);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 0.2rem 0.5rem 0.2rem 0.7rem;
  font-size: 0.75rem;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lux-chip-remove {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.7rem;
  cursor: pointer;
}

.lux-chip-remove:hover {
  color: var(--white);
}

.lux-clear-all {
  font-size: 0.75rem;
  color: var(--gray);
  margin-left: 0.4rem;
}

.lux-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.lux-filter-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.lux-filter-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.lux-filter-drawer-panel {
  position: absolute;
  top: 4.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 320px;
  max-width: calc(100vw - 3rem);
  background: var(--dark-2);
  border: 1px solid var(--gold);
  border-radius: 12px;
  box-shadow: -8px 0 24px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.lux-filter-drawer.is-open .lux-filter-drawer-panel {
  transform: translateX(0);
}

.lux-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--dark-4);
  color: var(--gold);
  font-size: 1rem;
}

.lux-drawer-header button {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.2rem;
  cursor: pointer;
}

.lux-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark-4);
}

.lux-drawer-body::-webkit-scrollbar {
  width: 6px;
}

.lux-drawer-body::-webkit-scrollbar-track {
  background: var(--dark-4);
  border-radius: 3px;
}

.lux-drawer-body::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.lux-drawer-body::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

.lux-drawer-group {
  margin-bottom: 1.2rem;
}

.lux-drawer-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.lux-drawer-field {
  flex: 1;
}

.lux-drawer-field select,
.lux-drawer-field input[type="number"],
.lux-drawer-field input[type="text"] {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--dark-4);
  border-radius: 6px;
  padding: 0.5rem 1.8rem 0.5rem 0.6rem;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 14px 14px;
}

.lux-drawer-field select:focus,
.lux-drawer-field input:focus {
  border-color: var(--gold);
}

.lux-drawer-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 1.2px;
  color: var(--gray);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.lux-type-chips {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.lux-type-chip {
  background: var(--dark);
  border: 1px solid var(--dark-4);
  border-radius: 5px;
  padding: 0.3rem 0.6rem;
  font-size: 0.78rem;
  color: var(--white);
  cursor: pointer;
}

.lux-type-chip.is-active {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
  font-weight: 600;
}

.lux-amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.lux-amenity-check {
  font-size: 0.8rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.lux-amenity-check input[type="checkbox"] {
  accent-color: var(--gold);
}

.lux-drawer-footer {
  padding: 0.8rem 1.2rem;
  border-top: 1px solid var(--dark-4);
  display: flex;
  gap: 0.6rem;
}

.lux-btn-clear {
  flex: 1;
  background: transparent;
  border: 1px solid var(--dark-4);
  color: var(--gray);
  border-radius: 8px;
  padding: 0.6rem;
  text-align: center;
  font-size: 0.85rem;
}

.lux-btn-apply {
  flex: 1;
  background: var(--gold);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  padding: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.lux-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}

.lux-results-count {
  color: var(--gray);
  font-size: 0.85rem;
}

.lux-sort {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray);
}

.lux-sort-link {
  color: var(--gray);
}

.lux-sort-link.is-active,
.lux-sort-link:hover {
  color: var(--gold);
}

.lux-section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.lux-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.lux-section-header h2 {
  font-size: 1.5rem;
  color: var(--white);
}

.lux-no-results {
  text-align: center;
  padding: 2rem;
  color: var(--gray);
  font-size: 0.95rem;
  grid-column: 1 / -1;
}
