.cps-slider-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.cps-slider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px black;
}

.cps-slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.cps-slide {
    min-width: 100%;
    position: relative;
}

.cps-slide img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.cps-slider-controls button {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cps-slider-controls button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.cps-pagination {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.cps-pagination span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cps-pagination span.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}