.pure-slider {
    position: relative;
    overflow: hidden;
}
.pure-slider__track {
    display: flex;
}
.pure-slider__slide {
    flex-shrink: 0;
    width: calc(100% / var(--pure-slider-count, 1));
    box-sizing: border-box;
}

/* ─── Dots ─── */
.pure-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}
.pure-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.pure-slider__dot--active {
    background: #333;
    transform: scale(1.3);
}

/* ─── Demo opmaak ─── */

.slide-inner {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 12px;
    color: #fff;
}
.slide-inner .item {
    margin: 0 12px;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.controls button {
    padding: 8px 20px;
    font-size: 1.1rem;
    border: 2px solid #333;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
}