/* Add custom JS code below */
// الانتظار حتى يتم تحميل عناصر الصفحة بالكامل
window.addEventListener('DOMContentLoaded', (event) => {
// تحديد تذييل الصفحة (Footer) الخاص بالمتجر
const footer = document.querySelector('footer');
if (footer) {
// إنشاء حاوية جديدة للأيقونات الملونة
const socialContainer = document.createElement('div');
socialContainer.className = 'custom-social-container';
socialContainer.style.textAlign = 'center';
socialContainer.style.padding = '20px 0';
socialContainer.style.width = '100%';
// إضافة الأيقونات مرتبة حسب طلبك بالظبط داخل الحاوية
socialContainer.innerHTML = `
`;
//
footer.appendChild(socialContainer);
}
});