.bestsellers-list .title {
    color: #444444;
    font-size: 28px;
    display: block;
}

.bestsellers-list .item-list {
    display: flex;
    flex-wrap: wrap;
    max-height: 275px; /* Three items (3x75px + 2x15px [padding] + 2x10px [row gaps])*/
    overflow: hidden;
    transition: max-height 0.3s ease;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0px;
}

    .bestsellers-list .item-list.show-all {
        max-height: none;
    }

.bestsellers-list .bestseller-list-product {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 90px auto 160px; /* picture title price */
    grid-template-areas:
        "picture title price-old"
        "picture title price-new";
    grid-row-gap: 5px;
    grid-column-gap: 20px;
    height: 75px;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    overflow: hidden;
    width: 100%;
}

    .bestsellers-list .bestseller-list-product .picture-img-wrapper {
        grid-area: picture;
        height: inherit;
        width: fit-content;
    }

        .bestsellers-list .bestseller-list-product .picture-img-wrapper > img {
            height: calc(100% - 2px);
            border-top-left-radius: 3px;
            border-bottom-left-radius: 3px;
        }

    .bestsellers-list .bestseller-list-product .product-title {
        grid-area: title;
        padding-top: 10px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        font-size: 15px;
        line-height: 18px; /* normal (1,2 * font-size) */
        height: 54px; /* 3 lines */
        box-sizing: content-box;
        font-weight: normal;
    }

    .bestsellers-list .bestseller-list-product .old-price {
        grid-area: price-old;
        align-self: center;
        font-size: 14px;
        color: #999;
        text-decoration: line-through;
        padding-top: 10px;
    }

    .bestsellers-list .bestseller-list-product .actual-price {
        grid-area: price-new;
        align-self: center;
        font-size: 16px;
        color: #444444;
        font-weight: bold;
        padding-bottom: 10px;
    }

.bestsellers-list .expand-collapse {
    text-align: center;
    margin-bottom: 20px;
}

    .bestsellers-list .expand-collapse > span {
        cursor: pointer;
        font-size: 15px;
        font-weight: bold;
    }

        .bestsellers-list .expand-collapse > span:hover {
            color: #97c300;
        }


    .bestsellers-list .expand-collapse .collapse {
        display: none;
    }

@media(max-width: 767px) {
    .bestsellers-list .bestseller-list-product {
        grid-template-columns: 90px auto fit-content(150px);
    }

        .bestsellers-list .bestseller-list-product .old-price,
        .bestsellers-list .bestseller-list-product .actual-price {
            padding-right: 16px;
            padding-left: 16px;
        }
}
