@charset "UTF-8";
/* line 2, app/assets/stylesheets/customer/listing.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 8, app/assets/stylesheets/customer/listing.scss */
:root {
  /* Brand Colors */
  --primary-color: #08AF86;
  --primary-green: #08af86;
  --primary-green-hover: #06946f;
  --primary-green-light: #e6f8f5;
  /* Chinese Black Colors */
  --chinese-black: #161616;
  --text-333333: #333333;
  /* Navy/Dark Colors */
  --navy-dark: #1b3765;
  --text-dark: #102348;
  --text-medium: #666666;
  --text-light: #999999;
  /* Neutral Colors */
  --border-color: #e0e0e0;
  --bg-light: #f5f5f5;
  --bg-lighter: #fafafa;
  --white: #ffffff;
  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xlg: 20px;
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --gray-border: #E0E0E0;
}

/* line 49, app/assets/stylesheets/customer/listing.scss */
body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-lighter);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================
TYPOGRAPHY
================================ */
/* line 64, app/assets/stylesheets/customer/listing.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0;
  font-family: "Work Sans", sans-serif;
}

/* line 76, app/assets/stylesheets/customer/listing.scss */
h1 {
  font-size: 28px;
  line-height: 1.3;
}

/* line 80, app/assets/stylesheets/customer/listing.scss */
h2 {
  font-size: 24px;
  line-height: 1.3;
}

/* line 84, app/assets/stylesheets/customer/listing.scss */
h3 {
  font-size: 20px;
  line-height: 1.3;
}

/* line 88, app/assets/stylesheets/customer/listing.scss */
h4 {
  font-size: 18px;
  line-height: 1.3;
}

/* line 92, app/assets/stylesheets/customer/listing.scss */
h5 {
  font-size: 16px;
  line-height: 1.3;
}

/* line 96, app/assets/stylesheets/customer/listing.scss */
h6 {
  font-size: 14px;
  line-height: 1.3;
}

/* line 101, app/assets/stylesheets/customer/listing.scss */
a {
  text-decoration: none;
  color: var(--primary-green);
  transition: var(--transition-fast);
}

/* line 107, app/assets/stylesheets/customer/listing.scss */
a:hover {
  color: var(--primary-green-hover);
}

/* Bootstrap Override for Property Cards */
/* line 112, app/assets/stylesheets/customer/listing.scss */
.property-card * {
  font-family: "Work Sans", sans-serif;
}

/* line 116, app/assets/stylesheets/customer/listing.scss */
.property-card p,
.property-card span,
.property-card div {
  line-height: inherit;
}

/* line 122, app/assets/stylesheets/customer/listing.scss */
.property-card button,
.property-card select {
  font-family: "Work Sans", sans-serif;
}

/* ================================
HEADER STYLES
================================ */
/* line 130, app/assets/stylesheets/customer/listing.scss */
.main-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* line 139, app/assets/stylesheets/customer/listing.scss */
.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 20px;
}

@media (min-width: 991px) {
  /* line 146, app/assets/stylesheets/customer/listing.scss */
  .header-container {
    padding: 14px 80px;
  }
}

@media (min-width: 1024px) {
  /* line 152, app/assets/stylesheets/customer/listing.scss */
  .header-container {
    padding: 14px 140px;
  }
}

/* Logo Styles */
/* line 158, app/assets/stylesheets/customer/listing.scss */
.logo-container {
  display: flex;
  align-items: center;
  gap: 7.144px;
}

/* line 164, app/assets/stylesheets/customer/listing.scss */
.logo-icon {
  width: 28.178px;
  height: 26.77px;
  flex-shrink: 0;
}

/* line 170, app/assets/stylesheets/customer/listing.scss */
.logo-text {
  font-size: 14.296px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.2859px;
}

/* line 177, app/assets/stylesheets/customer/listing.scss */
.logo-text span {
  letter-spacing: 0.48px;
}

/* Search Bar */
/* line 182, app/assets/stylesheets/customer/listing.scss */
.global-search-wrapper {
  position: relative;
  flex: 1;
  max-width: 600px;
}

/* line 188, app/assets/stylesheets/customer/listing.scss */
.global-search-input {
  width: 100%;
  padding: 10px 16px 10px 44px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  transition: var(--transition-fast);
}

/* line 197, app/assets/stylesheets/customer/listing.scss */
.global-search-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(8, 175, 134, 0.1);
}

/* line 203, app/assets/stylesheets/customer/listing.scss */
.search-icon-left {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-green);
  font-size: 18px;
}

/* Header Icons */
/* line 213, app/assets/stylesheets/customer/listing.scss */
.header-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

/* line 226, app/assets/stylesheets/customer/listing.scss */
.header-icon-btn:hover {
  background: var(--bg-light);
  transform: scale(1.05);
}

