.products{
    
}
.product_card{
    width: calc((100% - 4px) / 3);
    float: left;
    background: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 50px;
    transition: all ease-in-out 0.2s;
}
.product_card:hover{
    box-shadow: 0px 5px 10px rgba(126,46,46,0.4);
    transition: all ease-in-out 0.2s;
}
.product_card:hover .product_card__name{
    color: #7e2e2e;
    transition: all ease-in-out 0.2s;
}
.product_card:hover .product_card__btn{
    background: #7e2e2e;
    color: #fff;
    transition: all ease-in-out 0.2s;
}
.product_card + .product_card{
    margin-left: 2px;
}
.product_card:nth-child(3n){
    clear: right;
}
.product_card:nth-child(3n+1){
    margin-left: 0;
    clear: left
}

@media (max-width: 992px){
    .product_card{
        width: calc((100% - 4px) / 2);
        float: left;
        background: #fff;
        margin-bottom: 18px;
        position: relative;
        padding-bottom: 50px;
        transition: all ease-in-out 0.2s;
    }
    .product_card:hover{
        box-shadow: 0px 5px 10px rgba(126,46,46,0.4);
        transition: all ease-in-out 0.2s;
    }
    .product_card:hover .product_card__name{
        color: #7e2e2e;
        transition: all ease-in-out 0.2s;
    }
    .product_card:hover .product_card__btn{
        background: #7e2e2e;
        color: #fff;
        transition: all ease-in-out 0.2s;
    }
    .product_card + .product_card{
        margin-left: 2px;
    }
    .product_card:nth-child(2n){
        clear: right;
    }
    .product_card:nth-child(2n+1){
        margin-left: 0;
        clear: left
    }
}

.product_card_img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 180px
}
.product_card_body{
    padding: 21px 25px 20px;
    text-align: center;
}
.product_card__link{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.product_card__name{
    font-size: 16px;
    color: initial;
    font-weight: 300;
    text-decoration:none;
}

.product_card__btn{
    width: 100%;
    height: 100%;
    color: #7e2e2e;
    background: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
        border: none;
}

.product_card__form{
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
        border-top: 1px solid #f2eaea;
}

.product_card__colors{
    margin: 7px 0 0  
}

.product_card__colors > div{
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 100%;
}
.product_card__colors > div + div{
    margin-left: 7px;
}
.product_card_newbadge{
    position: absolute;
    right: 5px;
    top: -2px;
        margin-top: 0!important;
}
.fotorama__img {
    margin-top: 0!important;
    margin-bottom: 0!important;
}
.fotorama__wrap-link{
    width: 100%;
    height: 100%;
}
.fotorama__wrap-link > a{
    width: 100%;
    height: 100%;
    display: block;
}