     /* Filters end */
     .filters-form{
        background-color: #232323;
        border-radius: 8px;
        padding: 20px;
    }
    .header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
     
    .total-found {
        font-size: 16px;
        display: inline-block;
        line-height: 25px;
        color: white;
        float: right;
        margin: 0px;
    }
    
    .filter-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .filter-group {
        flex: 1;
        min-width: 150px;
    }
    
    .filter-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: white;
        font-size: 14px;
    }
    
    .filter-select {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background-color: #fff;
        font-size: 14px;
        transition: all 0.3s;
        height: 42px;
        cursor: pointer;
    }
    
    .filter-select:focus {
        border-color: #232323;
        outline: none;
        box-shadow: 0 0 0 2px rgba(35, 35, 35, 0.1);
    }
    
    .filter-actions {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 25px;
        margin-top: 20px;
    }
    
    .filter-button {
        padding: 12px 24px;
        background-color: white;
        color: black;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        font-size: 15px;
        font-weight: 500;
        transition: background-color 0.3s;
        order: 2;
        min-width: 180px;
        border: 1px solid white;
    }
    
    .filter-button:hover {
        background: transparent;
        color: white;
        border-color: white;
        border: 1px solid white;
    }
    
    .filter-button.reset {
        background-color: #f0f0f0;
        color: #232323;
        order: 3;
        border: 1px solid white;
    }
    
    .filter-button.reset:hover {
        background: transparent;
        color: white;
        border-color: white;
        border: 1px solid white;
    }
     
    .toggle-filters-btn {
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        font-size: 15px;
        font-weight: 500;
        padding: 0;
        text-decoration: none;
        border-bottom: 1px dashed;
        border-color:white;
        line-height: 25px;
        order: 1;
        margin-right: auto;
          
    }
    
    .hidden-filters {
        display: none;
    }
    
    .filters-form.show-all .hidden-filters {
        display: block;
    }
    
    /* Стили для чекбоксов */
    .checkbox-group {
        display: flex;
        align-items: center;
        min-width: auto;
        flex: 0 1 auto;
    }
    
    .checkbox-label {
        display: flex;
        align-items: center;
        cursor: pointer;
        position: relative;
        padding-left: 35px;
        min-height: 36px;
        margin-right: 20px;
    }
    
    .checkbox-input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
    
    .checkbox-custom {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block;
        width: 24px;
        height: 24px;
        background-color: #fff;
        border: 2px solid #ddd;
        border-radius: 6px;
        transition: all 0.3s;
    }
    
    .checkbox-input:checked ~ .checkbox-custom {
        background-color: #232323;
        border-color: #232323;
    }
    
    .checkbox-input:checked ~ .checkbox-custom:after {
        content: "";
        position: absolute;
        left: 7px;
        top: 2px;
        width: 6px;
        height: 12px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
    
    .checkbox-text {
        font-size: 14px;
        color: white;
        line-height: 36px;
    }
    
    @media (max-width: 1200px) {
        .filter-group {
            min-width: calc(25% - 15px);
        }
    }
    
    @media (max-width: 992px) {
        .header-row {
            flex-direction: column;
            align-items: flex-start;
            gap:0px;
        }
        
        
        .filter-group {
            min-width: calc(50% - 15px);
        }
        
        .checkbox-group {
            min-width: calc(50% - 15px);
        }
    }
    
    @media (max-width: 768px) {
        .filter-actions {
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .toggle-filters-btn {
            width: auto;
            text-align: left;
            padding-bottom: 5px;
            max-width: 200px;
        }
        
        .filter-button {
            order: 2;
            flex: 1;
        }
        
        .filter-button.reset {
            order: 3;
            flex: 1;
        }
    }
    
    @media (max-width: 576px) {
        
        .total-found {
            font-size: 14px;
        }
    }

/* Filters end */

 /* Catalog cars */
    .cars-catalog {
        width: 100%;
    }
    
    .cars-catalog__container {
    display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 0 auto;
        width: 100%;
    }
    @media (max-width: 1366px) {
        .cars-catalog__container {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    @media (max-width: 900px) {
        .cars-catalog__container {
        grid-template-columns: repeat(2, 1fr);
        }
    }
    
    /* Адаптация под мобильные (1 колонка) */
    @media (max-width: 768px) {
        .cars-catalog__container {
        grid-template-columns: 1fr;
        }
    .cars-catalog__container .single-auto{
            max-width:100%;
        }
    }
    /* Catalog cars */
    /* not_found_cars_block*/
    .not_found_cars_block{
        text-align: center;
    } 
    .not_found_cars_block img{
        max-width: 500px;
        width: 100%;
    }
     .not_found_cars_block h2{
        display: block;
     }
    /* not_found_cars_block*/