العربية
straws ice cream | ستروز آيسكريم

straws ice cream | ستروز آيسكريم

Choose your preferred card size

Bestsellers 3

Ice Creams 7

Download the straws ice cream | ستروز آيسكريم 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); }