/* line 231, app/assets/stylesheets/customer/listing.scss */
.header-icon-btn i {
  font-size: 20px;
  color: #0a0a0a;
}

/* Mobile Back Button */
/* line 237, app/assets/stylesheets/customer/listing.scss */
.back-btn {
  padding: 8px;
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

/* line 246, app/assets/stylesheets/customer/listing.scss */
.back-btn:hover {
  background: var(--bg-light);
}

/* ================================
  MOBILE STICKY SEARCH BAR
  ================================ */
/* line 254, app/assets/stylesheets/customer/listing.scss */
.mobile-sticky-search {
  background: var(--white);
  padding: 12px 5px;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 54px;
  z-index: 1020;
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 991px) {
  /* line 268, app/assets/stylesheets/customer/listing.scss */
  .mobile-sticky-search {
    display: none;
  }
}

/* line 273, app/assets/stylesheets/customer/listing.scss */
.mobile-search-trigger {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: left;
  color: var(--text-medium);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  background-color: white;
}

/* line 287, app/assets/stylesheets/customer/listing.scss */
.mobile-search-trigger:hover {
  background: var(--white);
  border-color: var(--primary-green);
}

/* ================================
MOBILE FILTER/SORT BAR
================================ */
/* line 295, app/assets/stylesheets/customer/listing.scss */
.mobile-filter-sort-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 16px;
  position: sticky;
  top: 194px;
  z-index: 1010;
  display: flex;
  gap: 12px;
}

@media (min-width: 991px) {
  /* line 307, app/assets/stylesheets/customer/listing.scss */
  .mobile-filter-sort-bar {
    top: 64px;
  }
}

@media (min-width: 1024px) {
  /* line 313, app/assets/stylesheets/customer/listing.scss */
  .mobile-filter-sort-bar {
    display: none;
  }
}

/* line 318, app/assets/stylesheets/customer/listing.scss */
.filter-sort-btn {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

/* line 335, app/assets/stylesheets/customer/listing.scss */
.filter-sort-btn:hover {
  background: var(--bg-light);
}

/* line 339, app/assets/stylesheets/customer/listing.scss */
.filter-sort-btn i {
  font-size: 18px;
}

/* ================================
MAIN LAYOUT
================================ */
/* line 346, app/assets/stylesheets/customer/listing.scss */
.main-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 991px) {
  /* line 353, app/assets/stylesheets/customer/listing.scss */
  .main-container {
    padding: 0 80px;
  }
}

@media (min-width: 1024px) {
  /* line 359, app/assets/stylesheets/customer/listing.scss */
  .main-container {
    padding: 0 140px;
  }
}

/* line 364, app/assets/stylesheets/customer/listing.scss */
.content-wrapper {
  display: flex;
  gap: 24px;
  padding: 24px 0;
}

/* ================================
FILTER SIDEBAR (Desktop)
================================ */
/* line 373, app/assets/stylesheets/customer/listing.scss */
.filter-sidebar {
  width: 300px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 96px;
  display: none;
}

@media (min-width: 1024px) {
  /* line 386, app/assets/stylesheets/customer/listing.scss */
  .filter-sidebar {
    display: block;
  }
}

/* line 391, app/assets/stylesheets/customer/listing.scss */
.filter-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 399, app/assets/stylesheets/customer/listing.scss */
.filter-title {
  font-size: 16px;
  font-weight: 600;
  color: #102348;
}

/* line 405, app/assets/stylesheets/customer/listing.scss */
.clear-all-btn {
  background: none;
  border: none;
  color: var(--primary-green);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

/* line 415, app/assets/stylesheets/customer/listing.scss */
.clear-all-btn:hover {
  color: var(--primary-green-hover);
  text-decoration: underline;
}

/* line 420, app/assets/stylesheets/customer/listing.scss */
.filter-content {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}

/* line 427, app/assets/stylesheets/customer/listing.scss */
.filter-content::-webkit-scrollbar {
  width: 6px;
}

/* line 431, app/assets/stylesheets/customer/listing.scss */
.filter-content::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

/* Accordion Styles */
/* line 437, app/assets/stylesheets/customer/listing.scss */
.filter-accordion {
  border: none;
}

/* line 441, app/assets/stylesheets/customer/listing.scss */
.filter-accordion-item {
  border: none;
  border-bottom: 1px solid var(--border-color);
}

/* line 446, app/assets/stylesheets/customer/listing.scss */
.filter-accordion-header {
  padding: 0;
  position: relative;
}

/* line 451, app/assets/stylesheets/customer/listing.scss */
.filter-accordion-button {
  padding: 12px 20px;
  background: var(--white);
  border: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

/* line 467, app/assets/stylesheets/customer/listing.scss */
.filter-accordion-button:hover {
  background: var(--bg-lighter);
}

/* line 471, app/assets/stylesheets/customer/listing.scss */
.filter-accordion-button:not(.collapsed) {
  background: var(--white);
}

/* line 475, app/assets/stylesheets/customer/listing.scss */
.filter-accordion-button::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 16px;
  transition: transform var(--transition-fast);
}

/* line 482, app/assets/stylesheets/customer/listing.scss */
.filter-accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* line 486, app/assets/stylesheets/customer/listing.scss */
.filter-accordion-body {
  padding: 16px 20px;
}

/* Filter Buttons */
/* line 491, app/assets/stylesheets/customer/listing.scss */
.filter-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* line 497, app/assets/stylesheets/customer/listing.scss */
.filter-btn {
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--white);
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition-fast);
}

