    /* ── BREADCRUMB ── */
    .breadcrumb-wrap { background: var(--bg); padding: 10px 0; border-bottom: 1px solid var(--border); }
    .breadcrumb { margin: 0; font-size: 12px; }
    .breadcrumb-item a { color: var(--orange); text-decoration: none; }
    .breadcrumb-item.active { color: var(--muted); }
    .breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }

    /* ── CATEGORY HEADER ── */
    .cat-header { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%); padding: 28px 0 22px; position: relative; overflow: hidden; }
    .cat-header-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1400&q=70') center/cover; opacity: .15; }
    .cat-header-content { position: relative; z-index: 2; }
    .cat-header h1 { font-family: 'Poppins', sans-serif; font-size: clamp(20px, 4vw, 32px); color: #fff; font-weight: 700; margin-bottom: 4px; }
    .cat-header h1 span { color: var(--orange); }
    .cat-header p { color: rgba(255,255,255,.7); font-size: 13px; margin: 0; }
    .result-count-badge { background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; border-radius: 20px; padding: 3px 12px; display: inline-block; }

    /* ── FILTER SIDEBAR ── */
    .filter-sidebar { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; position: sticky; top: 80px; }
    .filter-sidebar-head { background: var(--dark); color: #fff; padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
    .filter-sidebar-head h6 { margin: 0; font-size: 14px; font-weight: 700; }
    .btn-reset-filter { background: none; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8); font-size: 11px; border-radius: 4px; padding: 2px 8px; cursor: pointer; }
    .btn-reset-filter:hover { background: rgba(255,255,255,.1); color: #fff; }
    .filter-section { border-bottom: 1px solid var(--border); padding: 16px 18px; }
    .filter-section:last-child { border-bottom: none; }
    .filter-section-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
    .filter-section-title i { color: var(--orange); font-size: 11px; transition: transform .2s; }
    .filter-section-title.collapsed i { transform: rotate(-90deg); }
    .filter-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
    .filter-item:last-child { margin-bottom: 0; }
    .filter-check { display: flex; align-items: center; gap: 8px; cursor: pointer; }
    .filter-check input[type="checkbox"] { accent-color: var(--orange); width: 14px; height: 14px; cursor: pointer; }
    .filter-check label { font-size: 12px; color: var(--text); cursor: pointer; }
    .filter-count { font-size: 11px; color: var(--muted); background: var(--bg); border-radius: 10px; padding: 1px 7px; }
    .filter-count.active { background: var(--orange-light); color: var(--orange); }
    .price-range-wrap { margin-top: 4px; }
    .price-inputs { display: flex; gap: 8px; margin-bottom: 10px; }
    .price-inputs input { flex: 1; border: 1px solid #ddd; border-radius: 6px; padding: 6px 10px; font-size: 12px; color: var(--text); }
    .price-inputs input:focus { outline: none; border-color: var(--orange); }
    input[type="range"] { width: 100%; accent-color: var(--orange); }
    .range-labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--muted); margin-top: 4px; }
    .btn-apply-filter { background: var(--orange); color: #fff; border: none; border-radius: 8px; padding: 9px; font-size: 13px; font-weight: 600; width: 100%; margin-top: 4px; }
    .btn-apply-filter:hover { background: var(--orange-dark); }

    /* ── LISTING TOOLBAR ── */
    .listing-toolbar { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; margin-bottom: 16px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
    .toolbar-results { font-size: 13px; font-weight: 700; color: var(--dark); }
    .toolbar-results span { color: var(--orange); }
    .active-filter-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--orange-light); color: var(--orange); border: 1px solid rgba(244,121,32,.3); border-radius: 20px; padding: 3px 10px; font-size: 11px; font-weight: 600; }
    .active-filter-tag button { background: none; border: none; color: var(--orange); font-size: 10px; cursor: pointer; padding: 0; line-height: 1; }
    .btn-clear-all { background: none; border: none; color: var(--muted); font-size: 12px; cursor: pointer; text-decoration: underline; }
    .btn-clear-all:hover { color: var(--orange); }
    .toolbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
    .sort-select { border: 1px solid #ddd; border-radius: 7px; padding: 6px 10px; font-size: 12px; color: var(--text); background: #fff; }
    .sort-select:focus { outline: none; border-color: var(--orange); }
    .view-toggle { display: flex; gap: 4px; }
    .view-btn { width: 32px; height: 32px; border-radius: 6px; border: 1px solid var(--border); background: #fff; color: var(--muted); font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .2s; }
    .view-btn.active, .view-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
    .per-page-select { border: 1px solid #ddd; border-radius: 7px; padding: 6px 10px; font-size: 12px; color: var(--text); background: #fff; }

    /* ── PROPERTY LIST CARD (image screenshot design) ── */
    .prop-list-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 16px; transition: box-shadow .2s, transform .2s; display: flex; }
    .prop-list-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); transform: translateY(-2px); }
    .prop-list-img { position: relative; width: 280px; min-width: 280px; overflow: hidden; }
    .prop-list-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
    .prop-list-card:hover .prop-list-img img { transform: scale(1.06); }
    .prop-list-badge { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; gap: 6px; flex-wrap: wrap; }
    .prop-list-badge .badge { font-size: 10px; font-weight: 700; border-radius: 4px; padding: 3px 9px; text-transform: capitalize; }
    .badge-type { background: #1a1a2e; color: #fff; }
    .badge-hot { background: #FF5200; color: #fff; }
    .badge-sale { background: var(--orange); color: #fff; }
    .badge-rent { background: var(--blue); color: #fff; }
    .badge-new { background: var(--green); color: #fff; }
    .photo-count { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,.6); color: #fff; font-size: 10px; border-radius: 6px; padding: 3px 9px; display: flex; align-items: center; gap: 5px; }
    .prop-fav-btn { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #ccc; box-shadow: 0 2px 8px rgba(0,0,0,.15); cursor: pointer; transition: .2s; border: none; z-index: 2; }
    .prop-fav-btn:hover, .prop-fav-btn.active { color: #FF5200; }

    /* List Card Body */
    .prop-list-body { flex: 1; padding: 20px 22px; display: flex; flex-direction: column; }
    .prop-list-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 4px; }
    .prop-list-title { font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.3; }
    .prop-list-price { font-size: 20px; font-weight: 800; color: var(--orange); white-space: nowrap; text-align: right; }
    .prop-list-price small { display: block; font-size: 11px; color: var(--muted); font-weight: 400; }
    .prop-list-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }
    .prop-list-meta i { color: var(--orange); }
    .prop-list-stats { display: flex; gap: 18px; margin-bottom: 12px; }
    .prop-stat { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text); }
    .prop-stat i { color: var(--muted); font-size: 15px; }
    .prop-stat .val { font-weight: 700; color: var(--dark); }
    .prop-list-desc { font-size: 12px; color: #e67e22; line-height: 1.6; margin-bottom: 14px; font-style: normal; flex: 1; }
    .prop-list-footer { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
    .btn-see-details { background: #fff; color: var(--dark); border: 1.5px solid var(--border); border-radius: 8px; padding: 7px 16px; font-size: 12px; font-weight: 600; text-decoration: none; transition: .2s; display: inline-flex; align-items: center; gap: 6px; }
    .btn-see-details:hover { border-color: var(--orange); color: var(--orange); }
    .btn-contact { background: var(--orange); color: #fff; border: none; border-radius: 8px; padding: 7px 16px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: .2s; }
    .btn-contact:hover { background: var(--orange-dark); color: #fff; }
    .prop-compare-btn { margin-left: auto; width: 30px; height: 30px; background: #fff; border: 1.5px solid var(--border); border-radius: 7px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--muted); font-size: 13px; transition: .2s; }
    .prop-compare-btn:hover { border-color: var(--orange); color: var(--orange); }

    /* ── PROPERTY GRID CARD ── */
    .prop-grid-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.07); transition: transform .2s, box-shadow .2s; margin-bottom: 20px; }
    .prop-grid-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.13); }
    .prop-grid-img { position: relative; height: 190px; overflow: hidden; }
    .prop-grid-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
    .prop-grid-card:hover .prop-grid-img img { transform: scale(1.07); }
    .prop-grid-body { padding: 14px 16px; }
    .prop-grid-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
    .prop-grid-loc { font-size: 11px; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
    .prop-grid-loc i { color: var(--orange); }
    .prop-grid-stats { display: flex; gap: 12px; margin-bottom: 10px; }
    .prop-grid-stat { font-size: 11px; color: var(--text); display: flex; align-items: center; gap: 5px; }
    .prop-grid-stat i { color: var(--muted); }
    .prop-grid-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--border); }
    .prop-grid-price { font-size: 15px; font-weight: 800; color: var(--orange); }
    .prop-grid-price small { display: block; font-size: 10px; color: var(--muted); font-weight: 400; }

    /* ── PAGINATION ── */
    .pagination-wrap { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 24px; flex-wrap: wrap; }
    .page-btn { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); background: #fff; color: var(--text); font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .2s; }
    .page-btn:hover, .page-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
    .page-btn.disabled { opacity: .4; pointer-events: none; }
    .page-ellipsis { color: var(--muted); font-size: 13px; padding: 0 4px; }

    /* ── MAP TOGGLE ── */
    .map-toggle-wrap { position: relative; }
    .map-placeholder { background: linear-gradient(135deg, #e8f4f8, #dce8f0); border: 1px solid var(--border); border-radius: 12px; height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--muted); }
    .map-placeholder i { font-size: 40px; color: var(--orange); opacity: .5; }
    .map-placeholder p { font-size: 13px; margin: 0; }

    /* ── SIDEBAR PROMO ── */
    .sidebar-promo { background: linear-gradient(135deg, var(--orange), #f7941e); border-radius: 14px; padding: 22px; color: #fff; margin-bottom: 20px; }
    .sidebar-promo h5 { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
    .sidebar-promo p { font-size: 12px; opacity: .9; margin-bottom: 14px; }
    .btn-white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); border-radius: 8px; padding: 7px 16px; font-size: 12px; font-weight: 700; width: 100%; }
    .btn-white-outline:hover { background: rgba(255,255,255,.15); color: #fff; }

    /* ── MOBILE FILTER SHEET ── */
    .filter-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 2000; }
    .filter-overlay.open { display: block; }
    .filter-sheet { position: fixed; bottom: -100%; left: 0; right: 0; background: #fff; border-radius: 20px 20px 0 0; z-index: 2100; max-height: 85vh; overflow-y: auto; transition: bottom .35s cubic-bezier(.4,0,.2,1); }
    .filter-sheet.open { bottom: 0; }
    .filter-sheet-head { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background: #fff; z-index: 2; }
    .filter-sheet-head h6 { margin: 0; font-size: 15px; font-weight: 700; }
    .filter-sheet-close { background: none; border: none; font-size: 20px; color: var(--muted); cursor: pointer; }
    .filter-sheet-body { padding: 16px 20px; }
    .filter-chip-group { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
    .filter-chip { border: 1.5px solid var(--border); border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 500; cursor: pointer; transition: .2s; background: #fff; color: var(--text); }
    .filter-chip.active, .filter-chip:hover { background: var(--orange-light); border-color: var(--orange); color: var(--orange); }
    .filter-sheet-footer { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; gap: 10px; position: sticky; bottom: 0; background: #fff; }
    .btn-filter-reset { flex: 1; background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 11px; font-size: 13px; font-weight: 600; }
    .btn-filter-apply { flex: 2; background: var(--orange); color: #fff; border: none; border-radius: 10px; padding: 11px; font-size: 13px; font-weight: 600; }
    .btn-filter-apply:hover { background: var(--orange-dark); }

    /* ── MOBILE NAV ── */
    .mob-nav { display: none; background: #fff; border-bottom: 1px solid var(--border); padding: 10px 16px; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1100; box-shadow: 0 2px 8px rgba(0,0,0,.07); }
    .mob-brand { font-family: 'Poppins', sans-serif; font-size: 18px; color: var(--orange); font-weight: 700; }
    .mob-brand span { color: var(--dark); }
    .mob-nav-right { display: flex; align-items: center; gap: 14px; }
    .mob-nav-icon { font-size: 20px; color: var(--dark); position: relative; background: none; border: none; }
    .mob-filter-fab { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); background: var(--dark); color: #fff; border: none; border-radius: 30px; padding: 11px 22px; font-size: 13px; font-weight: 700; display: none; align-items: center; gap: 8px; box-shadow: 0 4px 20px rgba(0,0,0,.25); z-index: 900; }
    .mob-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1200; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -4px 16px rgba(0,0,0,.08); padding: 6px 0 env(safe-area-inset-bottom,6px); }
    .mob-bottom-tabs { display: flex; justify-content: space-around; align-items: center; }
    .mob-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; cursor: pointer; text-decoration: none; padding: 4px 8px; min-width: 52px; }
    .mob-tab i { font-size: 20px; color: var(--muted); }
    .mob-tab span { font-size: 10px; font-weight: 600; color: var(--muted); }
    .mob-tab.active i, .mob-tab.active span { color: var(--orange); }

    /* ── SCROLL TOP ── */
    #scrollTop { position: fixed; bottom: 24px; right: 24px; background: var(--orange); color: #fff; border: none; border-radius: 50%; width: 42px; height: 42px; font-size: 18px; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(244,121,32,.4); cursor: pointer; z-index: 999; transition: .2s; }
    #scrollTop:hover { background: var(--orange-dark); transform: translateY(-2px); }

    /* ── RESPONSIVE ── */
    @media(max-width: 991px) {
      .prop-list-img { width: 220px; min-width: 220px; }
    }
    @media(max-width: 767px) {
      .top-bar { display: none !important; }
      .main-nav { display: none !important; }
      .sub-nav { display: none !important; }
      .mob-nav { display: flex !important; }
      .mob-filter-fab { display: flex !important; }
      .mob-bottom-bar { display: block !important; }
      body { padding-bottom: 70px; }
      .prop-list-card { flex-direction: column; }
      .prop-list-img { width: 100%; min-width: 0; height: 200px; }
      .prop-list-body { padding: 14px 16px; }
      .prop-list-title { font-size: 15px; }
      .prop-list-price { font-size: 16px; }
      .sidebar-col { display: none; }
      .listing-toolbar { gap: 6px; }
      .toolbar-right { width: 100%; justify-content: space-between; }
      .view-toggle { display: none; }
      .per-page-select { display: none; }
      .cat-header { padding: 18px 0 14px; }
      #scrollTop { bottom: 80px; right: 16px; }
    }
    @media(max-width: 576px) {
      .prop-list-stats { flex-wrap: wrap; gap: 10px; }
      .prop-list-footer { flex-wrap: wrap; }
      .btn-contact, .btn-see-details { flex: 1; justify-content: center; }
    }

    /* ── SECTION UTILITIES ── */
    .section-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 0; }
    .view-all { color: var(--orange); font-size: 13px; font-weight: 600; text-decoration: none; }
    .view-all:hover { text-decoration: underline; }
 