body {
    background-color: hsl(30, 38%, 92%);
    color: hsl(228, 12%, 48%);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 23px;
    margin: 0px;
    letter-spacing: 0.1px;
    display: flex;
    min-height: 100dvh;
    justify-content: center;
    align-items: center;
}

.card {
    display: flex;
    max-width: 600px;
    max-height: 450px;
}

.card-image {
    width: 100%
}

.card-image-mobile {
    display: none;
}

.product-image-desktop {
    width: 300px;
    height: 450px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.product-image-mobile {
    display: none;
}

.description-box {
    background-color: white;
    width: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 27px 32px 32px;
}

.product-type {
    font-size: 12px;
    line-height: 23px;
    letter-spacing: 4.9px;
}

.product-name {
    color: hsl(212, 21%, 14%);
    font-family: 'Fraunces', serif;
    font-size: 32px;
    line-height: 32px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.product-description {
    margin: 0px;
}

.price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 194px;
    margin: 30px 0px
}

.current {
    color: hsl(158, 36%, 37%);
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;    
}

.previous {
    letter-spacing: -0.5px;
}

button {
    display: flex;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    width: 236px;
    height: 48px;
    background-color: hsl(158, 36%, 37%);
    transition:0.4s;
    border: 0px;
    padding: 0px 64px;
    border-radius: 7px;
    align-items: center;
    cursor: pointer;   
}

button:hover {
    background-color: hsl(156, 42%, 18%);
}

.button-text {
    margin-left: 12px;
}

@media only screen and (max-width: 768px) {
    .card {
        display: flex;
        flex-direction: column;
        max-width: 343px;
        max-height: 611px;
    }
    
    .card-image {
        width: 50%;
    }

    .product-image-desktop {
        display: none;
    }

    .product-image-mobile {
        display: flex;
        width: 343px;
        height: 240px;
        border-radius: 10px 10px 0 0;
    }

    .description-box {
        background-color: white;
        width: 295px;
        height: 371px;
        padding: 20px 24px;
        border-radius: 0px 0px 10px 10px;
    }

    .product-name {
        width: 295px ;
        margin-top: 8px;
        margin-bottom: 16px;
    }

    .product-description {
        width: 295px;
    }

    .price {
        margin: 24px 0px 20px 0px
    }

    button {
        width: 295px;
        height: 48px; 
        justify-content: center;
    }
}