@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 20px 14px 40px;
  }
}

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

/* 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 */
#mobile-search-input {
  font-size: 16px;
}

/* line 201, 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 207, 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 217, 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 230, app/assets/stylesheets/customer/listing.scss */
.header-icon-btn:hover {
  background: var(--bg-light);
  transform: scale(1.05);
}

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

/* Mobile Back Button */
/* line 241, 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);
  color: #0a0a0a !important;
  -webkit-appearance: none;
  appearance: none;
}

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

/* ================================
  MOBILE STICKY SEARCH BAR
  ================================ */
/* line 261, app/assets/stylesheets/customer/listing.scss */
.mobile-sticky-search {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1020;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* line 275, app/assets/stylesheets/customer/listing.scss */
.mobile-sticky-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
}

/* line 282, app/assets/stylesheets/customer/listing.scss */
.mobile-filter-chips-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 10px;
}

/* line 292, app/assets/stylesheets/customer/listing.scss */
.mobile-filter-chips-row::-webkit-scrollbar {
  display: none;
}

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

/* line 302, app/assets/stylesheets/customer/listing.scss */
.mobile-search-trigger {
  width: 100%;
  height: 40px;
  padding: 0 16px 0 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;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* line 320, app/assets/stylesheets/customer/listing.scss */
.mobile-search-trigger span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

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

/* line 333, app/assets/stylesheets/customer/listing.scss */
.mobile-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

/* line 348, app/assets/stylesheets/customer/listing.scss */
.mobile-icon-btn i {
  font-size: 18px;
}

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

/* ================================
  MOBILE FILTER/SORT BAR (DEPRECATED - Moved to search bar)
  ================================ */
/* ================================
MAIN LAYOUT
================================ */
/* line 365, app/assets/stylesheets/customer/listing.scss */
.main-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

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

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

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

/* ================================
FILTER SIDEBAR (Desktop)
================================ */
/* line 392, 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;
  overflow-x: hidden;
}

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

/* line 411, 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 419, app/assets/stylesheets/customer/listing.scss */
.filter-title {
  font-size: 16px;
  font-weight: 600;
  color: #102348;
}

/* line 425, 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 435, app/assets/stylesheets/customer/listing.scss */
.clear-all-btn:hover {
  color: var(--primary-green-hover);
  text-decoration: underline;
}

/* line 440, app/assets/stylesheets/customer/listing.scss */
.clear-all-btn:disabled {
  color: #b0b0b0;
  cursor: not-allowed;
  pointer-events: none;
}

/* line 446, app/assets/stylesheets/customer/listing.scss */
.filter-content {
  /* 96px sticky-top + ~60px filter-header = 156px; extra 4px buffer */
  max-height: calc(100vh - 160px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}

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

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

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

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

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

/* line 479, 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 495, app/assets/stylesheets/customer/listing.scss */
.filter-accordion-button:hover {
  background: var(--bg-lighter);
}

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

/* line 503, 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 510, app/assets/stylesheets/customer/listing.scss */
.filter-accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

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

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

/* line 525, 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 537, app/assets/stylesheets/customer/listing.scss */
.filter-btn:hover {
  background: var(--primary-green-light);
  border-color: var(--primary-green);
}

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

/* line 547, app/assets/stylesheets/customer/listing.scss */
.filter-btn.active img {
  filter: brightness(0) invert(1);
}

/* Custom Select Styles */
/* line 553, 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 565, 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);
}

/* line 571, app/assets/stylesheets/customer/listing.scss */
.area-select {
  flex: 1;
  width: auto;
  min-width: 0;
  padding: 10px 9px;
  font-size: 13px;
}

/* line 579, app/assets/stylesheets/customer/listing.scss */
.budget-custom-select {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* line 585, app/assets/stylesheets/customer/listing.scss */
.budget-custom-trigger {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--white);
  color: #333;
  font-size: 13px;
  font-family: "Work Sans", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

/* line 602, app/assets/stylesheets/customer/listing.scss */
.budget-custom-trigger:focus {
  outline: none;
  border-color: var(--primary-green);
}

/* line 608, app/assets/stylesheets/customer/listing.scss */
.budget-custom-trigger.open {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(8, 175, 134, 0.1);
}

/* line 613, app/assets/stylesheets/customer/listing.scss */
.budget-custom-chevron {
  font-size: 10px;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

/* line 619, app/assets/stylesheets/customer/listing.scss */
.budget-custom-trigger.open .budget-custom-chevron {
  transform: rotate(180deg);
}

/* line 623, app/assets/stylesheets/customer/listing.scss */
.budget-custom-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 400;
  max-height: 180px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}

/* line 640, app/assets/stylesheets/customer/listing.scss */
.budget-custom-menu.open {
  display: block;
}

/* line 644, app/assets/stylesheets/customer/listing.scss */
.budget-custom-menu::-webkit-scrollbar {
  width: 4px;
}

/* line 647, app/assets/stylesheets/customer/listing.scss */
.budget-custom-menu::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 2px;
}

/* line 653, app/assets/stylesheets/customer/listing.scss */
.budget-custom-option {
  padding: 7px 10px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  white-space: nowrap;
}

/* line 661, app/assets/stylesheets/customer/listing.scss */
.budget-custom-option:hover {
  background: var(--primary-green-light);
  color: var(--primary-green);
}

/* line 666, app/assets/stylesheets/customer/listing.scss */
.budget-custom-option.active {
  color: var(--primary-green);
  font-weight: 600;
  background: var(--primary-green-light);
}

/* line 672, app/assets/stylesheets/customer/listing.scss */
.budget-custom-option.disabled {
  color: var(--text-light);
  cursor: not-allowed;
  pointer-events: none;
}

/* Custom Checkbox */
/* line 680, 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 691, app/assets/stylesheets/customer/listing.scss */
.custom-checkbox:hover {
  background: var(--bg-light);
}

/* Hide default checkbox */
/* line 696, 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 709, app/assets/stylesheets/customer/listing.scss */
.custom-checkbox input[type="checkbox"]:checked {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

/* line 714, 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 728, app/assets/stylesheets/customer/listing.scss */
.custom-checkbox label {
  flex: 1;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  margin: 0;
}

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

/* line 741, 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 754, app/assets/stylesheets/customer/listing.scss */
.locality-btn-no-border:disabled {
  color: #b0b0b0;
  cursor: not-allowed;
  pointer-events: none;
}

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

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

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

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

/* line 783, app/assets/stylesheets/customer/listing.scss */
.custom-switch .form-check-input[type="checkbox"] {
  width: 40px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

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

/* ================================
RESULTS AREA
================================ */
/* line 798, app/assets/stylesheets/customer/listing.scss */
.results-area {
  flex: 1;
  min-width: 0;
  width: 100%;
}

/* line 804, app/assets/stylesheets/customer/listing.scss */
#projects-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* line 810, 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 818, app/assets/stylesheets/customer/listing.scss */
  .results-header {
    display: flex;
  }
}

/* line 823, app/assets/stylesheets/customer/listing.scss */
.result-summary {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
  min-width: 0;
}

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

/* line 836, app/assets/stylesheets/customer/listing.scss */
.result-summary .result-sep {
  color: #9ca3af;
  padding: 0 5px;
}

/* line 841, app/assets/stylesheets/customer/listing.scss */
.result-summary .result-title {
  color: #6b7280;
}

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

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

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

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

/* line 870, app/assets/stylesheets/customer/listing.scss */
.active-filter-chips:empty {
  display: none;
}

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

/* line 880, app/assets/stylesheets/customer/listing.scss */
.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(8, 175, 134, 0.1);
  color: var(--primary-green);
  border-radius: var(--radius-md);
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  height: 30px;
}

/* line 894, 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 909, app/assets/stylesheets/customer/listing.scss */
.active-chip-remove:hover {
  background: rgba(8, 175, 134, 0.2);
}

/* ================================
PROPERTY CARD STYLES
================================ */
/* line 916, 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);
  width: 100%;
}

/* line 926, 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 933, app/assets/stylesheets/customer/listing.scss */
  .property-card {
    display: flex;
    width: 100%;
    height: 260px;
  }
}

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

/* line 946, 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 962, app/assets/stylesheets/customer/listing.scss */
.prev-btn {
  left: 10px;
}

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

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

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

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

/* line 986, app/assets/stylesheets/customer/listing.scss */
.property-badge {
  position: absolute;
  top: 13.6px;
  left: 12px;
  padding: 4px 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;
  width: auto;
  height: 25.59px;
}

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

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

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

/* line 1019, 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 1032, app/assets/stylesheets/customer/listing.scss */
.verified-badge i {
  color: var(--white);
  font-size: 14px;
}

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

/* line 1046, 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 1054, app/assets/stylesheets/customer/listing.scss */
.image-dot.active {
  width: 20px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.95);
}

