.cart-sec{
    padding: 3rem 0rem;
    min-height: 50vh;
}

.cart-title{
    font-size: 2.5rem;
    font-weight: 800;
    font-family: "Lemon", serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.list-title{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
}

.product-row{
    border-bottom: 1px solid #AAA;
    padding: 1rem 0rem;
    font-size: 1.2rem;
}

.product-row:hover{
    background-color: #FFE3CF;
}

.cart-prod-img{
    max-height: 120px;
    border-radius: 1rem;
}

.cart-item-name{
    font-weight: bolder;
}

.total-cost-wrapper{
    font-size: 1.2rem;
}

#cart_zipcode{
    display: inline-block;
    max-width: 150px;
}

.cost-cell{
    border: 1px solid #BBB;
    margin-right: -1px;
    margin-bottom: -1px;
    padding: 0.5rem 1rem;
}

@media(max-width: 500px){
    .cart-sec{
        padding-top: 1rem;
        padding-bottom: 3rem;
    }
    
    .product-row{
        font-size: 1.1rem;
    }
    
    .cart-prod-img{
        max-height: 80px;
        border-radius: 0.5rem;
    }
}