.page-template-page-products{}
.page-template-page-products .product_list{}
.page-template-page-products .product_list .product_item{
    border-radius:10px;
    box-shadow:0 0 0 1px #dadada;
    position: relative;
    background-color:#fff;
    padding:43px 0px 74px 20px;
    display: flex;
    font-family: "Assistant Regular", sans-serif;
    margin-bottom: 73px;
}
.page-template-page-products .product_list .product_item:last-child{
    margin-bottom:0;
}
.page-template-page-products .product_list .product_item .product_image{
    position: relative;
    margin-top:-14px;
    width:auto;
    height: 100%;
    max-width:360px;
    max-height:420px;
}
.page-template-page-products .product_list .product_item .product_info{
    font-family: inherit;
    font-size: 25px;
    line-height: 1.2em;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}
.page-template-page-products .product_list .product_item .product_info h2{
    color: #2b486c;
    font-size: 33px;
    font-family: inherit;
    font-weight: bold;
    margin-bottom: 19px;
}
.page-template-page-products .product_list .product_item .product_info .product_description{
    font-family: inherit;
    margin-bottom: 34px;
    color: #303331;
}
.page-template-page-products .product_list .product_item .product_info .product_price{
    color:#2b486c;
    font-size: 60px;
    font-family: inherit;
    font-weight: bold;
}
.page-template-page-products .product_list .product_item .product_info .product_link{
    text-align: center;
    border-radius: 50px;
    background-color: #dd684a;
    border: 2px solid #e98f78;
    font-size: 17px;/*21px*/
    line-height: 1.2em;/*25px*/
    font-family: inherit;
    padding: 0.8em 4.76em 0.8em 2.4em;/*17px 100px 17px 50px*/
    color: #fff;
    -webkit-box-shadow: 0 0 39px rgba(255, 52, 0, .54);
    box-shadow: 0 0 39px rgba(255, 52, 0, .54);
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    min-width: p.52em;
    position: relative;
    margin-left:58px;
    &:after{
        position: absolute;
        right: 2.1em;/*44px*/
        top: 0.6em;/*13px*/
        display: block;
        content: "";
        width: 1.57em;/*33px*/
        height: 1.43em;/*30px*/
        background: url(../img/icon-cart.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
    &:hover{
        opacity: 0.8;
    }
}

@media (max-width:990px){
    .page-template-page-products .product_list .product_item .product_image{
        margin-top:0px;
        width:100%;
        height: auto;
        max-width:360px;
        max-height:420px;
    }
    .page-template-page-products .product_list .product_item{
        flex-direction: column;
        align-items: center;
        padding-right: 18px;
        padding-left: 18px;
    }
    .page-template-page-products .product_list .product_item .product_info{
        font-size:clamp(22px, 2.5vw, 25px);
        line-height:1.13em;
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
    }
    .page-template-page-products .product_list .product_item .product_info h2{
        font-size: clamp(25px, 3.6vw, 35px);
        font-weight:normal;
        text-align: right;
        display: inline-block;
        text-align: right;
        width:100%;
    }
    .page-template-page-products .product_list .product_item .product_info .product_description{
        margin-bottom: 41px;
    }
    .page-template-page-products .product_list .product_item .product_info .product_price{
        font-size:49px;
    }
    .page-template-page-products .product_list .product_item .product_info .product_link{
        margin-top: 52px;
        margin-left:0px;
        padding: 14px clamp(75px, 10vw, 100px) 14px 50px;
        font-size:clamp(18px, 5.6vw, 21px);
        &:after{
            right: clamp(32px, 4.4vw, 44px);
        }
    }
}