.product-list-section{
    background-color: rgba(var(--color-background));
}
product-list{
    --button-size:55px;
    --swiper-navigation-top-offset:calc(50% - 60px);
    width:100%;
}
product-list .swiper-button{
    width:var(--button-size);
    height:var(--button-size);
    background-color: #fff;
    border-radius:5px;
    --svg-color:#000;
}
product-list .swiper-button svg path{
    stroke:var(--svg-color);
}

product-list .swiper-button:hover{
    background-color: #000;
    --svg-color:#fff;
}
product-list .swiper-button.swiper-button-disabled{
    background-color: #fff !important;
    --svg-color:#000 !important;
    pointer-events: auto;
    cursor: no-drop;
    opacity: .5;
}
product-list .swiper-button::after{
    display: none;
}

product-list .product-list-header{
    display: flex;
    justify-content: center;
    margin-bottom:50px;
}
product-list .product-list-title{
    width:100%;
}
product-list .swiper-pagination{
    position: relative;
    --swiper-theme-color:#333333;
    --swiper-pagination-progressbar-size:1px;
    margin-top:60px;
    margin-bottom:60px;
    max-width:180px;
}

product-list .product-list-swiper{
    display: flex;
    flex-direction: column;
    align-items: center;
}