.custom-woo-categories-slider {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.custom-woo-categories-slider .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.custom-woo-categories-slider .custom-woo-category-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.custom-woo-categories-slider .custom-woo-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 2-row grid configuration for Swiper */
.custom-woo-categories-slider .swiper-wrapper {
    flex-wrap: wrap;
    /* Only for older swiper versions or fallback, grid handles this now */
}

/* Nav buttons style - similar to hot sale */
.custom-woo-categories-slider .swiper-button-next,
.custom-woo-categories-slider .swiper-button-prev {
    color: #fbb042;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-woo-categories-slider .swiper-button-next:after,
.custom-woo-categories-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 767px) {

    /* .custom-woo-categories-slider .swiper-button-next,
    .custom-woo-categories-slider .swiper-button-prev {
        display: none;
    } */
}