.v0-products {
    flex-wrap: wrap;
}

.v0-product-card {
    padding: 2%;
    flex-grow: 1;
    flex-basis: 25%;
    color: #0a0a0a;

    display: flex;
    /* so child elements can use flexbox stuff too! */
    align-items: center;
}

.v0-product-image img {
    max-width: 100%;
    margin-bottom: 20px;
}

.v0-product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.v0-product-info p {
    padding-bottom: 10px;
}

.v0-card-product-brand-name {
    color: #c42126;
    font-weight: 900;
}

.v0-card-product-name {
    color: #212121;
    font-weight: 900;
    font-family: Helvetica, Arial, Lucida, sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
}

.v0-card-product-price {
    font-size: 18px;
    color: #0a0a0a;
}

.v0-card-product-desc {
    text-align: center;
}

.v0-pagination a {
    color: black;
}

.v0-tudor-grid .v0-product-image img {
    min-height: 350px;
    object-fit: cover;
}

@media only screen and (max-width: 720px) {
    .v0-product-card {
        flex-grow: 1;
        flex-basis: 100%;
    }
}