/* line 509, app/assets/stylesheets/customer/listing.scss */
.filter-btn:hover {
  background: var(--primary-green-light);
  border-color: var(--primary-green);
}

/* line 514, app/assets/stylesheets/customer/listing.scss */
.filter-btn.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

/* Custom Select Styles */
/* line 521, app/assets/stylesheets/customer/listing.scss */
.custom-select {
  width: 150px;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--white);
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
}

/* line 533, app/assets/stylesheets/customer/listing.scss */
.custom-select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(8, 175, 134, 0.1);
}

/* Custom Checkbox */
/* line 540, app/assets/stylesheets/customer/listing.scss */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

/* line 551, app/assets/stylesheets/customer/listing.scss */
.custom-checkbox:hover {
  background: var(--bg-light);
}

/* Hide default checkbox */
/* line 556, app/assets/stylesheets/customer/listing.scss */
.custom-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  background: #fff;
}

/* White checkmark when checked */
/* line 569, app/assets/stylesheets/customer/listing.scss */
.custom-checkbox input[type="checkbox"]:checked {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

/* line 574, app/assets/stylesheets/customer/listing.scss */
.custom-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  border-radius: 2px;
  /* smooth edges like your image */
}

/* Label */
/* line 588, app/assets/stylesheets/customer/listing.scss */
.custom-checkbox label {
  flex: 1;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  margin: 0;
}

/* line 596, app/assets/stylesheets/customer/listing.scss */
.locality-count {
  font-size: 12px;
  color: var(--text-light);
}

/* line 601, app/assets/stylesheets/customer/listing.scss */
.locality-btn-no-border {
  background-color: unset;
  font-family: Work Sans;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 12px;
  /* leading-trim: NONE; */
  line-height: 16px;
  letter-spacing: 0px;
  border: none;
  color: var(--primary-green);
  position: absolute;
}

/* line 614, app/assets/stylesheets/customer/listing.scss */
.locality-btn-select {
  top: 15px;
  right: 90px;
}

/* line 618, app/assets/stylesheets/customer/listing.scss */
.locality-btn-clear {
  top: 15px;
  right: 50px;
}

/* Custom Switch */
/* line 624, app/assets/stylesheets/customer/listing.scss */
.custom-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

/* line 631, app/assets/stylesheets/customer/listing.scss */
.custom-switch label {
  font-size: 14px;
  color: #333;
  margin: 0;
}

/* line 637, app/assets/stylesheets/customer/listing.scss */
.form-check-input:checked {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* ================================
RESULTS AREA
================================ */
/* line 645, app/assets/stylesheets/customer/listing.scss */
.results-area {
  flex: 1;
}

/* line 650, app/assets/stylesheets/customer/listing.scss */
.results-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  /* line 658, app/assets/stylesheets/customer/listing.scss */
  .results-header {
    display: flex;
  }
}

/* line 663, app/assets/stylesheets/customer/listing.scss */
.result-count {
  font-size: 14px;
  color: var(--text-dark);
}

/* line 668, app/assets/stylesheets/customer/listing.scss */
.result-count strong {
  color: var(--chinese-black);
  font-weight: 600;
}

/* line 673, app/assets/stylesheets/customer/listing.scss */
.sort-dropdown {
  width: 180px;
}

/* Mobile Result Count */
/* line 678, app/assets/stylesheets/customer/listing.scss */
.mobile-result-count {
  padding: 8px 0;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  /* line 684, app/assets/stylesheets/customer/listing.scss */
  .mobile-result-count {
    display: none;
  }
}

/* Active Filter Chips */
/* line 690, app/assets/stylesheets/customer/listing.scss */
.active-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

/* line 697, app/assets/stylesheets/customer/listing.scss */
.active-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(8, 175, 134, 0.1);
  color: var(--primary-green);
  border-radius: var(--radius-md);
  font-size: 13px;
}