/* line 1060, 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 1075, app/assets/stylesheets/customer/listing.scss */
  .favorite-btn {
    top: 9px;
    right: 12px;
  }
}

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

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

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

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

/* Property Content */
/* line 1102, 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 1111, 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 1120, app/assets/stylesheets/customer/listing.scss */
  .property-content {
    padding: 16px;
  }
}

/* line 1125, 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 1135, app/assets/stylesheets/customer/listing.scss */
  .property-header {
    flex-direction: column;
    /* gap: 8px; */
  }
  /* line 1140, app/assets/stylesheets/customer/listing.scss */
  .property-price {
    margin-left: 0;
  }
}

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

/* line 1151, 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;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* line 1163, 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 1182, app/assets/stylesheets/customer/listing.scss */
.rera-text {
  line-height: 0px !important;
}

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

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

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

/* line 1209, 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 1225, app/assets/stylesheets/customer/listing.scss */
.property-location i {
  font-size: 16px;
  color: var(--text-medium);
}

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

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

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

/* line 1251, app/assets/stylesheets/customer/listing.scss */
.config-pills-mobile-content:first-child {
  padding-left: 0;
}

/* line 1254, app/assets/stylesheets/customer/listing.scss */
.config-pill-separator {
  width: 1px;
  background-color: #D4D4D4;
  align-self: stretch;
  flex-shrink: 0;
  font-size: 0;
  min-height: 14px;
}

