    /* Global Styles */
    body {
        font-family: 'Poppins', sans-serif;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .navbar {
        background: var(--primary);
        padding: 15px 0;
        box-shadow: var(--shadow-md);
    }

    .cart-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .cart-header h1 {
        color: var(--primary-dark);
        font-size: 2.8rem;
    }

    .cart-table {
        width: 100%;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 30px;
    }

    .cart-table th {
        background: var(--primary);
        color: white;
        padding: 20px;
        text-align: center;
        font-weight: 500;
    }

    .cart-table td {
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #eee;
        vertical-align: middle;
    }

    .product-img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .qty-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .qty-btn {
        width: 30px;
        height: 30px;
        border: none;
        background: var(--primary);
        color: white;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
    }

    .qty-btn:hover {
        background: var(--primary-dark);
    }

    .remove-btn {
        background: #ff4757;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .remove-btn:hover {
        background: #ff2e43;
        transform: scale(1.05);
    }

    .cart-summary {
        background: white;
        padding: 30px;
        border-radius: 15px;
        margin-top: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .total {
        font-size: 24px;
        font-weight: bold;
        color: var(--primary);
    }

    .checkout-btn, .pay-now-btn {
        background: var(--accent);
        color: green;
        padding: 15px 30px;
        border: none;
        border-radius: 50px;
        font-size: 16px;
        cursor: pointer;
        margin: 10px;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
        font-weight: 500;
    }

    .checkout-btn:hover, .pay-now-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .empty-cart {
        text-align: center;
        padding: 60px;
        font-size: 18px;
        color: #666;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .empty-cart i {
        font-size: 60px;
        color: #ddd;
        margin-bottom: 20px;
    }

    @media (max-width: 768px) {
        .cart-table {
            display: block;
            overflow-x: auto;
        }

        .cart-summary > div {
            flex-direction: column;
            gap: 20px;
        }

        .checkout-btn, .pay-now-btn {
            width: 100%;
            margin: 5px 0;
        }
    }