.product-img {
    height: 190px;
    min-height: 190px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .75rem;
}

.product-img-empty {
    width: 100%;
    height: 190px;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    background: #f7f7f7;
}

@media (max-width: 575px) {
    .product-img,
    .product-img-empty {
        height: 170px;
        min-height: 170px;
    }
}

.product-name {
    min-height: 2.6em;
}

