                                                  /*MObile  Style **/
 
*{
     font-family: "Montserrat", sans-serif;
     font-style: normal;
     box-sizing: border-box;
}

body{
    margin: 0;
    background-color: hsl(30, 38%, 92%);
}


 main{
    display: flex;
    align-items: center;
    justify-content: center;
   max-width: 100%;
   height: 100vh;
     
 }

 .product-card{
     max-width: 94%;
     height: 660px;
     margin: auto;
     background-color: hsl(0, 0%, 100%);
     border-radius: 10px;
     flex-direction: column;
   
     
 }

 .image{
    width:100% ;
    height: 240px; 
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-image: url(../assets/images/image-product-mobile.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    

 }



 .text{
    display:block;
     width: 90%;
     margin: 0 auto;
 }

 .text .perfume{
    font-family: "Fraunces", serif;
    color: hsl(228, 12%, 48%);
    font-size: 14px;
    font-weight: bold;
   letter-spacing: 5px;

 }

 .text  h1{
       font-family: "Fraunces", serif;
       font-weight: bold;
       font-size: 32px;
       letter-spacing: 1px;
 
 }

 .text .description{
    
    font-size: 14px;
    color: hsl(228, 12%, 48%);
    line-height: 25px;
    font-weight: medium;
    letter-spacing: 0.7px;
    
 }



 
 .price{
    width: 70%;
    margin: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: fit-content;
    height: 70px;
    
    
 }

 .price .new-price{
    font-family: "Fraunces", serif;
    font-weight: bold;
    font-size: 40px;
    color:hsl(158, 36%, 37%);
  
    
 }

 .price .discount{
    text-decoration: line-through;
    color: hsl(228, 12%, 48%);
 }

.add-to-cart{
    width: 90%;
    height: 55px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    
 }

 .add-to-cart button{
    display: flex;
    background-color: hsl(158, 36%, 37%);
     width: 95%;
     height: 100%;
     border: none;
     border-radius: 10px;
     color: hsl(0, 0%, 100%);
     text-align: center;
     align-items: center;
     justify-content: center;
     gap: 10px;
     font-size: 14px;
     font-weight: bold;
     cursor: pointer;
    
 }



 .add-to-cart img{
     width: 20px;
     height: 20px;
 }



 @media (min-width:764px) {

    main{
        max-width: 1440px;
        height: 100vh;
        margin: auto;
    }

    .product-card {
        display: grid;
        width: 930px;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        height: 630px;
      
    }

     .image{
        display: flex;
        min-height: 100% !important;
        height: 100%;
        background-image: url(../assets/images/image-product-desktop.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 0;
        border-top-left-radius: 10px;
        border-bottom-left-radius:10px ;


    }

   .content {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	gap: 20px;
	margin: 30px 25px;
}

.text h1{
   width: 260px;
   font-size: 40px;
   letter-spacing: 1.5px;
   
}

.text .description{
   width: 335px;
   font-size: 18px;
}

.price{
   width: 260px;
}

.add-to-cart{
   width: 350px;
   margin: 10px ;
}


.add-to-cart button{
   height: 60px;
   transition: 0.3s ease-in-out;
}

.add-to-cart button:hover{
   background-color: hsl(158, 42%, 18%);
}



    
 }