document.addEventListener("DOMContentLoaded", function () {
// 1. إنشاء الحاوية وضبط الـ Inline Styles
const creditDiv = document.createElement("div");
creditDiv.style.cssText = "display:flex;justify-content:center;align-items:center;gap:6px;direction:ltr!important;background:#fff;padding:8px;font-size:13px;border-top:1px solid #eee;color:#2e3092;font-family:inherit;z-index:9999;position:relative;font-weight:900!important";
// 2. إضافة نص الحقوق والرابط والشعار (محدث لمتجر أسفار)
creditDiv.innerHTML = 'Designed by Raed Ibrahim
';
// 3. حقن العنصر داخل الفوتر أو أسفل الصفحة تلقائياً
const targetFooter = document.querySelector("footer") || document.querySelector(".store-footer") || document.body;
targetFooter.appendChild(creditDiv);
});