    .title_obj{
        font-weight: 800;
    }
    .desc_obj{
        font-size:12px;
    }
.single-car-item-list {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    margin-bottom: 15px;
    margin-top:20px;
}

.single-car-item-list:hover {
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-color: #eda83d;
}
.single-car-item-list{
    padding:0!important
}

.car-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-car-item-list:hover .car-image img {
    transform: scale(1.03);
}

.car-image .car-meta {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 2;
}

.car-image .car-meta li {
    margin-bottom: 5px;
}

.car-image .car-meta button,
.car-image .car-meta a {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.car-image .car-meta button:hover,
.car-image .car-meta a:hover {
    background: #eda83d;
    color: white;
    transform: scale(1.1);
}

.status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    z-index: 2;
    text-transform: uppercase;
}

.status.special {
    height:30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.status.discount {
     height:30px;
    background: linear-gradient(135deg, #4cd964, #2ecc71);
}

.status.hot {
     height:30px;
    background: linear-gradient(135deg, #ff9500, #ff6600);
}

.car-content {
    padding: 15px;
    height: 100%;
}

.content-title {
    margin-bottom: 12px;
}

.body-type.badge {
    background: #f0f0f0;
    color: #666;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
}

.car-title {
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0 0 0;
    line-height: 1.3;
}

.car-title a {
    color: #333;
    text-decoration: none;
}

.car-title a:hover {
    color: #eda83d;
}

/* Характеристики */
.all-characteristics {
    margin: 15px 0;
}

.char-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    border-bottom: 1px solid #f5f5f5;
}

.char-item i {
    color: #eda83d;
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
}

.char-value {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.char-label {
    color: #777;
    font-size: 11px;
    flex-shrink: 0;
    min-width: 60px;
}

.char-extra {
    font-size: 11px;
    color: #666;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
}

.char-extra strong {
    color: #333;
    margin-left: 5px;
}

/* Сертификаты */
.certificates {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cert-badge.mini {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 10px;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.cert-badge.mini i {
    color: #eda83d;
    font-size: 10px;
}

/* Правая колонка */
.right-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    border-left: 1px solid #eee;
}

.price-section {
    margin-bottom: 15px;
}

.price-main {
    text-align: right;
}

.sale-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    display: block;
    line-height: 1.2;
}

.price-na {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    display: block;
}

.old-price-line {
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background: #ff6b6b;
    color: white;
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

/* Информация о дилере */
.dealer-info {
    margin-bottom: 15px;
}

.dealer-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.author-content .name {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 3px 0;
    color: #333;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-star {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1px;
}

.rating-star li i {
    color: #eda83d;
    font-size: 10px;
}

.rating small {
    font-size: 11px;
    color: #666;
}

/* Кнопки действий */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.btn-view-details,
.btn-contact {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-view-details {
    background: linear-gradient(135deg, #eda83d, #d8942a);
    border: none;
    color: white;
}

.btn-view-details:hover {
    background: linear-gradient(135deg, #d8942a, #eda83d);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(237, 168, 61, 0.3);
}

.btn-contact {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
}

.btn-contact:hover {
    background: #f8f9fa;
    border-color: #eda83d;
    color: #eda83d;
}

/* Адаптивность */
@media (max-width: 767.98px) {
    .car-image {
        min-height: 180px;
    }
    
    .right-sidebar {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .price-main {
        text-align: left;
    }
    
    .action-buttons {
        flex-direction: row;
    }
    
    .btn-view-details,
    .btn-contact {
        flex: 1;
    }
    
    .char-item {
        padding: 3px 0;
    }
    
    .char-label {
        min-width: 50px;
    }
}

@media (max-width: 575.98px) {
    .col-6 {
        width: 100%;
    }
    
    .char-item {
        border-bottom: none;
        padding: 2px 0;
    }
}