.products-ul {
    list-style: none;
}

.products-li {
    border: 1px solid rgba(0,0,0,.1);
    margin-top: 1.5em;
    padding: 1em;
    height: 21em;
}

.product-image {
    height: 10em;
    width: 100%;
    position: relative;
}

.product-image img {
    object-fit: contain;
    object-position: 50% 50%;
    -o-object-fit: contain;
    -o-object-position: 50% 50%;
    width: 100%;
    height: 100%;
}

.product-image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
    padding-top: 4em;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.products-li:hover .product-image-overlay {
    opacity: 1;
    visibility: visible;
}

.product-name {
    margin-top: 1em;
}

.products-bottom-section {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.2);
    margin-top: 1em;
    padding-top: 1em;
}

.product-detail {
    float: right;
}