Mempool.
A node-local pool of pending transactions waiting to be included in a block.
The queue at the airport gate. Transactions sit there until the next slot leader (block producer) calls them up.
In depth
Submitted transactions sit in the mempool until a block producer picks them up. On fee-market chains (Bitcoin, Litecoin, etc.) higher fees move a transaction up the queue. On Cardano the minimum fee is deterministic (min_fee = a·size + b), with Plutus transactions paying additional execution-unit costs for declared memory and CPU steps; either way there is no bidding and no fee market. On eUTxO chains, transactions only conflict if they spend the same UTxO, so independent transactions can be included in parallel without ordering constraints.
Example
During a busy moment your transaction may sit in the mempool for a few slots before the next elected block producer picks it up.