*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: hsl(30, 38%, 92%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container{
    background-color: hsl(0, 0%, 100%);
    width: 100%;
    max-width: 600px;  /* for responsive design */
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.img{
    width: 300px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card{
    margin: 16px;
    text-align: left;
}

.title{
    margin: 16px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 6px;
    font-size: 12px;
    font-weight: 300;
}

.description{
    margin: 0 60px 0 15px;
    font-family: "Fraunces", serif;
}

.des{
    margin: 20px;
    line-height: 1.5;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 14px;
    width: 90%;
}

.rate{
    display: flex;
    gap: 20px;
}

.price{
    margin-left: 20px;
    font-family: "Fraunces", serif;
    font-size: 30px;
    color: hsl(158, 36%, 37%);
    font-weight: 800;
}

.price-dis{
    margin-top: 12px;
    font-size: 12px;
    text-decoration: line-through;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

button{
    background-color: hsl(158, 36%, 37%);
    color: hsl(0, 0%, 100%);
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.cart-img{
    height: 14px;
    width: 14px;
}

span{
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
}


/* Responisve DEsign */

@media (max-width: 600px) {
    body{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .container{
        flex-direction: column;
        width: 90%;
    }

    .img{
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}