.api-empty,
.api-error,
.api-loader {
    width: 100%;
    padding: 30px 0;
    font-size: 16px;
    color: #111;
}

.api-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vehicle-card {
    border: 1px solid #eee;
    border-radius: 28px;
    padding: 28px;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.vehicle-card-image,
.vehicle-card-image-placeholder {
    width: 100%;
    height: 260px;
    border-radius: 28px;
    display: block;
}

.vehicle-card-image {
    object-fit: cover;
    background: #eef0f2;
}

.vehicle-card-image-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;
}

.vehicle-card-title {
    font-size: 28px;
    font-weight: 400;
    margin: 20px 0 18px;
    color: #111;
}

.vehicle-card-meta {
    display: flex;
    gap: 14px;
    color: #555;
    font-size: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.vehicle-card-meta span:not(:last-child) {
    border-right: 1px solid #e5e5e5;
    padding-right: 14px;
}

.vehicle-card-price {
    font-size: 34px;
    color: #444;
}

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

.old-price {
    font-size: 18px;
    color: #444;
    text-decoration: line-through;
    margin-left: 18px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .api-vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .api-vehicles-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-card {
        padding: 18px;
        border-radius: 22px;
    }

    .vehicle-card-title {
        font-size: 24px;
    }

    .vehicle-card-meta {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .vehicle-card-price {
        font-size: 28px;
    }
}
