
/* Carousel Fixes */
.sppb-carousel-extended-outer-stage {
    overflow: hidden !important;
}

.sppb-carousel-extended-item {
    float: left;
}

.sppb-carousel-extended-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.sppb-carousel-extended-dots ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sppb-carousel-extended-dots li {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.sppb-carousel-extended-dots li.active {
    background: #fff;
    width: 14px;
    height: 14px;
}

/* Ensure no scrollbar during drag */
.sppb-carousel-extended {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-drag: none;
}

.sppb-carousel-extended img {
    pointer-events: none; /* Prevent image dragging interfering with carousel drag */
}
