body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(30, 38%, 92%);
    padding: 0;
    margin: 0;
}

.container{
    display: flex;
    max-width:600px;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background-color:  hsl(0, 0%, 100%);

}
.desktop,.mobile{
    width: 100%;
    height: 100%;


}
p,button{
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    color: hsl(228, 12%, 48%);
    line-height: 1.5;

}
h1{
    font-family: Fraunces;
    font-weight: bold;
    font-size: 32px;
    margin: 0;
    margin-bottom: 22px;
    line-height: 1;
    
}
.perfume{
letter-spacing: 6px;
font-size: 11px;
margin: 0;
margin-bottom: 17px;


}
.price{
    display: flex;
    gap: 10px;
    font-size: 14px;
   align-items: center;

 
}
#orginal-price{
    font-size: 30px;
    text-decoration: none;
    font-family: Fraunces;
    color: hsl(158, 36%, 37%);
    font-weight: bold;
    margin: 12px 0;
}
.text-box{
    max-width: 240px;
}
.others{
padding: 29px;  
}
.image-container{

    flex: 1;
}
.mobile{
    display: none;
}
button{
    margin-top: 16px;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background-color: hsl(158, 36%, 37%);
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
button:hover{
   background-color: hsl(158, 42%, 18%);
   cursor:pointer;
   
   
}
@media (max-width:610px){
    .container{
        flex-direction: column;
        max-width: 400px;
        margin: 20px;
        
    }
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
    .text-box{
        max-width: 100%;
    }

}