.page-banner{
    background: linear-gradient(135deg,#0d6efd,#0a58ca);
    padding:60px 30px;
    border-radius:16px;
    text-align:center;
    color:#fff;
    margin-bottom:40px;
}

.page-banner h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.page-breadcrumb{
    font-size:14px;
}

.page-breadcrumb a{
    color:#fff;
    text-decoration:none;
}

.page-breadcrumb span{
    margin:0 5px;
}

.cart-card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    height:auto;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}


.cart-card .card-body{
    padding:10px;
}

.cart-product{
    padding:25px 15px;
    border-bottom:1px solid #eaeaea;
    transition:.3s;
}

.cart-product:hover{
    background:#f8fbff;
}

.cart-product:last-child{
    border-bottom:none;
}

.cart-product-image{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:12px;
}

.cart-table-head{
    background:#0b2c74;
    color:#fff;
    padding:15px 20px;
    border-radius:10px;
    margin-bottom:20px;
    font-weight:600;
}

.cart-remove{
    color:#dc3545;
    font-size:14px;
    font-weight:600;
}

.cart-product h5{
    font-size:18px;
    font-weight:600;
}

.cart-product-price{
    font-weight:600;
}

.cart-total-col{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:10px;
}

.cart-summary{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:sticky;
    top:120px;
}

.cart-summary .card-body{
    padding:30px;
}

.cart-summary h4{
    font-size:24px;
    margin-bottom:25px;
}

.coupon-box input{
    height:48px;
}

.coupon-box .btn{
    height:48px;
}

.cart-total{
    font-size:22px;
    font-weight:700;
    color:#0d6efd;
}

.empty-cart{
    text-align:center;
    padding:70px 30px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.empty-cart-icon{
    font-size:80px;
    margin-bottom:20px;
}

.empty-cart h3{
    margin-bottom:15px;
}

.remove-btn{
    border-radius:30px;
}

@media(max-width:991px){

    .cart-summary{
        position:relative;
        top:auto;
        margin-top:25px;
    }

    .page-banner h1{
        font-size:32px;
    }
}