/* line 708, app/assets/stylesheets/customer/listing.scss */
.active-chip-remove {
  background: none;
  border: none;
  color: var(--primary-green);
  cursor: pointer;
  padding: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

/* line 723, app/assets/stylesheets/customer/listing.scss */
.active-chip-remove:hover {
  background: rgba(8, 175, 134, 0.2);
}

/* ================================
PROPERTY CARD STYLES
================================ */
/* line 730, app/assets/stylesheets/customer/listing.scss */
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

/* line 739, app/assets/stylesheets/customer/listing.scss */
.property-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Desktop Layout (Horizontal) */
@media (min-width: 991px) {
  /* line 746, app/assets/stylesheets/customer/listing.scss */
  .property-card {
    display: flex;
  }
}

/* line 752, app/assets/stylesheets/customer/listing.scss */
.property-image-section {
  position: relative;
  width: 100%;
  height: 240px;
  flex-shrink: 0;
}

/* line 758, app/assets/stylesheets/customer/listing.scss */
.img-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  color: #364153;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* line 774, app/assets/stylesheets/customer/listing.scss */
.prev-btn {
  left: 10px;
}

/* line 778, app/assets/stylesheets/customer/listing.scss */
.next-btn {
  right: 10px;
}

/* line 782, app/assets/stylesheets/customer/listing.scss */
.img-nav-btn i {
  font-size: 18px;
}

@media (min-width: 991px) {
  /* line 786, app/assets/stylesheets/customer/listing.scss */
  .property-image-section {
    width: 220px;
    height: auto;
  }
}

/* line 792, app/assets/stylesheets/customer/listing.scss */
.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 798, app/assets/stylesheets/customer/listing.scss */
.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-xlg);
  backdrop-filter: blur(8px);
  font-family: "Work Sans", sans-serif;
  line-height: 1.2;
  text-transform: capitalize;
}

/* line 814, app/assets/stylesheets/customer/listing.scss */
.property-badge.ready {
  background: rgba(0, 201, 80, 0.6);
  color: var(--white);
}

/* line 819, app/assets/stylesheets/customer/listing.scss */
.property-badge.construction {
  background: rgba(255, 105, 0, 0.6);
  color: var(--white);
}

/* line 824, app/assets/stylesheets/customer/listing.scss */
.property-badge.new-launch {
  background: rgba(8, 50, 175, 0.6);
  color: var(--white);
}

/* line 829, app/assets/stylesheets/customer/listing.scss */
.verified-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(8, 175, 134, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 842, app/assets/stylesheets/customer/listing.scss */
.verified-badge i {
  color: var(--white);
  font-size: 14px;
}

/* line 847, app/assets/stylesheets/customer/listing.scss */
.image-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

/* line 856, app/assets/stylesheets/customer/listing.scss */
.image-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

/* line 864, app/assets/stylesheets/customer/listing.scss */
.image-dot.active {
  width: 20px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.95);
}

/* line 870, app/assets/stylesheets/customer/listing.scss */
.favorite-btn {
  position: absolute;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

@media (min-width: 991px) {
  /* line 885, app/assets/stylesheets/customer/listing.scss */
  .favorite-btn {
    top: 9px;
    right: 12px;
  }
}

@media (max-width: 991px) {
  /* line 891, app/assets/stylesheets/customer/listing.scss */
  .favorite-btn {
    bottom: 191px;
    right: 6px;
  }
}

/* line 897, app/assets/stylesheets/customer/listing.scss */
.favorite-btn:hover {
  background: var(--white);
  transform: scale(1.1);
}

/* line 902, app/assets/stylesheets/customer/listing.scss */
.favorite-btn i {
  font-size: 18px;
  color: var(--text-dark);
}

/* line 907, app/assets/stylesheets/customer/listing.scss */
.favorite-btn.active i {
  color: #e74c3c;
}

/* Property Content */
/* line 912, app/assets/stylesheets/customer/listing.scss */
.property-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: "Work Sans", sans-serif;
}

/* Web/Desktop only */
@media (min-width: 991px) {
  /* line 921, app/assets/stylesheets/customer/listing.scss */
  .property-content > .property-footer {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
    width: calc(100% + 40px);
  }
}

@media (max-width: 991px) {
  /* line 930, app/assets/stylesheets/customer/listing.scss */
  .property-content {
    padding: 16px;
  }
}

/* line 935, app/assets/stylesheets/customer/listing.scss */
.property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  /* gap: 5px; */
  flex-direction: column;
}

@media (max-width: 991px) {
  /* line 945, app/assets/stylesheets/customer/listing.scss */
  .property-header {
    flex-direction: column;
    /* gap: 8px; */
  }
  /* line 950, app/assets/stylesheets/customer/listing.scss */
  .property-price {
    margin-left: 0;
  }
}

/* line 954, app/assets/stylesheets/customer/listing.scss */
.property-rera-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* line 961, app/assets/stylesheets/customer/listing.scss */
.property-name {
  font-size: 18px;
  font-weight: 600;
  color: #102348;
  margin: 0;
  line-height: 1.3;
  font-family: "Work Sans", sans-serif;
}

