.layout-recommend .header{
    visibility: visible;
}
.layout-recommend .main{
    margin-top:40px;    
    overflow:auto;
}
.layout-recommend .layout{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.layout-recommend .footer{
    display:none;
}
.layout-recommend .recommend{
    display:flex;
    flex-direction:column;   
    gap:20px ;
}
.layout-recommend .product_list{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:12px;
}    
.layout-recommend .product{
    display:flex;   
}
.layout-recommend .product_img{
    margin-right:25px;    
}
.layout-recommend .product_info_place{
    display:grid;
    grid-template-rows: 30px 1fr 20px;
    justify-content: space-between;
}

.layout-recommend .product_name{
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 700;
    font-size: 15px;
}
.layout-recommend .product_info{
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 12px;
    color: #707070;    
}
.layout-recommend .product_price{
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 14px;
}
.layout-recommend .product_price span{
    color: #E35636;
}
.layout-recommend .aesthetics{
    margin-top:16px;
    margin-bottom:24px;
}

.layout-recommend .shop{
    width:100%;
    height:48px;
    background: #FFFFFF;
    border: 1px solid #E1E1E1;
    border-radius: 48px;
    display:flex;
    justify-content: center;
    align-items: center;
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    margin-top:30px;
}

@media screen and (max-width:440px){
    .layout-recommend .product{
        flex-direction:column;
        align-items:center;
    }
    .layout-recommend .product_img{
        margin-right:0;
    }
    .layout-recommend .product_info_place{
        gap:10px;
    }
}