        /* Checkout Page Specific Styles */
        .checkout-page {
            min-height: 100vh;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            position: relative;
        }
        
        .checkout-page::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/bg/checkout-bg.jpg') center/cover;
            opacity: 0.1;
            z-index: -1;
        }
        
        .checkout-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .checkout-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 40px 0;
        }
        
        .checkout-header h1 {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .checkout-header p {
            color: #ccc;
            font-size: 1.1rem;
        }
        
        .checkout-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .wishlist-content,
        .profile-content,
        .orders-content {
            display: grid;
            grid-template-columns: 1fr; /* عمود واحد فقط */
            gap: 30px;
            margin-bottom: 40px;
        }


        .checkout-form-section {
            background: rgba(100, 100, 100, 0.3);;
            border-radius: 16px;
            padding: 30px;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .checkout-form-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .checkout-form-header h3 {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .checkout-form-header p {
            color: #ccc;
            font-size: 0.9rem;
        }
        
        .form-section {
            margin-bottom: 30px;
        }
        
        .form-section-title {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .form-section-title i {
            color: #0070f3;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-label {
            display: block;
            color: #ccc;
            font-size: 0.9rem;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #0070f3;
            background: rgba(255,255,255,0.15);
            box-shadow: 0 0 0 3px rgba(0,112,243,0.1);
        }
        
        .form-input::placeholder {
            color: #aaa;
        }
        
        .form-select {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .form-select:focus {
            outline: none;
            border-color: #0070f3;
            background: rgba(255,255,255,0.15);
        }
        
        .form-select option {
            background: #1a1a2e;
            color: #fff;
        }
        
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        
        .payment-method {
            background: rgba(255,255,255,0.05);
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .payment-method:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.3);
        }
        
        .payment-method.selected {
            border-color: #0070f3;
            background: rgba(0,112,243,0.1);
        }
        
        .payment-method i {
            font-size: 1.5rem;
            color: #0070f3;
        }
        
        .payment-method-info {
            flex: 1;
        }
        
        .payment-method-name {
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .payment-method-desc {
            color: #ccc;
            font-size: 0.8rem;
            margin-top: 2px;
        }
        
        .order-summary-section {
            background: rgba(100, 100, 100, 0.3);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid rgba(255,255,255,0.2);
            height: fit-content;
            position: sticky;
            top: 20px;
        }
        
        .order-summary-header {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .order-summary-header h3 {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .order-items {
            margin-bottom: 25px;
        }
        
        .order-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .order-item:last-child {
            border-bottom: none;
        }
        
        .order-item-image {
            width: 50px;
            height: 40px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .order-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .order-item-details {
            flex: 1;
        }
        
        .order-item-name {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2px;
        }
        
        .order-item-platform {
            color: #ccc;
            font-size: 0.8rem;
        }
        
        .order-item-price {
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .order-item-quantity {
            color: #ccc;
            font-size: 0.8rem;
            margin-left: 5px;
        }
        
        .order-summary-stats {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .summary-stat {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }
        
        .summary-stat-label {
            color: #ccc;
            font-size: 0.9rem;
        }
        
        .summary-stat-value {
            color: #fff;
            font-weight: 600;
        }
        
        .summary-total {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 20px;
        }
        
        .summary-total .summary-stat-label {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .summary-total .summary-stat-value {
            color: #0070f3;
            font-size: 1.3rem;
            font-weight: 700;
        }
        
        .checkout-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .place-order-btn {
            background: linear-gradient(135deg, #348300, #677e00);
            color: #fff;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 0px 25px rgba(20, 243, 0, 0.4);
        
            /* 👇 حركة الوميض */
            animation: pulseGlow 1.8s infinite ease-in-out;
        }
        
        /* الهوفر يفضل شغال زي ما هو */
        .place-order-btn:hover {
            background: linear-gradient(135deg, #348300, #677e00);
            transform: translateY(-2px);
            box-shadow: 0 0px 30px rgba(20, 243, 0, 1);
        }
        
        /* keyframes للوميض */
        @keyframes pulseGlow {
            0% {
                box-shadow: 0 0px 15px rgba(20, 243, 0, 0.3);
            }
            50% {
                box-shadow: 0 0px 35px rgba(20, 243, 0, 0.9);
            }
            100% {
                box-shadow: 0 0px 15px rgba(20, 243, 0, 0.3);
            }
        }
        
        
        .back-to-cart-btn {
            background: rgba(255,255,255,0.1);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.2);
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
        }
        
        .back-to-cart-btn:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-1px);
        }
        
        .security-notice {
            background: rgba(0,112,243,0.1);
            border: 1px solid rgba(0,112,243,0.3);
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
        }
        
        .security-notice h4 {
            color: #0070f3;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .security-notice p {
            color: #ccc;
            font-size: 0.8rem;
            line-height: 1.4;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .checkout-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .order-summary-section {
                position: static;
            }
        }
        
        @media (max-width: 768px) {
            .checkout-header h1 {
                font-size: 2.5rem;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .payment-methods {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .checkout-container {
                padding: 15px;
            }
            
            .checkout-header {
                padding: 30px 0;
            }
            
            .checkout-header h1 {
                font-size: 2rem;
            }
            
            .checkout-form-section,
            .order-summary-section {
                padding: 20px;
            }
            
            .place-order-btn,
            .back-to-cart-btn {
                padding: 12px 20px;
                font-size: 1rem;
            }
        }

        .gradient-icon {
            font-size: 24px; /* يمكن تعديل الحجم حسب الحاجة */
            background: linear-gradient(45deg, #ff9900, #5d0081);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .vodafone-icon {
            font-size: 24px; /* يمكن تعديل الحجم حسب الحاجة */
            background: linear-gradient(45deg, #ff0000, #812f00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .binance-icon {
            font-size: 24px; /* يمكن تعديل الحجم حسب الحاجة */
            background: linear-gradient(45deg, #f1c40f, #f1c40f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .vodafone-notice {
            background: rgba(255, 110, 110, 0.1);
            border: 1px solid rgba(255, 110, 110,0.3);
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
        }

        .binance-notice {
            background: rgba(243, 227, 0, 0.1);
            border: 1px solid rgba(243,227,0,0.3);
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
        }

        .instapay-notice {
            background: rgba(146, 0, 243, 0.1);
            border: 1px solid rgba(146, 0, 243, 0.3);
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
        }

        .kashier-notice {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
        }

        /* الخلفية الداكنة */
        .image-zoom-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        /* الصورة المكبرة */
        .image-zoom-overlay img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
            cursor: zoom-out;
            transition: transform 0.3s ease;
        }