* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat;
}

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

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 350px;
    height: 750px;
    /* border-radius: 12px; */
}

.mobile-img {
    width: 350px;
    height: 342px;
    display: block;
    object-fit: cover;
}

.perfume-bottom {
    background-color: #FFFFFF;
    height: 408px;
    padding: 32px;
    margin-top: 0px;
}

.product-category  {
    font-family: 'Montserrat';
    font-weight: medium;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 5px;
    color: hsl(228, 12%, 48%);
}

h2 {
    font-family: Fraunces;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
    margin: 24px 0 24px 0;
}

.description {
    color: hsl(228, 12%, 48%);
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0px;
}

.perfume-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 24px;
}

.price {
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
    color: hsl(158, 36%, 37%);
}

.old-price {
    font-size: 13px;
    line-height: 120%;
    letter-spacing: 0px;
    text-decoration: line-through;
    color: hsl(228, 12%, 48%);
}

.add-to-cart {
    background-color: hsl(158, 36%, 37%);
    width: 286px;
    padding-top: 16px;
    padding-bottom: 16px;
    color: white;
    font-size: 14px;
    font-weight: bolder;
    border-radius: 8px;
    border: none;
    margin-top: 24px;
}

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

.svg-icon {
    margin-right: 6px;
}

/* Media queries  */

/* tablet styles */
@media (min-width: 600px) {
    .container {
        flex-direction: row;
        width: 600px;
        height: 456px;
    }

    .mobile-img {
        width: 300px;
        height: 456px;
    }

    .perfume-bottom {
        width: 300px;
        height: 456px;
    }

    .add-to-cart {
        width: 236px;
    }

    h2 {
        width: 236px;
    }
}