/* line 1262, 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 1270, app/assets/stylesheets/customer/listing.scss */
.config-pill-price {
  /* padding: 6px 12px; */
  color: var(--chinese-black);
  font-weight: 500;
}

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

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

/* line 1289, 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 1299, app/assets/stylesheets/customer/listing.scss */
.amenity-item i {
  font-size: 16px;
  color: var(--primary-green);
  flex-shrink: 0;
}

/* Property Footer */
/* line 1306, 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 1319, app/assets/stylesheets/customer/listing.scss */
  .property-footer {
    flex-wrap: wrap;
    gap: 8px;
    border-radius: 12px;
  }
}

/* line 1326, app/assets/stylesheets/customer/listing.scss */
.builder-info {
  font-size: 13px;
  color: #333333;
  font-family: "Work Sans", sans-serif;
  line-height: 1.4;
}

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

/* line 1343, app/assets/stylesheets/customer/listing.scss */
.builder-info strong {
  color: #333333;
  font-family: Work Sans;
  font-weight: 600;
  font-style: Regular;
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 0px;
}

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

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

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

/* line 1381, 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 1396, app/assets/stylesheets/customer/listing.scss */
.load-more-btn:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

/* line 1423, 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 1434, app/assets/stylesheets/customer/listing.scss */
.end-results-icon i {
  font-size: 32px;
  color: var(--primary-green);
}

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

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

/* ================================
NO RESULTS EMPTY STATE
================================ */
/* line 1454, app/assets/stylesheets/customer/listing.scss */
.no-results-state {
  text-align: center;
  padding: 80px 16px;
}

/* line 1458, app/assets/stylesheets/customer/listing.scss */
.no-results-state .no-results-icon {
  margin: 0 auto 24px;
  width: fit-content;
}

/* line 1462, app/assets/stylesheets/customer/listing.scss */
.no-results-state .no-results-icon img {
  width: 80px;
  height: 80px;
}

/* line 1468, app/assets/stylesheets/customer/listing.scss */
.no-results-state .no-results-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* line 1475, app/assets/stylesheets/customer/listing.scss */
.no-results-state .no-results-subtitle {
  font-size: 14px;
  color: var(--text-medium);
  white-space: nowrap;
  margin: 0 auto 24px;
}

@media (max-width: 768px) {
  /* line 1454, app/assets/stylesheets/customer/listing.scss */
  .no-results-state {
    padding: 60px 16px;
  }
  /* line 1485, app/assets/stylesheets/customer/listing.scss */
  .no-results-state .no-results-icon img {
    width: 64px;
    height: 64px;
  }
  /* line 1490, app/assets/stylesheets/customer/listing.scss */
  .no-results-state .no-results-title {
    font-size: 16px;
  }
  /* line 1494, app/assets/stylesheets/customer/listing.scss */
  .no-results-state .no-results-subtitle {
    white-space: normal;
    max-width: 260px;
  }
}

/* ================================
BACK TO TOP BUTTON
================================ */
/* line 1504, 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 1525, app/assets/stylesheets/customer/listing.scss */
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

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

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

/* ================================
MOBILE FILTER MODAL — two-panel layout
================================ */
/* line 1542, app/assets/stylesheets/customer/listing.scss */
.mobile-filter-modal .modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

/* line 1550, app/assets/stylesheets/customer/listing.scss */
.mobile-filter-modal .modal-content {
  height: 100%;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Header */
/* line 1560, app/assets/stylesheets/customer/listing.scss */
.mfm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1.35px solid #C0EDD9;
  flex-shrink: 0;
}

