.acc-car-12613-wrapper {
    position: relative;
    width: 100%;
}

.swiper-12613 {
    width: 100%;
    height: 100%;
    padding-bottom: 40px; /* space for dots */
    padding-left: 20px;
    padding-right: 20px;
}

.swiper-slide-inner-12613 {
    height: 450px;
    display: flex;
    width: 100%;
}

.acc-car-12613-card {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    padding: 30px 20px;
    transition: all 0.4s ease-in-out;
}

.acc-car-12613-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    transition: opacity 0.4s ease;
    opacity: 0.3;
    z-index: 1;
}

.acc-car-12613-card.active {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

.acc-car-12613-card.active::before {
    opacity: 1;
}

.acc-car-12613-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

.acc-car-12613-title {
    margin: 0;
    transition: transform 0.4s ease, margin 0.4s ease;
    transform: translateY(0);
}

.acc-car-12613-inner-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.acc-car-12613-card.active .acc-car-12613-inner-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
}

.acc-car-12613-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

/* Swiper Controls overrides */
.acc-car-12613-wrapper .swiper-button-next, 
.acc-car-12613-wrapper .swiper-button-prev {
    top: 45%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.acc-car-12613-wrapper .swiper-button-prev {
    left: -20px;
}

.acc-car-12613-wrapper .swiper-button-next {
    right: -20px;
}

.acc-car-12613-wrapper .swiper-button-next:after, 
.acc-car-12613-wrapper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.acc-car-12613-wrapper .swiper-pagination {
    bottom: 0;
}