.slider-navigation {
    display: flex;
    justify-content: space-between;
    top: 0;
    margin-top: 15%;
    position: absolute;
    width: 100%;
    z-index: 2;
}
button.slider-button-next, button.slider-button-prev {
    border-color: #ffffffAA;
    padding: 10px 18px;
    cursor: pointer;
    color: #ffffffAA;
    background: transparent;
    transition: all 0.2s ease;
}
button.slider-button-next:hover, button.slider-button-prev:hover {
    border-color: #fff;
    color: #fff;
    background: transparent;
}
button.slider-button-next {
    right: 0;
}
button.slider-button-prev {
    left: 0;
}
.slider-pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}
.slider-pagination-dot {
    width: 10px;
    height: 10px;
    background-color: #ffffff99;
    border-radius: 30%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.slider-pagination-dot:hover,
.slider-pagination-dot.active {
    background-color: #fff;
    transform: scale(1.1);
}
.woocommerce div.product{
    width: 80%;
    margin: 0 auto;
}

@media screen and (max-width: 767px){
    .woocommerce div.product {
        width: 60%;
    }
    
    .slider-navigation {
        margin-top: 90%;
    }
}