.model-carousel-wrapper-d8ac60b9 {
    position: relative;
    width: 100%;
}
.swiper-container-d8ac60b9 {
    width: 100%;
    overflow: hidden;
}
.mc-d8ac60b9-slide-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Custom Pagination Progress Bar */
.mc-d8ac60b9-pagination.custom-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    align-items: center;
}
.custom-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--inactive-color, #e0e0e0);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-bullet.active {
    width: 40px;
    border-radius: 5px;
    background-color: transparent; /* background covered by ::after */
}

.custom-bullet::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--active-color, #000000);
}

.custom-bullet.active::after {
    animation: fillProgress var(--current-duration, 5000ms) linear forwards;
}

@keyframes fillProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Navigation Arrows */
.mc-d8ac60b9-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.mc-d8ac60b9-arrow:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.mc-d8ac60b9-arrow-prev {
    left: 10px;
}

.mc-d8ac60b9-arrow-next {
    right: 10px;
}

.mc-d8ac60b9-arrow.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Hide arrows on mobile */
@media (max-width: 767px) {
    .mc-d8ac60b9-arrow {
        display: none !important;
    }
}