/* Cart Page*/
.cart{
    padding-top: 3rem;
}
.cart table{
    width: 100%;
    border-collapse: collapse;
}

.cart .product-info{
    display: flex;
    flex-wrap: wrap;
}

.cart th{
    text-align: left;
    padding: 5px 10px;
    color: #d8d8d8;
    background-color: #a01e1e;
}

.cart .remove-btn{
    background-color: none;
    color :#a01e1e;
    border: none;
    padding: 2px;
    width: 100%;
    font-size: 1rem;
    border-radius: 5px;
    
}

.cart .edit-btn{
    background-color: none;
    text-decoration: none;
    color :#a01e1e;
    border: none;
    padding: 2px;
    font-size: 1rem;
    border-radius: 5px;
}

.cart td{
    padding: 10px 20px;

}

.cart td img{
    width: 90px;
    height: 90px;
    margin-right: 10px;
}

.cart table input{
    width: 60px;
    padding-left: 10px;
    margin-right: 10px;
}

.cart-total{
    display: flex;
    justify-content: flex-end;
}

td:last-child{
    text-align: right;
}

td:last-child{
    text-align: right;
}

.cart-total table{
    width: 100%;
    max-width: 500px;
    border-top: 3px solid #a01e1e;
    
}

.checkout-container{
    display: flex;
    justify-content: flex-end;
}


@media (max-width: 600px) {

    .cart {
        padding-top: 1rem;
    }
    
    .checkout-container .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
    
}