/* Fix for swiper navigation buttons - ensure they stay fixed on edges */

/* Ensure proper positioning hierarchy */
.site-filters {
    position: relative !important;
}

.pro-filtr-cate-bx {
    position: relative !important;
}

/* Force buttons to stay fixed - matching src folder */
.pro-filtr-cate-bx .swiper-button-next,
.pro-filtr-cate-bx .swiper-button-prev {
    position: absolute !important;
    top: 50% !important;
    z-index: 999 !important;
    margin-top: 0 !important;
    transform: translateY(-50%) !important;
}

.pro-filtr-cate-bx .swiper-button-next {
    right: 0 !important;
    left: auto !important;
}

.pro-filtr-cate-bx .swiper-button-prev {
    left: 0 !important;
    right: auto !important;
}

/* Prevent any parent transforms from affecting buttons */
.pro-filtr-cate-bx .swiper-button-next,
.pro-filtr-cate-bx .swiper-button-prev {
    will-change: auto !important;
}

/* Ensure swiper-wrapper doesn't affect button positioning */
.pro-filtr-cate-bx .swiper-wrapper {
    position: relative;
}

