   .side-box .check {
            position: absolute;
            top: 30px;
            right: 50px;
            z-index: 1;
            cursor: pointer;
            color: green;
        }
    
    /* Pagination active state */
    #pagination-div .rts-btn.active {
        background-color: var(--color-primary);
        color: var(--color-primary);
        border-color: var(--color-primary);
    }
    
    /* Car Animation Loader */
    .car-loader-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.95);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
    }
    
    .car-animation {
        width: 300px;
        height: 150px;
        position: relative;
    }
    
    .car-container {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .car {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        animation: carMove 3s ease-in-out infinite;
    }
    
    .car-img {
        width: 80px;
        height: auto;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }
    
    .road {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        height: 6px;
        background: #666;
        border-radius: 3px;
        overflow: hidden;
    }
    
    .road::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 200%;
        height: 2px;
        background: repeating-linear-gradient(
            to right,
            transparent 0px,
            transparent 15px,
            white 15px,
            white 30px
        );
        transform: translateY(-50%);
        animation: roadMove 2s linear infinite;
    }
    
    .car-loader-text {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 16px;
        color: var(--color-primary);
        font-weight: 600;
        white-space: nowrap;
        animation: textPulse 1.5s ease-in-out infinite;
    }
    
    @keyframes carMove {
        0%, 100% { 
            transform: translateX(-50%) translateY(0px);
        }
        25% { 
            transform: translateX(-45%) translateY(-3px);
        }
        50% { 
            transform: translateX(-50%) translateY(0px);
        }
        75% { 
            transform: translateX(-55%) translateY(-2px);
        }
    }
    
    @keyframes roadMove {
        0% { transform: translateX(0) translateY(-50%); }
        100% { transform: translateX(-30px) translateY(-50%); }
    }
    
    @keyframes textPulse {
        0%, 100% { opacity: 0.7; }
        50% { opacity: 1; }
    }
    
    /* Loading state for car listings */
    .car-listings-loading {
        text-align: center;
        padding: 50px 0;
    }
    
    /* Mobile Sticky Buttons */
    .mobile-sticky-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1050;
        display: flex;
        gap: 10px;
        background: rgba(255, 255, 255, 0.95);
        padding: 10px;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
    }
    
    .mobile-filter-btn, .mobile-sort-btn {
        border-radius: 20px;
        padding: 10px 20px;
        font-weight: 500;
        border: none;
        transition: all 0.3s ease;
    }
    
    .mobile-filter-btn:hover, .mobile-sort-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    /* Mobile Filters Container */
    .mobile-filters-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1060;
        overflow-y: auto;
    }
    
    .mobile-filters-content {
        background: white;
        margin: 20px;
        border-radius: 15px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        animation: slideUp 0.3s ease;
    }
    
    .mobile-filters-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        background: white;
        border-radius: 15px 15px 0 0;
    }
    
    .mobile-filters-body {
        padding: 20px;
        max-height: calc(100vh - 200px);
        overflow-y: auto;
    }
    
    .mobile-filters-footer {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        padding: 20px;
        border-top: 1px solid #eee;
        position: sticky;
        bottom: 0;
        background: white;
        border-radius: 0 0 15px 15px;
    }
    
    .mobile-filters-footer button {
        flex: 1;
        padding: 12px;
        border-radius: 8px;
        font-weight: 500;
    }
    
    /* Mobile Sorting Container */
    .mobile-sorting-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1060;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-sorting-content {
        background: white;
        margin: 20px;
        border-radius: 15px;
        width: calc(100% - 40px);
        max-width: 400px;
        animation: slideUp 0.3s ease;
    }
    
    .mobile-sorting-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-sorting-body {
        padding: 20px;
    }
    
    .mobile-sorting-body select {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid #ddd;
        font-size: 16px;
    }
    
    /* Desktop Sorting */
    .sorting-section {
        margin-bottom: 20px;
    }
    
    .sort-dropdown {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .sort-dropdown select {
        min-width: 200px;
        padding: 8px 12px;
        border-radius: 6px;
        border: 1px solid #ddd;
    }
    
    /* Animation */
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Hide desktop filters on mobile */
    @media (max-width: 991.98px) {
        .filterdiv {
            display: none;
        }
    }
    
    /* Primary button color */
    .btn-outline-primary {
        color: var(--color-primary) !important;
    }

    .btn-outline-primary:hover {     
        background-color:var(--color-primary) !important;
        border-color: var(--color-primary) !important;
        color: white !important;
    }
    
    .btn-primary {
        background-color: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
        color: white !important;
    }
    
    .btn-primary:hover {
        background-color: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
        opacity: 0.9;
    }
    
    .btn-primary:focus,
    .btn-primary:active {
        background-color: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
        box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb), 0.25) !important;
    }
    
    /* Mobile Filter Accordion */
    .mobile-filters-body .side-box {
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .mobile-filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background: #f8f9fa;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        transition: all 0.3s ease;
    }
    
    .mobile-filter-header:hover {
        background: #e9ecef;
    }
    
    .mobile-filter-header h2 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }
    
    .mobile-filter-arrow {
        font-size: 14px;
        color: #666;
        transition: transform 0.3s ease;
    }
    
    .mobile-filter-arrow.expanded {
        transform: rotate(180deg);
    }
    
    .mobile-filter-content {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .mobile-filter-content.expanded {
        max-height: 300px;
        padding: 15px;
        overflow-y: auto;
    }
    
    .mobile-filter-content .input-wrapper {
        margin-bottom: 10px;
    }
    
    .mobile-filter-content .checkbox-list {
        max-height: 200px;
        overflow-y: auto;
    }
    
    /* Price range in mobile accordion */
    .mobile-filter-content .slider-container {
        padding: 10px 0;
    }
    