/* Product overview */
li.product .button {
    display: block;
    margin: 5px;
    text-align: center;
}

li.product a:first-child {
    display: flex;
    flex-direction: column;
    flex-grow: 2;
}

li.product a:first-child:after {
    content: '';
    display: block;
    clear: both;
}

#mainContainer li.product {
    box-shadow: none;
    border: solid 1px #c7c7c7;
    margin: 0 15px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    width: calc((100% / 4) - 30px);
}

#mainContainer li.product h2 {
    padding: 5px 10px;
}

#mainContainer li.product>a img {
    width: 100%;
    object-fit: cover;
}

.woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
}

#mainContainer li.product .price {
    padding: 0 10px;
    margin: auto 0 0;
}


.dimensions {
    padding: 0;
    line-height: normal;
    margin: 5px 10px;
}

@media (max-width: 767px) {
    #mainContainer li.product {
        width: calc(100% - 30px);
    }
}
/* END Product overview */

/* Misc */
img {
    width: auto;
    height: auto;
}

.woocommerce .entry-content {
    display: flex;
    flex-direction: column-reverse;
}
/* END Misc */