/* line 1570, app/assets/stylesheets/customer/listing.scss */
.mfm-back-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  color: #111;
  line-height: 1;
  display: flex;
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
}

/* line 1585, app/assets/stylesheets/customer/listing.scss */
.mfm-title {
  font-size: 18px;
  font-weight: 500;
  color: #1B3765;
}

/* line 1591, app/assets/stylesheets/customer/listing.scss */
.mfm-close-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  color: #111;
  line-height: 1;
  display: flex;
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
}

/* Two-panel body */
/* line 1607, app/assets/stylesheets/customer/listing.scss */
.mfm-body {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* Left sidebar */
/* line 1615, app/assets/stylesheets/customer/listing.scss */
.mfm-sidebar {
  width: 130px;
  flex-shrink: 0;
  border-right: 1.35px solid #C0EDD9;
  overflow-y: auto;
}

/* line 1624, app/assets/stylesheets/customer/listing.scss */
.mfm-nav-item {
  padding: 14px 12px;
  font-size: 12px;
  font-weight: 400;
  color: #555555;
  line-height: 20px;
  cursor: pointer;
  border-left: 3px solid transparent;
  line-height: 1.4;
  transition: background 0.1s;
}

/* line 1636, app/assets/stylesheets/customer/listing.scss */
.mfm-nav-item.active {
  font-weight: 600;
  font-size: 12px;
  color: #102348;
  background: #fff;
  font-family: Work Sans;
  background: rgba(85, 85, 85, 0.06);
  border-width: 1.35px, 1.35px, 0px, 1.35px;
}

/* Right panel area */
/* line 1655, app/assets/stylesheets/customer/listing.scss */
.mfm-panel-area {
  flex: 1;
  overflow-y: auto;
  background: #fff;
  padding: 16px;
}

/* line 1662, app/assets/stylesheets/customer/listing.scss */
.mfm-panel {
  display: none;
}

/* line 1666, app/assets/stylesheets/customer/listing.scss */
.mfm-panel.active {
  display: block;
}

/* Pill buttons */
/* line 1671, app/assets/stylesheets/customer/listing.scss */
.mfm-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* line 1677, app/assets/stylesheets/customer/listing.scss */
.mfm-pill {
  padding: 11px 14px;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

/* line 1693, app/assets/stylesheets/customer/listing.scss */
.mfm-pill.active {
  background: rgba(192, 237, 217, 0.2);
  color: #555555;
  font-weight: 500;
  border: 1px solid #E0E0E0;
  font-size: 14px;
  font-weight: 400;
}

/* Select dropdowns */
/* line 1704, app/assets/stylesheets/customer/listing.scss */
.mfm-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  color: #374151;
  background: #fff;
  appearance: auto;
}

/* line 1715, app/assets/stylesheets/customer/listing.scss */
.mfm-to-label {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: #6B7280;
}

/* Search inputs */
/* line 1723, app/assets/stylesheets/customer/listing.scss */
.mfm-search-wrap {
  position: relative;
  margin-bottom: 12px;
}

/* line 1728, app/assets/stylesheets/customer/listing.scss */
.mfm-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  font-size: 13px;
}

/* line 1737, app/assets/stylesheets/customer/listing.scss */
.mfm-search-input {
  width: 100%;
  padding: 9px 12px 9px 32px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 13px;
  color: #374151;
  outline: none;
}

/* line 1747, app/assets/stylesheets/customer/listing.scss */
.mfm-search-input:focus {
  border-color: #08AF86;
}

/* Checkbox list */
/* line 1752, app/assets/stylesheets/customer/listing.scss */
.mfm-check-list {
  overflow-y: auto;
}

/* line 1756, app/assets/stylesheets/customer/listing.scss */
.mfm-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
}

/* line 1766, app/assets/stylesheets/customer/listing.scss */
.mfm-check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #08AF86;
  flex-shrink: 0;
  cursor: pointer;
}

/* Footer */
/* line 1776, app/assets/stylesheets/customer/listing.scss */
.mfm-footer {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid #F3F4F6;
  flex-shrink: 0;
}

/* line 1784, app/assets/stylesheets/customer/listing.scss */
.mfm-btn-clear {
  flex: 1;
  padding: 12px;
  background: #fff;
  border: 0.87px solid #08AF86;
  border-radius: 6.94px;
  font-size: 13.88px;
  font-weight: 500;
  color: #08AF86;
  cursor: pointer;
}

/* line 1797, app/assets/stylesheets/customer/listing.scss */
.mfm-btn-apply {
  flex: 1;
  padding: 12px;
  border: 0.87px solid #08AF86;
  background: #08AF86;
  border-radius: 6.94px;
  font-size: 13.84px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

/* ================================
LOADING SKELETON
================================ */
/* line 1813, 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 1833, 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 1842, app/assets/stylesheets/customer/listing.scss */
  .skeleton-card {
    height: auto;
  }
}

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

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

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

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

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

