.ev-carousel-wrapper {
    background-color: #0f172a;
    width: 100%;
    overflow: hidden;
}

.ev-swiper-container {
    width: 100%;
    padding-bottom: 20px;
    overflow: visible !important; /* Allow slides to peek out */
}

.ev-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.ev-card:hover {
    transform: translateY(-5px);
}

.ev-card-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/3;
}

.ev-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ev-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ev-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    font-family: sans-serif;
}

.ev-card-price {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 24px 0;
    font-family: sans-serif;
}

.ev-card-btn {
    margin-top: auto;
    background: #0f172a;
    color: #ffffff;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
    display: inline-block;
    font-family: sans-serif;
}

.ev-card-btn:hover {
    background: #1e293b;
    color: #ffffff;
}

/* Custom Navigation */
.ev-nav-next, .ev-nav-prev {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ev-nav-next:after, .ev-nav-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.ev-nav-prev {
    left: 20px;
}
.ev-nav-next {
    right: 20px;
}

@media (max-width: 1024px) {
    .ev-nav-next, .ev-nav-prev {
        display: none; /* Hide arrows on touch devices */
    }
}

/* Mobile Adjustments */
@media (max-width: 640px) {
    .ev-card {
        padding: 16px; /* Reduced padding for smaller screens */
    }
    .ev-card-title {
        font-size: 20px; /* Adjusted font size */
    }
    .ev-card-price {
        font-size: 14px; /* Adjusted font size */
    }
    .ev-card-btn {
        padding: 10px 16px; /* Adjusted button padding */
    }
}