* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

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

.container {
    width: 600px;
    height: 450px;
    border: none;
    border-radius: 10px;
    background: #fff;
    display: flex;
}

.inside-container {
    width: 50%;
}

.image {
    background-image: url(./images/image-product-desktop.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.text-box {
    padding: 2rem;
}

.product-type {
    text-transform: uppercase;
    letter-spacing: 5px;
    color: hsl(228, 12%, 48%);
    font-size: 12px;
    margin-bottom: 1.3rem;
}
.product-name {
    font-family: 'Fraunces', serif;
    line-height: 31px;
    margin-bottom: 1.5rem;
}

.product-description {
    color: hsl(228, 12%, 48%);
    line-height: 24px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 1.5rem;
}

.prices {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.price-main {
    font-size: 31px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    color: hsl(158, 36%, 37%);
}

.price-before {
    color: hsl(228, 12%, 48%);
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
}

.btn {
    width: 100%;
    height: 50px;
    background-color: hsl(158, 36%, 37%);
    border: none;
    border-radius: 10px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.btn img {
    width: 18px;
    height: 18px;
}

@media screen and (max-width: 650px) {
    body {
        height: 100%;
    }
    .container {
        width: 90%;
        height: 90%;
        flex-direction: column;
        margin-top: 2rem;
    }

    .inside-container {
        width: 100%;
    }
    
    .image {
        background-image: url(./images/image-product-mobile.jpg);
        height: 238px;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 0;
    }

    .text-box {
        padding: 1.4rem;
    }
}
