.mySwiperproductlist {
    position: relative;
    padding: 0 40px;  /* Add padding to make room for the arrows */
}

/* Position the navigation arrows outside */
.mySwiperproductlist .swiper-button-next,
.mySwiperproductlist .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mySwiperproductlist .swiper-button-next {
    right: 0;
}

.mySwiperproductlist .swiper-button-prev {
    left: 0;
}

/* Show navigation arrows on hover */
.mySwiperproductlist:hover .swiper-button-next,
.mySwiperproductlist:hover .swiper-button-prev {
    opacity: 1;
}

/* Style the navigation arrow colors */
.mySwiperproductlist .swiper-button-next::after,
.mySwiperproductlist .swiper-button-prev::after {
    font-size: 18px;
    color: #067f4f;
}

/* Hover effect on navigation arrows */
.mySwiperproductlist .swiper-button-next:hover,
.mySwiperproductlist .swiper-button-prev:hover {
    background-color: #067f4f;
}

.mySwiperproductlist .swiper-button-next:hover::after,
.mySwiperproductlist .swiper-button-prev:hover::after {
    color: #ffffff;
}
