@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&display=swap');
            
            
* {
    font-family: 'Inter', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    padding: 50px 0;
    background-color: #FAE8DE;
}

main {
    width: 600px;
    height: auto;
    display: flex;
    background-color: #fff;
    margin: auto;
    border-radius: 10px;
    box-shadow: 1px 1px 8px 1px rgba(77, 66, 66, 0.65);
}

.image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    
}
.image .mobile {
    display: none;
}
.image .desktop{
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
}

.content {
    width: 300px;
    height: 100%;
    padding: 30px;
}
.content h4{
    color: #94837a;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 5px;
}
.content .name{
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 2.2rem;
    margin-bottom: 25px;
}
.content p{
    color: #94837a;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5rem;
}
.content .price {
    color: green;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 2.2rem;
    position: relative;
}
.content .price span{
    color: #94837a;
    font-weight: 500;
    font-size: 0.9rem;
    position: absolute;
    bottom: 12px;
    margin-left: 20px;
    text-decoration: line-through;
}

.content button{
    background-color: green;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    border-radius: 8px;
}
.content button:hover{
    background-color: rgb(30, 90, 30);
    transition: 0.2s;
}
.content button i{
    margin-right: 10px;
}
@media screen and (max-width: 650px)  {
    body{
        width: 100%;
        height: auto;
        padding: 30px 0;
        background-color: #FAE8DE;
    }
    main {
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .image {
        width: 100%;
        border-radius: 10px;
    }
    .image .mobile {
        display: block;
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
    .image .desktop{
        display: none;
    }
    .content {
        width: 100%;
        padding: 20px;
    }
    .content h4{
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .content .name{
        font-weight: 700;
        font-size: 1.8rem;
        line-height: 2rem;
        margin-bottom: 10px;
    }
    .content p{
        color: #94837a;
        font-size: 0.79rem;
        line-height: 1.5rem;
        margin-bottom: 10px;
        padding-right: 15px;
    }
    .content .price {
        margin-bottom: 10px;
        font-weight: 700;
        font-size: 2rem;
        position: relative;
    }
    .content .price span{
        font-size: 1rem;
        position: absolute;
        bottom: 10px;
    }
    
    .content button{
       font-size: 0.9rem;

    }
}