.super-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
}

.super-slider {
    visibility: hidden;
}

.super-slider.ready {
    visibility: visible;
}

.super-slider-wrapper {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.super-slide {
    flex-shrink: 0;
    box-sizing: border-box;
}

.super-slider-pagination {
    margin-top: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.super-slider-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    padding: 0;
}

.super-slider-dot.active {
    background: #333;
}

.super-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    display: none;
}

.super-slider-arrow {
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.super-slider-arrow:hover {
    background: rgba(0,0,0,0.6);
}

.super-slider-dragging .super-slider-wrapper {
    transition: none;
    cursor: grabbing;
}