/* ================================
RESPONSIVE UTILITIES
================================ */
/* iOS Safari rubber-band fix: sticky becomes fixed on mobile so the header
     never disappears during overscroll bounce at the bottom of the page. */
@media (max-width: 990px) {
  /* line 1881, app/assets/stylesheets/customer/listing.scss */
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  /* line 1889, app/assets/stylesheets/customer/listing.scss */
  body {
    padding-top: 114px;
    /* 54px header + 60px mobile search bar */
  }
}

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

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

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

@media (min-width: 1024px) {
  /* line 1913, 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 1932, app/assets/stylesheets/customer/listing.scss */
.fade-in {
  animation: fadeIn 0.3s ease;
}

/* ================================
PRINT STYLES
================================ */
@media print {
  /* line 1941, 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 1950, app/assets/stylesheets/customer/listing.scss */
  .property-card {
    page-break-inside: avoid;
  }
}

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

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

/* line 1975, 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 1989, 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 2015, 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 2026, app/assets/stylesheets/customer/listing.scss */
.toast-icon i {
  color: var(--primary-green);
  font-size: 14px;
}

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

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

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

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

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

/* line 2056, 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 2068, app/assets/stylesheets/customer/listing.scss */
.toast-close:hover {
  color: var(--text-dark);
}

/* ================================
     DESKTOP SEARCH — REDESIGNED
     ================================ */
/* --- Mode toggle button --- */
/* line 2076, app/assets/stylesheets/customer/listing.scss */
.search-mode-wrap {
  position: relative;
  flex-shrink: 0;
}

/* line 2081, app/assets/stylesheets/customer/listing.scss */
.search-mode-btn {
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--primary-green);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(8, 175, 134, 0.03) 0%, rgba(8, 175, 134, 0.1) 100%);
  color: #08AF86;
  border: 0.78px solid #08AF860F;
  box-shadow: 1.57px 1.57px 2.35px -2.35px #00795B0F;
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Work Sans", sans-serif;
  transition: background var(--transition-fast);
  line-height: 1;
}

/* line 2107, app/assets/stylesheets/customer/listing.scss */
.search-mode-btn:hover {
  background: var(--primary-green-light);
}

/* line 2111, app/assets/stylesheets/customer/listing.scss */
.mode-chevron {
  font-size: 11px;
  margin-left: 2px;
}

/* line 2116, app/assets/stylesheets/customer/listing.scss */
.search-mode-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 300;
  min-width: 164px;
  display: none;
  overflow: hidden;
}

/* line 2130, app/assets/stylesheets/customer/listing.scss */
.search-mode-dropdown.open {
  display: block;
}

/* line 2134, app/assets/stylesheets/customer/listing.scss */
.search-mode-option {
  padding: 11px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Work Sans", sans-serif;
  transition: background var(--transition-fast);
}

/* line 2146, app/assets/stylesheets/customer/listing.scss */
.search-mode-option:hover {
  background: var(--primary-green-light);
  color: var(--primary-green);
}

/* line 2151, app/assets/stylesheets/customer/listing.scss */
.search-mode-option.active {
  color: var(--primary-green);
  font-weight: 500;
}

/* --- Unified search bar --- */
/* line 2157, app/assets/stylesheets/customer/listing.scss */
.header-search-bar {
  display: flex;
  align-items: center;
  border: 0.8px solid #D0D7E4;
  border-radius: 8px;
  height: 42px;
  background: #fff;
  overflow: visible;
  /* must stay visible so suggestions dropdown shows */
  flex: 1;
  max-width: 560px;
  position: relative;
  min-width: 500px;
  padding: 5px;
}

/* --- City select section --- */
/* line 2174, app/assets/stylesheets/customer/listing.scss */
.header-search-city {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

/* line 2181, app/assets/stylesheets/customer/listing.scss */
.city-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: #F5F6FA;
  border-radius: 8px;
  color: #0A0A0A;
  font-weight: 400;
  font-size: 14px;
}

/* line 2192, app/assets/stylesheets/customer/listing.scss */
.city-select-wrap .city-select-inner {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: transparent;
  height: 100%;
  padding: 0 28px 0 14px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
}

/* line 2207, app/assets/stylesheets/customer/listing.scss */
.city-select-wrap .city-custom-trigger {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 28px 0 14px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
}

/* line 2221, app/assets/stylesheets/customer/listing.scss */
.city-select-wrap .city-custom-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 160px;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 1002;
}

