.category-slider-wrapper {
display: flex;
align-items: center;
justify-content: center;
width: 95%;
max-width: 1200px;
margin: 0 auto;
background: #fff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
overflow: hidden;
position: relative;
}
.category-slider {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-behavior: smooth;
flex: 1;
align-items: center;
scrollbar-width: none;
-ms-overflow-style: none;
touch-action: pan-x pinch-zoom;
}
.category-slider::-webkit-scrollbar { display: none; }
.category-item {
flex: 0 0 auto;
width: 140px;
text-align: center;
cursor: grab;
user-select: none;
transition: transform .2s;
}
.category-item:active { cursor: grabbing; }
.category-item a { display: block; text-decoration: none; }
.category-item img {
width: 100px;
height: auto;
object-fit: contain;
pointer-events: none;
}
.category-item:hover { transform: scale(1.05); }
.slider-btn {
border: none !important;
background: #fff !important;
cursor: pointer;
font-size: 20px;
padding: 10px;
border-radius: 50%;
transition: background .2s, transform .2s;
z-index: 2;
color: #ccc !important;
}
.slider-btn:hover { background: #eee !important; transform: scale(1.05); }
@media (max-width: 768px) {
.slider-btn { display: none; }
.category-item { width: 120px; }
.category-item img { width: 90px; }
}
.belivo-slider--dragging {
cursor: grabbing !important;
user-select: none !important;
} .belivo-hidden {
display: none !important;
}