.home-vehicles-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.home-vehicles-slider-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.home-vehicles-slider {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0 70px 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.home-vehicles-slider::-webkit-scrollbar {
    display: none;
}

.home-vehicle-card {
    flex: 0 0 360px;
    width: 360px;
    height: 420px;
    scroll-snap-align: start;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    padding: 10px;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.home-vehicle-card:hover {
    text-decoration: none;
    color: inherit;
}

.home-vehicle-image,
.home-vehicle-placeholder {
    width: 100% !important;
    height: 165px !important;
    min-height: 165px;
    max-height: 165px;
    border-radius: 12px !important;
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.home-vehicle-image {
    object-fit: cover !important;
    object-position: center !important;
    background: #f3f3f3;
}

.home-vehicle-placeholder {
    background-color: #eef0f2;
    background-image: url("data:image/svg+xml,%3Csvg width='600' height='400' viewBox='0 0 600 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='600' height='400' rx='24' fill='%23C7D0D7'/%3E%3Ccircle cx='125' cy='125' r='35' fill='%23F4F5F6'/%3E%3Cpath d='M0 292C55 265 94 321 139 356C180 388 218 333 260 263C310 179 356 127 425 136C493 145 553 209 600 234V400H0V292Z' fill='%23F4F5F6'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-vehicle-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #111111;
    margin: 18px 8px 14px;
    height: 62px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-vehicle-meta {
    display: flex;
    align-items: center;
    color: #666666;
    font-size: 15px;
    margin: 0 8px;
    min-height: 20px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.home-vehicle-meta span {
    padding: 0 14px;
    border-right: 1px solid #e5e5e5;
    line-height: 1;
    white-space: nowrap;
}

.home-vehicle-meta span:first-child {
    padding-left: 0;
}

.home-vehicle-meta span:last-child {
    border-right: none;
}

.home-vehicle-price {
    margin: auto 8px 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #444444;
    font-size: 22px;
    font-weight: 400;
}

.home-vehicle-price .price {
    color: #00539b;
    font-weight: 700;
}

.home-vehicle-price .old-price {
    font-size: 12px;
    color: #555555;
    text-decoration: line-through;
    margin-left: 4px;
}

.home-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.home-slider-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    padding: 0;
}

.home-slider-prev,
.home-slider-next {
    background: #00539b;
    color: #ffffff;
}

/* Tablet */
@media (max-width: 1024px) {
    .home-vehicles-slider {
        padding: 0 30px 12px;
        gap: 22px;
    }

    .home-vehicle-card {
        flex: 0 0 330px;
        width: 330px;
        height: 400px;
    }

    .home-vehicle-image,
    .home-vehicle-placeholder {
        height: 150px !important;
        min-height: 150px;
        max-height: 150px;
    }

    .home-vehicle-title {
        font-size: 22px;
        height: 58px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .home-vehicles-slider {
        padding: 0 18px 12px;
        gap: 16px;
    }

    .home-vehicle-card {
        flex: 0 0 82%;
        width: 82%;
        height: 380px;
        padding: 10px;
        border-radius: 16px;
    }

    .home-vehicle-image,
    .home-vehicle-placeholder {
        height: 140px !important;
        min-height: 140px;
        max-height: 140px;
        border-radius: 10px !important;
    }

    .home-vehicle-title {
        font-size: 20px;
        height: 52px;
        margin: 16px 6px 12px;
    }

    .home-vehicle-meta {
        font-size: 14px;
        margin: 0 6px;
    }

    .home-vehicle-meta span {
        padding: 0 10px;
    }

    .home-vehicle-price {
        font-size: 20px;
        margin: auto 6px 4px;
    }
}