.product-list .card {
    border: none;
    background-color: transparent;
    border-radius: 16px;
}

.product-list .card .cover {
    mix-blend-mode: multiply;
    width: auto;
}

.product-spray { height: 330px; }
.product-list .card .cover.product-bottle-75 { height: 520px; }
.product-list .card .cover.product-bottle-50 { height: 470px;}
.product-list .card .cover.product-bottle-25 { height: 400px; }
.product-list .card .cover.product-bag { height: 370px; }
.product-list .card .cover.product-latta-100 { height: 220px; }
.product-list .card .cover.product-latta-250 { height: 320px; }
.product-list .card .cover.product-latta-500 { height: 380px; }
.product-list .card .cover.product-orcio-100  { height: 230px; }
.product-list .card .cover.product-orcio-250  { height: 340px; }
.product-list .card .cover.product-orcio-1lt { height: 350px; }
.product-list .card .cover.product-bottiglia-ceramica-500 { height: 380px; }
.product-list .card .cover.product-astuccio { height: 500px; }
.product-list .card .cover.product-confezioni { height: 400px; }
.product-list .card .cover.product-cofanetto { height: 400px; }
.product-list .card .cover.product-cassettina { height: 350px; }
.product-list .card .cover.product-vasetto { height: 300px; }
.product-list .card .cover.product-tipici { height: 370px; }

.product-list .card .card-caption {
    background-color: var(--color-ligh-gray);
    width: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    margin-top: 24px;
}   

.product-list .card .card-caption h1 {
    font-size: 30px !important;
    line-height: 120% !important;
    letter-spacing: -1.5px !important;
    font-weight: 300 !important;
}

.product-list h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 0;
}

.product-list .card .card-body {
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
}
.product-list .card .card-footer {
    background-color: transparent;
    margin-top: 8px;
    border: none;
    box-shadow: none;
    padding: 0;
}

.product-thumb-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    margin: 16px 0px 0 0;
    gap: 8px;
    flex-wrap: nowrap;
    width: 200px;
}

.product-thumb {
    height: 60px;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: 1px solid #eaeaea !important;
}

.product-thumb:hover {
    filter: grayscale(100%);
}

.premi-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0 40px 0;
}

.request-info {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #FFF;
}

.premio {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 70px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    padding: 0;
    margin: 0;
    border: 1px solid #DDD;
}

.product-filters-sticky {
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.product-filters-sticky.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.product-filters,
.product-filters-sticky,
.product-filters-sticky.is-fixed
{
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: safe center;
    align-items: center;
    padding: 8px 16px;
    scrollbar-width: none;
}

.product-filters::-webkit-scrollbar {
    display: none;
}

.product-filters .btn {
    white-space: nowrap;
}

.title-separator {
    text-align: center;
    font-weight: 300;
    display: inline;
    position: relative;
    font-size: 38px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.title-separator::after {
    content: "";
    display: block;
    height: 1px;
    background-color: var(--color-light-ciano);
    margin: 16px 0;
    top: 50%;
    right: 24px;
    z-index: -1;
    flex: 1
}

@media(max-width: 500) {
    .product-filters,
    .product-filters-sticky,
    .product-filters-sticky.is-fixed
    {
        justify-content: start;
        padding: 8px;
    }
}

.product-list-wrapper {
    position: relative;
}

.product-list-arrow {
    display: none;
}

@media (max-width: 991.98px) {
    .product-list .card .card-caption {
        padding: 16px;
    }

    .product-list > .col.animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .product-list {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        scrollbar-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: calc((100% - 80vw) / 2);
        padding-right: calc((100% - 80vw) / 2);
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
    }
    .product-list::-webkit-scrollbar {
        display: none;
    }

    .product-list-track {
        height: 1.9px;
        background: #e0e0e070;
        border-radius: 2px;
        margin: 0 0 8px 0;
        position: relative;
    }
    .product-list-thumb {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: var(--color-deep-green);
        border-radius: 2px;
        transition: left 0.1s linear;
    }
    .product-list > .col {
        flex: 0 0 80vw !important;
        width: 80vw !important;
        max-width: none !important;
        scroll-snap-align: center;
    }

    .product-list-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        z-index: 10;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        background-color: #CCCCCC40;
        border: none;
        cursor: pointer;
        padding: 12px;
    }
    .product-list-arrow .carousel-control-prev-icon,
    .product-list-arrow .carousel-control-next-icon {
        filter: invert(1);
    }
    .product-list-arrow-prev { left: 4px; }
    .product-list-arrow-next { right: 4px; }

    .title-separator {
        font-size: 32px !important;
        font-weight: 300  !important;
        justify-content: center !important;
        margin-bottom: 0 !important;
    }
    
    .title-separator::after {
        content: '';
        background-color: transparent;
        flex: none;
    }

    .product-list .card .card-body {
        padding: 0;
        justify-content: center !important;
    }

    .product-spray { height: 277px; }
    .product-list .card .cover.product-bottle-75 { height: 437px; }
    .product-list .card .cover.product-bottle-50 { height: 395px; }
    .product-list .card .cover.product-bottle-25 { height: 336px; }
    .product-list .card .cover.product-bag { height: 311px; }
    .product-list .card .cover.product-latta-100 { height: 185px; }
    .product-list .card .cover.product-latta-250 { height: 269px; }
    .product-list .card .cover.product-latta-500 { height: 319px; }
    .product-list .card .cover.product-orcio-100  { height: 193px; }
    .product-list .card .cover.product-orcio-250  { height: 286px; }
    .product-list .card .cover.product-orcio-1lt { height: 294px; }
    .product-list .card .cover.product-bottiglia-ceramica-500 { height: 319px; }
    .product-list .card .cover.product-astuccio { height: 420px; }
    .product-list .card .cover.product-confezioni { height: 336px; }
    .product-list .card .cover.product-cofanetto { height: 336px; }
    .product-list .card .cover.product-cassettina { height: auto; width: 100%; }
    .product-list .card .cover.product-vasetto { height: 252px; }
    .product-list .card .cover.product-tipici { height: 280px; }
}