العربية
FORTY FOUR X

FORTY FOUR X

WE ARE CLOSER THAN YOU THINK!

Choose your preferred card size

Hot Drinks 16

Cold Drinks 8

Offers 3

Desserts 11

Boxes 7

Sandwiches 4

Best Sellers 4

Download the FORTY FOUR X App
Order faster and track your orders more easily with our app.
Your Cart
Your cart is empty

Select items from the menu

// ── Language support ────────────────────────────── if (session_status() == PHP_SESSION_NONE) session_start(); if (!isset($activeCountry)) $activeCountry = resolveActiveCountry(); if (!isset($activeCountryCode)) $activeCountryCode = $activeCountry['code']; $supportsArabic = $activeCountry['supports_arabic'] ?? false; if (!$supportsArabic && function_exists('countrySupportsArabic')) { $supportsArabic = countrySupportsArabic($activeCountryCode); } $lang = $_GET['lang'] ?? null; if ($lang === null && isset($_SESSION['lang'])) $lang = $_SESSION['lang']; if ($lang === null && isset($_COOKIE['livvent_lang'])) $lang = $_COOKIE['livvent_lang']; if ($lang !== 'ar' && $lang !== 'en') $lang = 'en'; if (!$supportsArabic) $lang = 'en'; $isRTL = ($lang === 'ar'); // Persist language choice so it carries across all pages $_SESSION['lang'] = $lang; if (!headers_sent()) { setcookie('livvent_lang', $lang, time() + (86400 * 30), '/', '', false, true); }