/* line 969, app/assets/stylesheets/customer/listing.scss */
.rera-container {
  width: 71px;
  height: 24px;
  border-radius: 12px;
  background-color: #f0fdf4;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Work Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  letter-spacing: 0px;
  color: #00a63e;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 988, app/assets/stylesheets/customer/listing.scss */
.rera-text {
  line-height: 0px !important;
}

/* line 991, app/assets/stylesheets/customer/listing.scss */
.property-price-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

/* line 996, app/assets/stylesheets/customer/listing.scss */
.property-price {
  font-size: 22px;
  font-weight: 600;
  color: #102348;
  white-space: nowrap;
  /* margin-left: 12px; */
  line-height: 19px !important;
  font-family: "Work Sans", sans-serif;
}

/* line 1005, app/assets/stylesheets/customer/listing.scss */
.property-rate {
  font-family: Work Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: var(--primary-green);
}

/* line 1014, app/assets/stylesheets/customer/listing.scss */
.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-333333);
  /* margin-bottom: 16px; */
  line-height: 1.4;
  font-family: "Work Sans", sans-serif;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 1030, app/assets/stylesheets/customer/listing.scss */
.property-location i {
  font-size: 16px;
  color: var(--text-medium);
}

/* Configuration Pills */
/* line 1036, app/assets/stylesheets/customer/listing.scss */
.config-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
  align-items: center;
}

/* line 1043, app/assets/stylesheets/customer/listing.scss */
.config-pills-mobile {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 10px;
}

/* line 1049, app/assets/stylesheets/customer/listing.scss */
.config-pills-mobile-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 1054, app/assets/stylesheets/customer/listing.scss */
.config-pill {
  /* padding: 6px 12px; */
  line-height: 0px !important;
  font-size: 13px;
  color: #7e7e7e;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}

/* line 1062, app/assets/stylesheets/customer/listing.scss */
.config-pill-price {
  /* padding: 6px 12px; */
  color: var(--chinese-black);
}

/* Amenities */
/* line 1067, app/assets/stylesheets/customer/listing.scss */
.amenities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  /* line 1075, app/assets/stylesheets/customer/listing.scss */
  .amenities-row {
    gap: 12px;
  }
}

/* line 1080, app/assets/stylesheets/customer/listing.scss */
.amenity-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-medium);
  font-family: "Work Sans", sans-serif;
  line-height: 1.2;
}

/* line 1090, app/assets/stylesheets/customer/listing.scss */
.amenity-item i {
  font-size: 16px;
  color: var(--primary-green);
  flex-shrink: 0;
}

/* Property Footer */
/* line 1097, app/assets/stylesheets/customer/listing.scss */
.property-footer {
  margin-top: auto;
  padding-top: 16px;
  /* border-top: 1px solid var(--border-color); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #f0f7f5;
}

@media (max-width: 991px) {
  /* line 1110, app/assets/stylesheets/customer/listing.scss */
  .property-footer {
    flex-wrap: wrap;
    gap: 8px;
    border-radius: 12px;
  }
}

/* line 1117, app/assets/stylesheets/customer/listing.scss */
.builder-info {
  font-size: 13px;
  color: var(--text-medium);
  font-family: "Work Sans", sans-serif;
  line-height: 1.4;
}

/* line 1123, app/assets/stylesheets/customer/listing.scss */
.builder-text {
  margin: 0px;
  font-family: Work Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  line-height: 21px;
  letter-spacing: 0px;
  color: #333333;
}

/* line 1134, app/assets/stylesheets/customer/listing.scss */
.builder-info strong {
  color: var(--text-dark);
  font-family: Work Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
}

/* line 1145, app/assets/stylesheets/customer/listing.scss */
.view-details-btn {
  padding: 10px 24px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: "Work Sans", sans-serif;
  white-space: nowrap;
}

/* line 1159, app/assets/stylesheets/customer/listing.scss */
.view-details-btn:hover {
  background: var(--primary-green-hover);
  transform: translateY(-1px);
}

/* ================================
LOAD MORE SECTION
================================ */
/* line 1167, app/assets/stylesheets/customer/listing.scss */
.load-more-section {
  text-align: center;
  padding: 40px 0;
}

