.slider-container {
    position: relative;
    overflow: hidden;
}

.simple-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.simple-slider::-webkit-scrollbar {
    display: none;
}

.slider-arrow {
	display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px!important;
    height: 40px!important;
    background: transparent;
    color: var(--text-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
	line-height: 30px;
    z-index: 10;
    transition: opacity 0.3s;
}

.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

.slider-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: #333;
}