/* assets/css/components.css — SareProperty | Phase 2 split */
/* ============================================================
   FILTER POPUP - Swiggy-style
   Mobile: bottom sheet sliding up
   Desktop: left sidebar with grey overlay
   ============================================================ */
.filter-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.filter-overlay.active {
    opacity: 1;
    visibility: visible;
}
.filter-panel {
    position: fixed;
    z-index: 1101;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
@media (max-width: 767px) {
    .filter-panel {
        bottom: 0; left: 0;
        width: 100%;
        height: 85vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    }
    .filter-panel.active { transform: translateY(0); }
    .filter-panel::before {
        content: '';
        display: block;
        width: 40px; height: 4px;
        background: #ddd;
        border-radius: 2px;
        margin: 10px auto 0;
    }
}
@media (min-width: 768px) {
    .filter-panel {
        top: 0; left: 0;
        width: 480px;
        height: 100vh;
        border-radius: 0 16px 16px 0;
        transform: translateX(-100%);
        box-shadow: 10px 0 40px rgba(0,0,0,0.12);
    }
    .filter-panel.active { transform: translateX(0); }
}
.filter-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}
.filter-panel-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1c1c1c;
}
.filter-close-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    transition: background 0.2s;
}
.filter-close-btn:hover { background: #e8e8e8; }
.filter-body {
    display: flex;
    flex: 1;
    overflow: hidden;
 background: var(--bg-secondary);}
.filter-categories {
    width: 140px;
    min-width: 140px;
    background: #fafafa;
    border-right: 1px solid #f0f0f0;
    overflow-y: auto;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .filter-categories { width: 160px; min-width: 160px; }
}
.filter-cat-item {
    padding: 16px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
.filter-cat-item:hover { background: #f0f0f0; color: #333; }
.filter-cat-item.active {
    background: #fff;
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 700;
}
.filter-options {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}
.filter-options::-webkit-scrollbar { width: 3px; }
.filter-options::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
.filter-option-group { display: none; }
.filter-option-group.active { display: block; }
.filter-option-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.filter-option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    cursor: pointer;
    transition: color 0.15s;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}
.filter-option-item:hover { color: #000; }
.filter-check {
    width: 20px; height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}
.filter-option-item.selected .filter-check {
    background: var(--primary);
    border-color: var(--primary);
}
.filter-option-item.selected .filter-check::after {
    content: '\2713';
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
}
.filter-radio {
    width: 20px; height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}
.filter-option-item.selected .filter-radio {
    border-color: var(--primary);
}
.filter-option-item.selected .filter-radio::after {
    content: '';
    width: 10px; height: 10px;
    background: var(--primary);
    border-radius: 50%;
}
.filter-price-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.price-chip {
    padding: 8px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #555;
    background: #fff;
}
.price-chip:hover { border-color: #bbb; }
.price-chip.selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.filter-panel-footer {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
    flex-shrink: 0;
}
.filter-clear-btn {
    flex: 1;
    padding: 13px;
    border: none;
    background: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.2s;
}
.filter-clear-btn:hover { background: #eff6ff; }
.filter-apply-btn {
    flex: 1;
    padding: 13px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.filter-apply-btn:hover { background: var(--primary-dark); }
.filter-btn .filter-count {
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    min-width: 18px; height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}

/* ============================================================
   LOCATION PANEL - Swiggy-style
   Mobile: bottom sheet | Desktop: left sidebar
   ============================================================ */
.location-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.location-overlay.active { opacity: 1; visibility: visible; }

.location-panel {
    position: fixed;
    z-index: 1101;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
@media (max-width: 767px) {
    .location-panel {
        bottom: 0; left: 0;
        width: 100%;
        height: 90vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    }
    .location-panel.active { transform: translateY(0); }
    .location-panel::before {
        content: '';
        display: block;
        width: 40px; height: 4px;
        background: #ddd;
        border-radius: 2px;
        margin: 10px auto 0;
    }
}
@media (min-width: 768px) {
    .location-panel {
        top: 0; left: 0;
        width: 420px;
        height: 100vh;
        border-radius: 0 16px 16px 0;
        transform: translateX(-100%);
        box-shadow: 10px 0 40px rgba(0,0,0,0.12);
    }
    .location-panel.active { transform: translateX(0); }
}

/* Header */
.loc-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}
.loc-close-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #666;
    transition: background 0.2s;
    flex-shrink: 0;
}
.loc-close-btn:hover { background: #e8e8e8; }
.loc-panel-header h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1c1c1c;
}

/* Search Box */
.loc-search-wrap {
    padding: 14px 20px;
    flex-shrink: 0;
}
.loc-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 12px 16px;
    border: 1.5px solid transparent;
    transition: border-color 0.2s, background 0.2s;
}
.loc-search-box:focus-within {
    border-color: #ddd;
    background: #fff;
}
.loc-search-box i { color: #999; font-size: 1.2rem; }
.loc-search-input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    font-size: 0.95rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    color: #333;
}
.loc-search-input::placeholder { color: #aaa; }

/* Body (scrollable) */
.loc-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
 background: var(--bg-secondary);}
.loc-panel-body::-webkit-scrollbar { width: 3px; }
.loc-panel-body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

/* GPS Button */
.loc-gps-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}
.loc-gps-btn:hover { background: #f8f8ff; }
.loc-gps-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #EEF2FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.loc-gps-icon i { color: #4361ee; font-size: 1.1rem; }
.loc-gps-text { font-size: 0.95rem; font-weight: 600; color: #4361ee; }
.loc-gps-sub { font-size: 0.78rem; color: #999; font-weight: 500; }

/* Section Label */
.loc-section-label {
    padding: 14px 20px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Recent Location Item */
.loc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.15s;
}
.loc-item:hover { background: #fafafa; }
.loc-item-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.loc-item-icon i { color: #666; font-size: 1rem; }
.loc-item-text {
    flex: 1;
    font-size: 0.92rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.loc-item-arrow {
    color: #ccc;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* City List Item */
.loc-city-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f8f8f8;
}
.loc-city-item:hover { background: #fafafa; }
.loc-city-item span {
    font-size: 0.92rem;
    font-weight: 500;
    color: #333;
}
.loc-city-item i { color: #ccc; font-size: 1rem; }

/* All Cities link */
.loc-all-link {
    padding: 14px 20px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4361ee;
    cursor: pointer;
}
.loc-all-link:hover { text-decoration: underline; }

/* GPS loading spinner */
.loc-detecting {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #eff6ff;
    color: #1558C9;
    font-size: 0.85rem;
    font-weight: 600;
}
.loc-detecting i { animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ============================================================
   BROKER PROFILE ICON â€” in detail sheet top bar
   ============================================================ */
.sheet-broker-profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: visible;
    cursor: pointer;
    border: 2.5px solid #1A6FF4;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

/* Larger invisible tap target for easy clicking */
.sheet-broker-profile-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.sheet-broker-profile-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.4);
}

.sheet-broker-profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* ============================================================
   BROKER PROFILE ICON ON PROPERTY CARDS
   ============================================================ */
.broker-profile-icon {
    position: absolute;
    top: 8px;
    right: 40px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    z-index: 5;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.broker-profile-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 3px 12px rgba(124, 58, 237, 0.5);
}

.broker-profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   BROKER PROFILE FULL-SCREEN POPUP
   ============================================================ */

/* Dark backdrop overlay */
.broker-profile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.broker-profile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.broker-profile-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fb;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.35s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
}

.broker-profile-popup.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

/* â”€â”€ Popup Header â”€â”€ */
.broker-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.broker-popup-header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0;
    letter-spacing: -0.3px;
}

.broker-popup-back {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #1c1c1c;
    border-radius: 50%;
    transition: background 0.2s;
    padding: 0;
}

.broker-popup-back:hover {
    background: #f3f3f3;
}

/* â”€â”€ Popup Content (scrollable) â”€â”€ */
.broker-popup-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding-bottom: 30px;
}

/* â”€â”€ Profile Card â”€â”€ */
.broker-popup-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px 24px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.broker-popup-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 14px;
    border: 3px solid #1A6FF4;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.broker-popup-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.broker-popup-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}

.broker-popup-company {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    margin: 0 0 18px;
}

/* â”€â”€ Action Buttons (Call / WhatsApp) â”€â”€ */
.broker-popup-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 340px;
}

.broker-popup-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.broker-call-btn {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    color: #1c1c1c;
}

.broker-call-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.broker-wa-btn {
    background: #25D366;
    border: 1.5px solid #25D366;
    color: #fff;
}

.broker-wa-btn:hover {
    background: #22c55e;
    border-color: #22c55e;
}

.broker-popup-action-btn i {
    font-size: 1.1rem;
}

/* â”€â”€ Rent / Sale Tabs â”€â”€ */
.broker-popup-tabs {
    display: flex;
    gap: 12px;
    padding: 18px 20px 0;
    background: #fff;
}

.broker-popup-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: var(--text-sub);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.broker-popup-tab.active {
    background: #1A6FF4;
    border-color: #1A6FF4;
    color: #fff;
}

.broker-popup-tab:not(.active):hover {
    border-color: #1A6FF4;
    color: #1A6FF4;
}

.broker-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0 4px;
}

.broker-popup-tab.active .broker-tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.broker-popup-tab:not(.active) .broker-tab-count {
    background: #f1f5f9;
    color: var(--text-sub);
}

/* â”€â”€ Properties Grid â”€â”€ */
.broker-popup-properties {
    padding: 18px 16px 0;
}

.broker-popup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

@media (min-width: 640px) {
    .broker-popup-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 18px;
    }
}

.broker-popup-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.broker-popup-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.broker-popup-card-img {
    width: 100%;
    height: 130px;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.broker-popup-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.broker-card-type {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.broker-card-type.rent {
    background: rgba(37, 99, 235, 0.9);
    color: #fff;
}

.broker-card-type.sale {
    background: rgba(234, 88, 12, 0.9);
    color: #fff;
}

.broker-popup-card-info {
    padding: 10px 12px 14px;
}

.broker-popup-card-id {
    font-size: 0.6rem;
    color: #a0aec0;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.broker-popup-card-info h4 {
    font-size: 0.88rem;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.broker-popup-card-price {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1A6FF4;
    margin: 0 0 6px;
}

.broker-popup-card-specs {
    display: flex;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--text-sub);
    font-weight: 600;
    margin: 0 0 4px;
}

.broker-popup-card-specs span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.broker-popup-card-specs i {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.broker-popup-card-loc {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.broker-popup-card-loc i {
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* â”€â”€ Empty State â”€â”€ */
.broker-popup-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.broker-popup-empty i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.broker-popup-empty p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* â”€â”€ Desktop: Popup as centered dialog â”€â”€ */
@media (min-width: 768px) {
    .broker-profile-popup {
        top: 50%;
        left: 50%;
        width: 92%;
        max-width: 680px;
        height: 88vh;
        border-radius: 20px;
        transform: translate(-50%, -50%) scale(0.92);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
        transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s, visibility 0.3s;
    }

    .broker-profile-popup.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}


/* Card Swiper Overrides */
.prop-image-container .card-nav-prev,
.prop-image-container .card-nav-next {
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #111;
    background: #ffffff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.prop-image-container .card-nav-prev:after,
.prop-image-container .card-nav-next:after {
    font-size: 16px;
    font-weight: 900;
}
.property-list-card:hover .card-nav-prev,
.property-list-card:hover .card-nav-next {
    opacity: 1;
}
.prop-image-container .swiper-pagination {
    top: 10px;
    bottom: auto !important;
}
.prop-image-container .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    width: 6px;
    height: 6px;
    margin: 0 3px !important;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.prop-image-container .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 8px;
    height: 8px;
}

/* ============================================================
   LOADING SKELETON — Shimmer cards shown while API fetches
   ============================================================ */
@keyframes shimmer {
    0%   { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.loading-skeleton {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 16px;
}

.skeleton-card {
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    background: linear-gradient(90deg, #f0f2f5 25%, #e8eaed 50%, #f0f2f5 75%);
    background-size: 936px 100%;
    animation: shimmer 1.4s infinite linear;
}
