@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');
*
{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    
}


.product-card {
    width: 100%;
    position: relative;
    box-shadow: 0 2px 7px #dfdfdf;
    margin: 15px auto;
    background: #fafafa;
}

.badge {
    position: absolute;
    left: 0;
    top: 20px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    background: red;
    color: #fff;
    padding: 3px 10px;
}

.product-tumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    padding: 0px;
    background: #f0f0f0;
    
}

.product-tumb img {
    max-width: 100%;
    max-height: 100%;
}

.product-details {
    padding: 10px;
}

.product-catagory {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 18px;
}

.product-details h4 a {
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #363636;
    text-decoration: none;
    transition: 0.3s;
    text-align:center;
    font-size:13px;
}

.product-details h4 a:hover {
    color: #fbb72c;
}

.product-details p {
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 3px;
    color: #999;
    text-align:center;
}

.product-bottom-details {
    overflow: hidden;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.product-bottom-details div {
    text-align:center;
    width: 100%;

}

.product-price {
    font-size: 17px;
    color: #e0a01d;
    font-weight: 600;
}

.product-price small {
    font-size: 100%;
    font-weight: 200;
    text-decoration: line-through;
    display: inline-block;
    margin-right: 5px;
}

.product-links {
    text-align: right;
}

.product-links a {
    display: inline-block;
    margin-left: 5px;
    color: #e1e1e1;
    transition: 0.3s;
    font-size: 17px;
}

.product-links a:hover {
    color: #fbb72c;
}




.product-price-menor {
    font-size: 15px;
    color: #e0a01d;
    font-weight: 600;
}

.product-price-menor small {
    font-size: 100%;
    font-weight: 200;
    text-decoration: line-through;
    display: inline-block;
    margin-right: 5px;
}



.product-price-menor2 {
    font-size: 13px;
    color: #e0a01d;
    font-weight: 600;
}

.product-price-menor2 small {
    font-size: 100%;
    font-weight: 200;
    text-decoration: line-through;
    display: inline-block;
    margin-right: 5px;
}


@media only screen and (max-width: 700px) {

    .product-price-menor {
    font-size: 13px;
    color: #e0a01d;
    font-weight: 600;
}

   .product-price-menor2 {
    font-size: 12px;
    color: #e0a01d;
    font-weight: 600;
}

    }