.cart-modern-page{
    font-family:'Poppins',sans-serif;
    background:#f4f7fd;
    padding:0 0 80px;
    margin-top:-155px;
    min-height:100vh;
}

.cart-header{
    background:linear-gradient(90deg,#2563eb,#60a5fa);
    border-radius:24px;
    padding:32px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
    color:#fff;
}

.cart-header h1{
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}

.cart-header p{
    margin:0;
    opacity:.9;
}

.cart-header-icon{
    font-size:56px;
}

.cart-layout{
    display:grid;
    grid-template-columns:1fr 390px;
    gap:28px;
}

.cart-products{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.modern-cart-card{
    background:#fff;
    border-radius:24px;
    padding:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.3s;
}

.modern-cart-card:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.product-left{
    display:flex;
    gap:20px;
    align-items:center;
}

.product-icon{
    width:78px;
    height:78px;
    border-radius:20px;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2563eb;
    font-size:34px;
}

.product-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
}

.product-specs{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    color:#64748b;
    margin-bottom:10px;
}

.product-specs span{
    display:flex;
    align-items:center;
    gap:6px;
}

.product-period{
    display:inline-flex;
    background:#eef4ff;
    color:#2563eb;
    padding:8px 16px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.product-right{
    text-align:right;
}

.product-price{
    font-size:34px;
    font-weight:700;
    margin-bottom:18px;
}

.remove-product-btn{
    width:48px;
    height:48px;
    border-radius:14px;
    background:#fff1f2;
    color:#ef4444;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:20px;
    transition:.3s;
}

.remove-product-btn:hover{
    background:#ef4444;
    color:#fff;
}

.summary-modern-card{
    background:#fff;
    border-radius:24px;
    padding:28px;
    position:sticky;
    top:120px;
}

.summary-modern-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:28px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    color:#475569;
}

.summary-total-row{
    margin-top:25px;
    padding-top:25px;
    border-top:1px solid #e2e8f0;
    display:flex;
    justify-content:space-between;
    font-size:22px;
    font-weight:700;
}

.modern-checkout-btn{
    width:100%;
    height:68px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    margin-top:30px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
    color:#fff;
    font-size:22px;
    font-weight:700;
    transition:.3s;
}

.modern-checkout-btn:hover{
    transform:scale(1.02);
    color:#fff;
}

.empty-cart-box{
    background:#fff;
    border-radius:24px;
    padding:70px 30px;
    text-align:center;
}

.empty-cart-box i{
    font-size:70px;
    color:#94a3b8;
}

.empty-cart-box h3{
    margin-top:20px;
    font-size:28px;
}

.empty-cart-box p{
    color:#64748b;
}

@media(max-width:1100px){

    .cart-layout{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .modern-cart-card{
        flex-direction:column;
        gap:25px;
        align-items:flex-start;
    }

    .product-right{
        width:100%;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .cart-header{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .cart-header h1{
        font-size:32px;
    }

}