.product-card {
    border: 0;
}

.product-card:hover {
    box-shadow: 0px 3px 20px rgba(114, 114, 114, 0.25);
}

.product-card img {
    width: 100%;
    max-height: 209px;
    object-fit: contain;
}

.card-text {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
    text-align: justify;
    color: #373737;
}

.product-price {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    text-align: justify;
    color: #8DB005;
}

.results-filter {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #373737;
}

.btn-buy-product {
    padding: 8px 17px;
    background: #0196FD;
    border-radius: 5px;

    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 11px;
    line-height: 13px;
    text-align: justify;
    color: #FFFFFF;
    text-transform: uppercase;
}

.btn-buy-product:hover {
    text-decoration: none !important;
    color: #FFFFFF;
    box-shadow: 3px 3px 10px #9EC3E6;
}

@media (max-width: 576px) {
    .product-card {
        background: #FFFFFF;
        border: 1px solid #DDDDDD;
        box-sizing: border-box;
    }

    /* .product-card .card-text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    } */

    .product-card img {
        padding: 10px;
    }
}