
.product-section {
    background-color: hsl(30, 38%, 92%);
    height: 100vh;
    display: flex;
    padding: 70px 0;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 1px 9px 0px rgba(50, 50, 50, 0.66);
    -moz-box-shadow:    0px 1px 9px 0px rgba(50, 50, 50, 0.66);
    box-shadow:         0px 1px 9px 0px rgba(50, 50, 50, 0.66);   
}
.product-container {
    background: hsl(0, 0%, 100%);
    height: 90%;
    width: 650px;
    border-radius: 10px;
    display: flex;       
}
.product-img-container {
    height: 100%;
    width: 325px;

}
img{
    height: 100%;
    border-radius: 10px 0 0 10px;
    width: inherit;
}
.product-details-container {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 0 10px 10px 0px;
    
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: hsl(228, 12%, 48%);

}
.product-name {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    line-height: 40px;
    color:  hsl(212, 21%, 14%);
    padding-bottom: 10px;
    

}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    padding-right: 0px;
    font-weight: 100;
}
.price-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    display: flex;
    justify-self: center;
    align-items: center;
    padding-bottom: 20px;
    
}

.Price {
    font-family: 'Fraunces', sans-serif;
    font-weight: 700;
    color: hsl(158, 36%, 37%);
    
}
.old-price {
    margin-right: 25px;
    font-weight: 100;
    text-decoration-line: line-through;
    font-weight: 100;
    font-size: small;
   
}
.btn-primary {
    background-color: hsl(158, 36%, 37%);
    
}
.btn-primary:hover {
    background-color: hsl(158, 36%, 37%);
}
.fa-cart-shopping{
    padding-right: 10px;
}