body{
    background-color: hsl(30, 38%, 92%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    margin: 0;
    
}

.container {
    background-color: white;
    justify-content: center;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    height: 580px;
    width: 340px;
    padding-top: 0;
}

.image {
    background-image: url('images/image-product-mobile.jpg');
    background-size: contain;
    background-repeat: no-repeat; 
    width: 100%;
    min-height: 238px;
    margin-top: 0;
    overflow: auto;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.text{
    height: 322px;
    font-family: 'Montserrat', sans-serif ;
    padding: 20px;
    padding-top: 0;
}

.perfume{
    font-weight: 400;
    color: hsl(228, 12%, 48%);
    font-size: 13px;
}

.name{
    font-weight: 700;
    font-size: 28px;
    color: black;
    margin-top: 10px;
    margin-bottom: 10px;
}

.description{
    font-weight: 500;
    color: hsl(228, 12%, 48%);
    font-size: 14px;
}

.price_bar{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    height: 50px;
    margin-bottom: 20px;
}

.current_price{
    font-size: 28px;
    font-family: 'Fraunces', serif;
    color: hsl(158, 36%, 37%);
    font-weight: 700;
}

.previous_price{
    text-decoration: line-through;
    color: hsl(228, 12%, 48%);
    font-size: 14px;
}

.add-to-cart{
    width: 100%;
    background-color: hsl(158, 36%, 37%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s;
}

@media (min-width: 769px){
   /*desktop*/
    .container {
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: row;
        border-radius: 10px;
        height: 60vh;
        width: 80vh;
    }

    .image {
        flex: 1;
        background-image: url('images/image-product-desktop.jpg');
        background-size: cover;
        background-repeat: no-repeat; 
        background-position: center;

        width: 100%;
        height: 100%;
        overflow: auto;
        border-top-right-radius: 0px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }


    .text{
        flex: 1;
        height: 100%;
        font-family: 'Montserrat', sans-serif ;
        padding: 20px;
    }

    .perfume{
        font-weight: 400;
        color: hsl(228, 12%, 48%);
        font-size: 13px;
        margin-top: 30px;
    }
    
    .name{
        font-weight: 700;
        font-size: 34px;
        color: black;
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 1;
    }

    .description{
        font-weight: 500;
        color: hsl(228, 12%, 48%);
        font-size: 16px;
        line-height: 1.5;
    }

    .add-to-cart:hover{
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

}
