
        :root {
            --primary-color: #0F4793;
            --primary-dark: #0f045e;
            --primary-light: #b0d0ff;
            --secondary-color: #FF9800;
            --light-bg: #F5F5F5;
            --dark-color: #333333;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: #f8f9fa;
        }

        .bg-success {
            background-color: var(--primary-color) !important;
        }

        .text-success {
            color: var(--primary-color) !important;
        }

        .btn-success {
            background-color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
        }

        .btn-outline-success {
            color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
        }

        .btn-outline-success:hover {
            background-color: var(--primary-color) !important;
            color: white !important;
        }

        /* Checkout Page Styles */
        .checkout-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
        }
        .checkout-header {
           background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                       url('../img/banner-kanza.jpg');
            background-position: center;
            background-size: cover;
        }

        .checkout-steps {
            position: relative;
            padding: 2rem 0;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: #e9ecef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: #6c757d;
            transition: all 0.3s ease;
        }

        .step.active .step-icon {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }

        .step.completed .step-icon {
            background: #28a745;
            color: white;
        }

        .step-line {
            position: absolute;
            top: 45px;
            right: 0;
            left: 0;
            height: 3px;
            background: #e9ecef;
            z-index: 1;
        }

        .checkout-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .checkout-card h5 {
            color: var(--primary-color);
            border-bottom: 2px solid var(--primary-light);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .form-label {
            font-weight: 600;
            color: var(--dark-color);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(15, 71, 147, 0.25);
        }

        .order-summary-item {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #dee2e6;
        }

        .payment-method {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .payment-method:hover {
            border-color: var(--primary-light);
            background: #f8f9fa;
        }

        .payment-method.selected {
            border-color: var(--primary-color);
            background: rgba(15, 71, 147, 0.05);
        }

        .payment-method .form-check-input {
            width: 1.2em;
            height: 1.2em;
            margin-top: 0.2em;
        }

        .payment-method .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .bank-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 10px;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .bank-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(30deg);
        }

        .card-chip {
            width: 50px;
            height: 40px;
            background: #ffc107;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
        }

        .card-chip::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.3) 50%, transparent 55%);
        }

        .card-logo {
            position: absolute;
            bottom: 1rem;
            left: 1.5rem;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .security-badge {
            background: #28a745;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
        }

        .cart-items-mini {
            max-height: 300px;
            overflow-y: auto;
        }

        .cart-mini-item {
            display: flex;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .cart-mini-item:last-child {
            border-bottom: none;
        }

        .cart-mini-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            margin-left: 1rem;
        }

        .timer {
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 1rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .checkout-card {
                padding: 1.5rem;
            }

            .step-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .step-line {
                top: 40px;
            }

            .bank-card {
                padding: 1rem;
            }
        }

        @media (max-width: 576px) {
            .checkout-header {
                padding: 1.5rem 0;
            }

            .checkout-header h1 {
                font-size: 1.8rem;
            }

            .checkout-card {
                padding: 1rem;
            }
        }

        /* Animation */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .checkout-card {
            animation: slideIn 0.5s ease-out;
        }