/*--------------------------------------
Shopping Cart
--------------------------------------*/

.cart-title{

    font-size:40px;

    font-weight:700;

    margin-bottom:40px;

}

/*--------------------------------------
Cart Item
--------------------------------------*/

.cart-item{

    border:1px solid #e5e5e5;

    border-radius:12px;

    padding:25px;

    margin-bottom:25px;

    background:#fff;

    transition:.3s;

}

.cart-item:hover{

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

/*--------------------------------------
Product Image
--------------------------------------*/

.cart-image{

    width:120px;

    height:120px;

    object-fit:cover;

    border-radius:10px;

}

/*--------------------------------------
Product Information
--------------------------------------*/

.cart-product-name{

    font-size:22px;

    font-weight:600;

    margin-bottom:8px;

}

.cart-product-price{

    color:#6c757d;

    font-size:16px;

}

/*--------------------------------------
Subtotal
--------------------------------------*/

.cart-subtotal{

    font-size:20px;

    font-weight:600;

}

/*--------------------------------------
Cart Summary
--------------------------------------*/

.cart-summary{

    border:1px solid #e5e5e5;

    border-radius:12px;

    padding:25px;

    background:#fff;

}

.cart-total{

    font-size:30px;

    font-weight:700;

    color:#dc3545;

}

/*--------------------------------------
Buttons
--------------------------------------*/

.cart-remove{

    min-width:110px;

}

.cart-checkout{

    min-width:180px;

}

/*--------------------------------------
Responsive
--------------------------------------*/

@media(max-width:768px){

    .cart-item{

        text-align:center;

    }

    .cart-image{

        margin-bottom:20px;

    }

}