.simple-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.simple-slider-slide {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.simple-slider-dots {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 8px;
    z-index: 10;
}

.simple-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Strzałki nawigacyjne */
.simple-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.simple-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.simple-slider-arrow.prev {
    left: 16px;
}

.simple-slider-arrow.next {
    right: 16px;
}

@media (max-width: 768px) {
    .simple-slider-arrow {
        display: none;
    }
} 