   :root {
            --primary: #ffc107;
            --secondary: #2d3436;
            --glass: rgba(255, 255, 255, 0.9);
        }

        body {
            background-color: #f4f7f6;
            font-family: 'Cairo', sans-serif;
        }

        .cart-wrapper {
            border-radius: 20px;
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
        }

        .product-row {
            border-bottom: 1px solid #f1f1f1;
            transition: 0.3s;
        }

        .product-img {
            width: 85px;
            height: 85px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .qty-box {
            display: flex;
            align-items: center;
            background: #eee;
            border-radius: 30px;
            padding: 2px 10px;
            width: fit-content;
            margin: auto;
        }

        .qty-box input {
            border: none;
            background: transparent;
            width: 50px;
            text-align: center;
            font-weight: bold;
            outline: none;
        }

        .summary-card {
            position: sticky;
            top: 20px;
            border-radius: 20px;
            background: var(--secondary);
            color: white;
            padding: 25px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .btn-checkout {
            background: var(--primary);
            color: var(--secondary);
            border: none;
            border-radius: 15px;
            padding: 15px;
            font-weight: 800;
            transition: 0.4s;
            width: 100%;
        }

         .btn-checkout:hover{
            background: var(--secondary)!important;

            
               color: var(--glass);

         }

        .btn-remove {
            border: none;
            background: transparent;
            color: #ff4757;
            font-size: 1.1rem;
            transition: 0.2s;
        }

        #cartContent {
            padding-top: 50px !important;
        }