/* line 1172, app/assets/stylesheets/customer/listing.scss */
.load-more-btn {
  padding: 14px 32px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

/* line 1187, app/assets/stylesheets/customer/listing.scss */
.load-more-btn:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* line 1193, app/assets/stylesheets/customer/listing.scss */
.load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 1198, app/assets/stylesheets/customer/listing.scss */
.load-more-btn i {
  font-size: 18px;
}

/* line 1202, app/assets/stylesheets/customer/listing.scss */
.spinner-border-sm {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

/* End of Results */
/* line 1209, app/assets/stylesheets/customer/listing.scss */
.end-results {
  text-align: center;
  padding: 48px 16px;
}

/* line 1214, app/assets/stylesheets/customer/listing.scss */
.end-results-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(8, 175, 134, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* line 1225, app/assets/stylesheets/customer/listing.scss */
.end-results-icon i {
  font-size: 32px;
  color: var(--primary-green);
}

/* line 1230, app/assets/stylesheets/customer/listing.scss */
.end-results h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

/* line 1235, app/assets/stylesheets/customer/listing.scss */
.end-results p {
  font-size: 14px;
  color: var(--text-medium);
  max-width: 500px;
  margin: 0 auto;
}

/* ================================
BACK TO TOP BUTTON
================================ */
/* line 1245, app/assets/stylesheets/customer/listing.scss */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1000;
}

/* line 1266, app/assets/stylesheets/customer/listing.scss */
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* line 1271, app/assets/stylesheets/customer/listing.scss */
.back-to-top:hover {
  background: var(--primary-green-hover);
  transform: translateY(-4px);
}

/* line 1276, app/assets/stylesheets/customer/listing.scss */
.back-to-top i {
  font-size: 24px;
}

/* ================================
MOBILE FILTER MODAL
================================ */
/* line 1283, app/assets/stylesheets/customer/listing.scss */
.mobile-filter-modal .modal-content {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: none;
}

/* line 1288, app/assets/stylesheets/customer/listing.scss */
.mobile-filter-modal .modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

/* line 1293, app/assets/stylesheets/customer/listing.scss */
.mobile-filter-modal .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-dark);
}

/* line 1299, app/assets/stylesheets/customer/listing.scss */
.mobile-filter-modal .modal-body {
  padding: 0;
  max-height: 70vh;
  overflow-y: auto;
}

/* line 1305, app/assets/stylesheets/customer/listing.scss */
.mobile-filter-modal .modal-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  gap: 12px;
}

/* line 1311, app/assets/stylesheets/customer/listing.scss */
.mobile-filter-modal .btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 500;
}

/* line 1318, app/assets/stylesheets/customer/listing.scss */
.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

/* line 1323, app/assets/stylesheets/customer/listing.scss */
.btn-outline-primary:hover {
  background: rgba(8, 175, 134, 0.1);
  color: var(--primary-green);
  border-color: var(--primary-green);
}

/* line 1329, app/assets/stylesheets/customer/listing.scss */
.btn-primary {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

/* line 1334, app/assets/stylesheets/customer/listing.scss */
.btn-primary:hover {
  background: var(--primary-green-hover);
  border-color: var(--primary-green-hover);
}

/* ================================
LOADING SKELETON
================================ */
/* line 1342, app/assets/stylesheets/customer/listing.scss */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* line 1362, app/assets/stylesheets/customer/listing.scss */
.skeleton-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  height: 280px;
}

@media (max-width: 991px) {
  /* line 1371, app/assets/stylesheets/customer/listing.scss */
  .skeleton-card {
    height: auto;
  }
}

/* line 1376, app/assets/stylesheets/customer/listing.scss */
.skeleton-image {
  width: 100%;
  height: 240px;
}

@media (min-width: 991px) {
  /* line 1382, app/assets/stylesheets/customer/listing.scss */
  .skeleton-image {
    width: 280px;
    height: 100%;
  }
}

/* line 1388, app/assets/stylesheets/customer/listing.scss */
.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
  border-radius: 4px;
}

/* line 1394, app/assets/stylesheets/customer/listing.scss */
.skeleton-text-short {
  width: 60%;
}

@media (max-width: 991px) {
  /* line 1398, app/assets/stylesheets/customer/listing.scss */
  .header-search-group {
    display: none !important;
  }
}

/* ================================
RESPONSIVE UTILITIES
================================ */
@media (max-width: 991px) {
  /* line 1407, app/assets/stylesheets/customer/listing.scss */
  .d-mobile-none {
    display: none !important;
  }
}

