/* CSS Document */

ul.products {
    display: flex;
    flex-wrap: wrap;
    list-style: none; margin: 0; padding: 0;
}
ul.products li.product {
    width: 100%; max-width: 230px;
    margin: 20px 7px;
    text-align: center;
}
ul.products li.product a {
    display: block;
    color: rgba(0,21,49,1.00);
    transition: all 200ms linear;
}
ul.products li.product a:hover {
    color: rgba(255,0,4,1.00);
}
ul.products li.product .woocommerce-loop-product__title {
    margin: 15px 0 5px;
    font-size: 16px;
    font-weight: 700;
}
ul.products li.product .price {
    font-size: 16px;
    font-weight: 700;
}