/* Controls Wrapper */
.swiper-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 40px; /* Space between buttons and pagination */
}

/* Custom Buttons */

/* Remove default positioning of Swiper buttons */
.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    margin: 0;
}

/* Pagination Customization */
.swiper-pagination {
    position: static !important;
    display: flex;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 40px;
    height: 7px;
    border-radius: 4px;
    background: #d3d3d3;
    opacity: 1;
    margin: 0 5px;
    transition: background 0.3s;
}

@media (max-width: 600px) {
    .default-swiper-pagination .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
    }
    .swiper-pagination-bullet {
        width: 27px;
        height: 6px;
    }
}

.swiper-pagination-bullet-active {
    background: #32CD32;
}

/*remove flex by custom */
.pagination-bar-center01 {
    display: inline-block;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 30px;
}

.no-bg {
    background-color: #FAFAFA !important;
    padding: 8px !important; /* Remove extra padding when no image */
    color: #000000 !important;
    pointer-events: none;
    font-weight: 700; 
    cursor: not-allowed;  
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;                     /* Hide default swiper-icons arrow */
}