@media (min-width: 991px) {
  /* line 1413, app/assets/stylesheets/customer/listing.scss */
  .d-mobile-only {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  /* line 1419, app/assets/stylesheets/customer/listing.scss */
  .d-desktop-none {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  /* line 1425, app/assets/stylesheets/customer/listing.scss */
  .d-desktop-only {
    display: none !important;
  }
}

/* ================================
CUSTOM ANIMATIONS
================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 1444, app/assets/stylesheets/customer/listing.scss */
.fade-in {
  animation: fadeIn 0.3s ease;
}

/* ================================
PRINT STYLES
================================ */
@media print {
  /* line 1453, app/assets/stylesheets/customer/listing.scss */
  .main-header,
.mobile-sticky-search,
.mobile-filter-sort-bar,
.filter-sidebar,
.back-to-top,
.site-footer {
    display: none;
  }
  /* line 1462, app/assets/stylesheets/customer/listing.scss */
  .property-card {
    page-break-inside: avoid;
  }
}

/* ================================
TOAST NOTIFICATIONS
================================ */
/* line 1470, app/assets/stylesheets/customer/listing.scss */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

@media (min-width: 991px) {
  /* line 1479, app/assets/stylesheets/customer/listing.scss */
  .toast-container {
    bottom: 80px;
    left: auto;
    right: 24px;
    transform: none;
  }
}

/* line 1487, app/assets/stylesheets/customer/listing.scss */
.custom-toast {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 400px;
  border-left: 4px solid var(--primary-green);
  animation: slideUp 0.3s ease;
}

/* line 1501, app/assets/stylesheets/customer/listing.scss */
.custom-toast.removing {
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* line 1527, app/assets/stylesheets/customer/listing.scss */
.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 1538, app/assets/stylesheets/customer/listing.scss */
.toast-icon i {
  color: var(--primary-green);
  font-size: 14px;
}

/* line 1543, app/assets/stylesheets/customer/listing.scss */
.toast-icon.remove {
  background: rgba(231, 76, 60, 0.1);
}

/* line 1547, app/assets/stylesheets/customer/listing.scss */
.toast-icon.remove i {
  color: #e74c3c;
}

/* line 1551, app/assets/stylesheets/customer/listing.scss */
.toast-content {
  flex: 1;
}

/* line 1555, app/assets/stylesheets/customer/listing.scss */
.toast-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

/* line 1562, app/assets/stylesheets/customer/listing.scss */
.toast-message {
  font-size: 13px;
  color: var(--text-medium);
  margin: 0;
}

/* line 1568, app/assets/stylesheets/customer/listing.scss */
.toast-close {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

/* line 1580, app/assets/stylesheets/customer/listing.scss */
.toast-close:hover {
  color: var(--text-dark);
}

/* search bar desktop */
/* line 1584, app/assets/stylesheets/customer/listing.scss */
.search-bar-desktop {
  width: 500px;
  position: relative;
}

/* line 1588, app/assets/stylesheets/customer/listing.scss */
.desktop-search-input {
  padding-left: 40px;
}

/* line 1592, app/assets/stylesheets/customer/listing.scss */
.btn-login {
  height: 40px;
  padding: 0 20px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: auto;
}

/* line 1606, app/assets/stylesheets/customer/listing.scss */
.search-container {
  max-width: 967px;
  margin: 0 auto 48px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 16px;
}

/* line 1614, app/assets/stylesheets/customer/listing.scss */
.city-select {
  width: 100%;
  height: 100%;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
  background-color: var(--white);
}

/* line 1623, app/assets/stylesheets/customer/listing.scss */
.search-row {
  border: 0.8px solid #BFBFBF;
  border-radius: 8px;
}

/* line 1629, app/assets/stylesheets/customer/listing.scss */
.disabled-btn {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

/* line 1635, app/assets/stylesheets/customer/listing.scss */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--dark-color);
  margin-left: auto;
}

/* line 1643, app/assets/stylesheets/customer/listing.scss */
.mobile-menu {
  display: none;
  border: 1px solid var(--gray-border);
  padding: 16px;
  background-color: var(--white);
}

@media (max-width: 991px) {
  /* line 1652, app/assets/stylesheets/customer/listing.scss */
  .header .container-fluid {
    padding: 0 16px;
  }
  /* line 1656, app/assets/stylesheets/customer/listing.scss */
  .logo-text {
    display: none;
  }
  /* line 1660, app/assets/stylesheets/customer/listing.scss */
  .btn-login {
    display: none;
  }
  /* line 1664, app/assets/stylesheets/customer/listing.scss */
  .mobile-menu-btn {
    display: block;
  }
  /* line 1667, app/assets/stylesheets/customer/listing.scss */
  .mobile-border-bottom {
    border-bottom: 1px solid #e3e3e3;
  }
  /* line 1671, app/assets/stylesheets/customer/listing.scss */
  .mobile-menu.active {
    display: flex;
  }
}

/* line 1675, app/assets/stylesheets/customer/listing.scss */
.mobile-menu {
  padding: 0px;
}

/* line 1679, app/assets/stylesheets/customer/listing.scss */
.location-text {
  max-width: 30ch;
  /* approx 30 characters */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 1686, app/assets/stylesheets/customer/listing.scss */
.property-header {
  cursor: pointer;
}

/* line 1690, app/assets/stylesheets/customer/listing.scss */
.property-price-section {
  cursor: pointer;
}

/* line 1694, app/assets/stylesheets/customer/listing.scss */
.config-pills {
  cursor: pointer;
}

@media (max-width: 991px) {
  /* line 1700, app/assets/stylesheets/customer/listing.scss */
  .property-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }
  /* line 1707, app/assets/stylesheets/customer/listing.scss */
  .request-callback-btn,
.disabled-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
  /* line 1713, app/assets/stylesheets/customer/listing.scss */
  .builder-info {
    flex: 1;
    min-width: 0;
  }
  /* line 1718, app/assets/stylesheets/customer/listing.scss */
  .builder-name-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  /* line 1724, app/assets/stylesheets/customer/listing.scss */
  .builder-name {
    display: block;
    max-height: 1.4em;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  /* line 1731, app/assets/stylesheets/customer/listing.scss */
  .builder-name.collapsed {
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  /* line 1736, app/assets/stylesheets/customer/listing.scss */
  .builder-name.expanded {
    white-space: normal;
    max-height: 6em;
  }
  /* line 1741, app/assets/stylesheets/customer/listing.scss */
  .builder-toggle-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    color: #08AF86;
    cursor: pointer;
    display: none;
  }
}

/* line 1756, app/assets/stylesheets/customer/listing.scss */
.view-details-btn.disabled-btn {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
  background: #cccccc;
  color: #666666;
}

/* line 1765, app/assets/stylesheets/customer/listing.scss */
.suggestions-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: auto;
  /* 🔥 fix: prevent stretching */
  width: 100%;
  /* 🔥 match search input width */
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 999;
  display: none;
}

/* line 1782, app/assets/stylesheets/customer/listing.scss */
.suggestion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
}

/* line 1791, app/assets/stylesheets/customer/listing.scss */
.suggestion-item:hover {
  background: #f8f9fa;
}

/* line 1795, app/assets/stylesheets/customer/listing.scss */
.suggestion-type {
  font-size: 11px;
  color: #888;
  margin-left: 10px;
  white-space: nowrap;
}

/* line 1802, app/assets/stylesheets/customer/listing.scss */
.search-row {
  position: relative;
}

/* line 1806, app/assets/stylesheets/customer/listing.scss */
.search-bar-wrapper {
  position: relative;
  display: flex;
  gap: 10px;
}

/* disable interaction */
/* line 1813, app/assets/stylesheets/customer/listing.scss */
.skeleton {
  pointer-events: none;
}

/* generic bg */
/* line 1818, app/assets/stylesheets/customer/listing.scss */
.skeleton-bg {
  background: #eee;
  border-radius: 6px;
}

/* use SAME class -> no layout break */
/* line 1824, app/assets/stylesheets/customer/listing.scss */
.property-card.skeleton .property-image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: inherit;
}

/* badge */
/* line 1832, app/assets/stylesheets/customer/listing.scss */
.property-card.skeleton .property-badge {
  width: 80px;
  height: 20px;
  border-radius: 20px;
}

/* fav btn */
/* line 1839, app/assets/stylesheets/customer/listing.scss */
.property-card.skeleton .favorite-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

/* nav btn */
/* line 1846, app/assets/stylesheets/customer/listing.scss */
.property-card.skeleton .img-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* text lines */
/* line 1853, app/assets/stylesheets/customer/listing.scss */
.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: #eee;
  margin-bottom: 8px;
}

