*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-weight: Tahoma , Arial;
}
.shop-container{
    background-color: #EEE;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}
.shop-container .card{
    width: 300px;
    background-color: #fff;
    height: 550px;
    padding: 15px;
    border-radius:15px ;
    -webkit-border-radius:15px ;
    -moz-border-radius:15px ;
    -ms-border-radius:15px ;
    -o-border-radius:15px ;
    overflow: overlay;
    margin: 10px;
}

.shop-container .card .image img{
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 10px;
}
.shop-container .card .info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
    margin: 0 10px;
}
.info h2{
    color: #494949;
    margin-bottom: 10px;
    white-space: nowrap;      
    overflow: hidden;        
    text-overflow: ellipsis;   
}
.info .info-content{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 18px;
    color: gray;
}
.info button{
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: none;
    background-color: rgb(44, 197, 44);
    color: white;
    font-weight: bold;
    cursor: pointer;
    
}