/* Vehicle Carousel Widget Styles */

.vcw-swiper {
    width: 100%;
    position: relative;
    padding-bottom: 30px; /* Space for arrows if needed */
}

.vcw-vehicle-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.vcw-vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vcw-img-wrapper {
    margin-bottom: 10px;
    overflow: hidden;
    text-align: center;
}

.vcw-vehicle-img {
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.vcw-img-wrapper:hover .vcw-vehicle-img {
    transform: scale(1.05);
}

.vcw-vehicle-title {
    margin: 0 0 10px;
    line-height: 1.3;
}

.vcw-vehicle-title a {
    text-decoration: none;
    font-weight: 600;
}

.vcw-price {
    font-size: 1.1em;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 8px;
}

.vcw-meta {
    font-size: 0.9em;
    color: #777;
    border-top: 1px solid #f1f1f1;
    padding-top: 8px;
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vcw-meta-item:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: #ddd;
}
