.sbs-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* الحاوية الداخلية */
.sbs-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

/* كل سلايد */
.sbs-slide {
    min-width: 100%;
    height: 100%;
}

.sbs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* النقاط */
.sbs-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.sbs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.sbs-dot.active {
    background: white;
}