/* line 1860, app/assets/stylesheets/customer/listing.scss */
.skeleton-line.small {
  width: 40%;
}

/* line 1864, app/assets/stylesheets/customer/listing.scss */
.skeleton-line.price {
  width: 30%;
  height: 16px;
}

/* line 1869, app/assets/stylesheets/customer/listing.scss */
.property-name.skeleton-line {
  width: 70%;
  height: 16px;
}

/* location */
/* line 1875, app/assets/stylesheets/customer/listing.scss */
.location-text.skeleton-line {
  width: 60%;
}

/* config pills */
/* line 1880, app/assets/stylesheets/customer/listing.scss */
.property-card.skeleton .config-pill {
  width: 60px;
  height: 20px;
  border-radius: 20px;
  display: inline-block;
  margin-right: 6px;
}

/* builder */
/* line 1889, app/assets/stylesheets/customer/listing.scss */
.builder-name.skeleton-line {
  width: 50%;
}

/* button */
/* line 1894, app/assets/stylesheets/customer/listing.scss */
.property-card.skeleton .view-details-btn {
  width: 140px;
  height: 36px;
  border-radius: 8px;
}

/* icon */
/* line 1901, app/assets/stylesheets/customer/listing.scss */
.skeleton-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
  background: #eee;
}

/* SHIMMER */
/* line 1910, app/assets/stylesheets/customer/listing.scss */
.shimmer {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}

/* line 1916, app/assets/stylesheets/customer/listing.scss */
.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  width: 150px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(300px);
  }
}
