    /* Mobile-specific wallet styles */
    .mobile-wallet-container {
        display: none; /* Hidden by default */
    }

    @media (max-width: 480px) {
        .mobile-wallet-container {
            display: block !important; /* Force display */
        }

        .mobile-wallet-container .wallet-trigger {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: var(--e-global-color-secondary);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-wallet-container .wallet-trigger i {
            color: black;
            font-size: 16px;
        }

        .mobile-wallet-container .wallet-trigger:hover {
            filter: brightness(1.1);
            transform: translateY(-2px);
        }

        .wallet-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .wallet-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .wallet-balances {
            padding: 10px 0;
        }

        .wallet-balance-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 12px;
        }

        .wallet-balance-item:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .balance-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .balance-info i {
            font-size: 24px;
            color: var(--e-global-color-secondary);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }

        .balance-details {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .balance-label {
            color: black;
            font-size: 16px;
            font-weight: 500;
        }

        .balance-amount {
            color: black;
            font-weight: 600;
            font-size: 18px;
        }

        .wallet-balance-item .fa-chevron-right {
            color: #666;
            font-size: 14px;
        }

        .wallet-separator {
            height: 1px;
            background: rgba(0, 0, 0, 0.1);
            margin: 8px 16px;
        }
    }