/* line 2235, app/assets/stylesheets/customer/listing.scss */
.city-select-wrap .city-custom-menu.open {
  display: block;
}

/* line 2240, app/assets/stylesheets/customer/listing.scss */
.city-select-wrap .city-custom-item {
  padding: 8px 14px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
}

/* line 2247, app/assets/stylesheets/customer/listing.scss */
.city-select-wrap .city-custom-item:hover, .city-select-wrap .city-custom-item.active {
  background: #F5F6FA;
  color: #0A0A0A;
}

/* line 2254, app/assets/stylesheets/customer/listing.scss */
.city-select-wrap .city-drop-chevron {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #555;
  pointer-events: none;
}

/* line 2265, app/assets/stylesheets/customer/listing.scss */
.search-vdivider {
  width: 1px;
  height: 22px;
  background: #d8d8d8;
  flex-shrink: 0;
  margin: 0 2px;
}

/* --- Search input area --- */
/* line 2274, app/assets/stylesheets/customer/listing.scss */
.header-search-input-wrap {
  flex: 1;
  height: 100%;
  min-width: 0;
  position: relative;
}

/* line 2280, app/assets/stylesheets/customer/listing.scss */
.header-search-input-wrap input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 14px;
  background: transparent;
  font-family: "Work Sans", sans-serif;
  color: #333;
}

/* line 2291, app/assets/stylesheets/customer/listing.scss */
.header-search-input-wrap input::placeholder {
  color: #b0b7c3;
  font-weight: 400;
}

/* --- Suggestions dropdown (inside input-wrap) --- */
/* line 2299, app/assets/stylesheets/customer/listing.scss */
.header-search-input-wrap .suggestions-dropdown {
  left: -150px;
  /* extend left to cover city area too */
  width: calc(100% + 150px);
}

/* --- Teal search submit button --- */
/* line 2305, app/assets/stylesheets/customer/listing.scss */
.header-search-submit {
  width: 42px;
  height: 42px;
  background: var(--primary-green);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 16px;
  border-radius: 8px;
  transition: background var(--transition-fast);
  margin: -1px -1px -1px 0;
  /* compensate for parent border */
}

/* line 2321, app/assets/stylesheets/customer/listing.scss */
.header-search-submit:hover {
  background: var(--primary-green-hover);
}

/* line 2325, app/assets/stylesheets/customer/listing.scss */
.header-search-submit:disabled {
  pointer-events: none;
  opacity: 0.5 !important;
  cursor: not-allowed;
}

/* legacy — keep for any JS that still references these */
/* line 2333, app/assets/stylesheets/customer/listing.scss */
.search-bar-desktop {
  position: relative;
}

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

/* line 2340, 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 2354, 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 2362, app/assets/stylesheets/customer/listing.scss */
.city-select {
  width: 100%;
  height: 40px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
  background-color: var(--white);
}

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

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

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

/* line 2392, 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 2401, app/assets/stylesheets/customer/listing.scss */
  .header .container-fluid {
    padding: 0 16px;
  }
  /* line 2405, app/assets/stylesheets/customer/listing.scss */
  .logo-text {
    display: none;
  }
  /* line 2409, app/assets/stylesheets/customer/listing.scss */
  .btn-login {
    display: none;
  }
  /* line 2413, app/assets/stylesheets/customer/listing.scss */
  .mobile-menu-btn {
    display: block;
  }
  /* line 2416, app/assets/stylesheets/customer/listing.scss */
  .mobile-border-bottom {
    border-bottom: 1px solid #e3e3e3;
  }
  /* line 2420, app/assets/stylesheets/customer/listing.scss */
  .mobile-menu.active {
    display: flex;
  }
}

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

