:root{
    --Dark-cyan: hsl(158, 36%, 37%);
    --Cream: hsl(30, 38%, 92%);
    --Very-dark-blue: hsl(212, 21%, 14%);
    --Dark-grayish-blue: hsl(228, 12%, 48%);
    --White: hsl(0, 0%, 100%)
}

*{
    /* font-family: 'Fraunces', serif; */
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    box-sizing: border-box;
}

.main-container{
    width: 100vw;
    height: 100vh;
    background-color: var(--Cream);
    padding: 20px;
}

.section-container{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: start;
    border-radius: 10px;
    background-color: var(--White);
    position: relative;
}

.img-container{
    display: inline-block;
    background-image: url('../images/image-product-mobile.jpg');
    width: 100%;
    min-width: 288px;
    height: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px 10px 0px 0px;
}

.content-text-container{
    height: 55%;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.content-text-container h3{
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.25em;
    color: var(--Dark-grayish-blue);
}

.content-text-container h1{
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-family: 'Fraunces', serif;
    color: var(--Very-dark-blue);
}

.content-text-container p{
    font-size: 1.42rem;
    line-height: 2.0rem;
    margin-bottom: 25px;
    color: var(--Dark-grayish-blue);
}

.prices-container{
    display: flex;
    margin-bottom: 16px;
}

.prices-container .actual-price{
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-family: 'Fraunces', serif;
    margin-right: 20px;
    color: var(--Dark-cyan);
}

.prices-container .old-price{
    color: var(--Dark-grayish-blue);
    text-decoration: line-through;
}

.add-cart{
    width: 100%;
    height: 18%;
    border: none;
    background-color: var(--Dark-cyan);
    color: var(--White);
    font-size: 1.4rem;
    border-radius: 5px;
    margin-top: auto;
}

.add-cart span{
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 20px;
    margin-bottom: -5px;
    background-image: url('../images/icon-cart.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}