/* line 2428, app/assets/stylesheets/customer/listing.scss */
.location-text {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

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

@media (max-width: 991px) {
  /* line 2449, app/assets/stylesheets/customer/listing.scss */
  .property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  /* line 2456, app/assets/stylesheets/customer/listing.scss */
  .request-callback-btn,
.disabled-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
  /* line 2462, app/assets/stylesheets/customer/listing.scss */
  .builder-info {
    flex: 1;
    min-width: 0;
  }
  /* line 2467, app/assets/stylesheets/customer/listing.scss */
  .builder-name-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  /* line 2473, app/assets/stylesheets/customer/listing.scss */
  .builder-name {
    display: block;
    max-height: 1.4em;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  /* line 2480, app/assets/stylesheets/customer/listing.scss */
  .builder-name.collapsed {
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  /* line 2485, app/assets/stylesheets/customer/listing.scss */
  .builder-name.expanded {
    white-space: normal;
    max-height: 6em;
  }
  /* line 2490, 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 2505, 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 2514, 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 2531, 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 2540, app/assets/stylesheets/customer/listing.scss */
.suggestion-item:hover {
  background: #f8f9fa;
}

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

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

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

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

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

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

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

/* fav btn — hide in skeleton; empty circle buttons cause black-dot artifacts on mobile */
/* line 2590, app/assets/stylesheets/customer/listing.scss */
.property-card.skeleton .favorite-btn {
  display: none;
}

/* nav btn — hide in skeleton; empty circle buttons cause black-dot artifacts on mobile */
/* line 2595, app/assets/stylesheets/customer/listing.scss */
.property-card.skeleton .img-nav-btn {
  display: none;
}

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

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

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

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

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

/* config pills */
/* line 2627, 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 2636, app/assets/stylesheets/customer/listing.scss */
.builder-name.skeleton-line {
  width: 50%;
}

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

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

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

/* line 2663, 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);
  }
}

/* ================================
     LISTING MOBILE SEARCH MODAL
  ================================ */
/* line 2688, app/assets/stylesheets/customer/listing.scss */
.mobile-search-blank-modal {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 10000;
  display: none;
  overflow: hidden;
}

/* line 2697, app/assets/stylesheets/customer/listing.scss */
.mobile-search-blank-modal.active {
  display: block;
}

/* line 2701, app/assets/stylesheets/customer/listing.scss */
body.mobile-search-blank-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* line 2707, app/assets/stylesheets/customer/listing.scss */
.mobile-search-modal-content {
  height: 100%;
  overflow-y: auto;
  background: #ffffff;
  padding: calc(16px + env(safe-area-inset-top)) 14px calc(98px + env(safe-area-inset-bottom));
}

/* line 2714, app/assets/stylesheets/customer/listing.scss */
.msm-field,
.msm-city-box,
.msm-near {
  border: 0.8px solid #08af86;
  border-radius: 14px;
  background: #ffffff;
  min-height: 52px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #677387;
  font-size: 14px;
  gap: 10px;
}

/* line 2730, app/assets/stylesheets/customer/listing.scss */
.msm-near {
  justify-content: flex-start;
  cursor: pointer;
}

/* line 2735, app/assets/stylesheets/customer/listing.scss */
.msm-near strong {
  color: #08af86;
  display: block;
  line-height: 1.1;
}

/* line 2741, app/assets/stylesheets/customer/listing.scss */
.msm-near span {
  color: #b5b5b5;
  display: block;
  line-height: 1.1;
}

/* line 2747, app/assets/stylesheets/customer/listing.scss */
.msm-section {
  margin: 20px 0 2px;
}

/* line 2751, app/assets/stylesheets/customer/listing.scss */
.msm-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #102348;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.2;
}

/* line 2762, app/assets/stylesheets/customer/listing.scss */
.msm-chip {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 14px;
  background: #ffffff;
  color: #555;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}

/* line 2774, app/assets/stylesheets/customer/listing.scss */
.msm-chip.active {
  border-color: #08af86;
  color: white;
  background: #08af86;
}

/* line 2780, app/assets/stylesheets/customer/listing.scss */
.msm-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 0.8px solid #ebebeb;
  padding: 19px 14px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  gap: 12px;
  z-index: 10;
}

/* line 2793, app/assets/stylesheets/customer/listing.scss */
.msm-btn {
  flex: 1;
  height: 43px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #08af86;
  font-family: inherit;
  cursor: pointer;
}

/* line 2804, app/assets/stylesheets/customer/listing.scss */
.msm-btn-apply {
  background: #08af86;
  color: #ffffff;
  width: 100%;
}

/* line 2808, app/assets/stylesheets/customer/listing.scss */
.msm-btn-apply:disabled {
  pointer-events: none;
  opacity: 0.5 !important;
  cursor: not-allowed;
}

/* line 2815, app/assets/stylesheets/customer/listing.scss */
.msm-btn-clear {
  background: #ffffff;
  color: #08af86;
}

/* line 2820, app/assets/stylesheets/customer/listing.scss */
.msm-city-box {
  cursor: pointer;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}

/* line 2829, app/assets/stylesheets/customer/listing.scss */
.msm-city-placeholder {
  color: #9ca3af;
  font-size: 14px;
}

/* line 2834, app/assets/stylesheets/customer/listing.scss */
.msm-city-screen {
  min-height: 100%;
  padding-bottom: 84px;
  display: none;
}

/* line 2840, app/assets/stylesheets/customer/listing.scss */
.msm-city-screen.active {
  display: block;
}

/* line 2844, app/assets/stylesheets/customer/listing.scss */
.msm-city-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #102348;
}

/* line 2852, app/assets/stylesheets/customer/listing.scss */
.msm-city-header-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
}

/* line 2860, app/assets/stylesheets/customer/listing.scss */
.msm-city-close {
  border: 0;
  background: transparent;
  color: #8f96a3;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

/* line 2870, app/assets/stylesheets/customer/listing.scss */
.msm-city-search {
  border: 0.8px solid #08af86;
  border-radius: 14px;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}

/* line 2884, app/assets/stylesheets/customer/listing.scss */
.msm-city-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #102348;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* line 2894, app/assets/stylesheets/customer/listing.scss */
.msm-city-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 2900, app/assets/stylesheets/customer/listing.scss */
.msm-city-item {
  border-bottom: 1px solid #e0e0e0;
  color: #555;
  font-size: 14px;
  padding: 16px 2px;
  line-height: 22.4px;
  cursor: pointer;
}

/* line 2909, app/assets/stylesheets/customer/listing.scss */
.msm-city-item.active {
  color: #08af86;
  font-weight: 600;
}

/* line 2914, app/assets/stylesheets/customer/listing.scss */
.msm-city-apply {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 0.8px solid #ebebeb;
  background: #ffffff;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
}

/* line 2924, app/assets/stylesheets/customer/listing.scss */
.msm-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -16px -14px 16px;
  padding: calc(25px + env(safe-area-inset-top)) 14px 12px;
  border-bottom: 1px solid #e9e9e9;
  background: #ffffff;
  position: sticky;
  top: -15px;
  z-index: 5;
}

/* line 2937, app/assets/stylesheets/customer/listing.scss */
.msm-filter-back {
  border: 0;
  background: transparent;
  color: #102348;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* line 2948, app/assets/stylesheets/customer/listing.scss */
.msm-tabs {
  display: flex;
  gap: 8px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: -2px 0 7px 0 #4e4e4e21;
  padding: 4px;
}

/* line 2957, app/assets/stylesheets/customer/listing.scss */
.msm-tab {
  flex: 1;
  border-radius: 12px;
  height: 40px;
  background: #ffffff;
  color: #102348;
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* line 2975, app/assets/stylesheets/customer/listing.scss */
.msm-tab.active {
  border: 1px solid #dbf6ee;
  box-shadow: 0 2px 8px #08af8622;
  color: #08af86;
  font-weight: 500;
}

/* line 2982, app/assets/stylesheets/customer/listing.scss */
.msm-field input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  color: #677387;
}

/* line 2992, app/assets/stylesheets/customer/listing.scss */
.msm-ai-wrap {
  padding-bottom: 92px;
}

/* line 2996, app/assets/stylesheets/customer/listing.scss */
.msm-ai-center {
  text-align: center;
  padding: 26px 8px 8px;
}

/* line 3001, app/assets/stylesheets/customer/listing.scss */
.msm-ai-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ecfaf6;
  color: #08af86;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* line 3013, app/assets/stylesheets/customer/listing.scss */
.msm-ai-copy {
  color: #888888;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 18px;
}

/* line 3020, app/assets/stylesheets/customer/listing.scss */
.msm-ai-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 0.8px solid #ebebeb;
  background: #ffffff;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  z-index: 10;
}

/* line 3031, app/assets/stylesheets/customer/listing.scss */
.msm-toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10002;
  background: #fff8e6;
  border: 1px solid #ffc107;
  border-left: 4px solid #ffc107;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 260px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  color: #7a5600;
  line-height: 1.4;
  animation: msmToastIn 0.25s ease;
}

/* line 3053, app/assets/stylesheets/customer/listing.scss */
.msm-toast svg {
  flex-shrink: 0;
  color: #ffc107;
  margin-top: 1px;
}

/* line 3056, app/assets/stylesheets/customer/listing.scss */
.msm-toast.msm-toast-out {
  animation: msmToastOut 0.25s ease forwards;
}

@keyframes msmToastIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes msmToastOut {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px);
  }
}

/* Prevent iOS Safari from zooming on input focus (threshold is 16px) */
@media (max-width: 991.98px) {
  /* line 3072, app/assets/stylesheets/customer/listing.scss */
  .mfm-search-input,
#mobileLocalitySearch,
#mobileAmenitySearch,
#localitySearch,
.custom-select {
    font-size: 16px !important;
  }
}

/* Sort Modal Overrides */
/* line 3083, app/assets/stylesheets/customer/listing.scss */
#sortModal .list-group-item.active {
  background-color: var(--primary-green) !important;
  border-color: var(--primary-green) !important;
  color: #fff !important;
}

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