// اختيار السكشن const section = document.getElementById('best-offers-5-slider'); if(section){ // إنشاء عنصر h2 جديد const title = document.createElement('h2'); title.textContent = 'مميزات متجرنا'; // ستايلات العنوان (لون ثابت + بوردر) title.style.color = '#FBDAB8'; // لون النص title.style.border = '2px solid #FBDAB8'; // نفس البوردر title.style.padding = '5px 15px'; // مسافة داخلية title.style.textAlign = 'center'; // توسيط النص title.style.display = 'inline-block'; // البوردير حول النص فقط title.style.margin = '20px auto 0 auto'; // في النص title.style.fontSize = '1.5rem'; // حجم الخط title.style.fontWeight = 'bold'; // سمك الخط // إنشاء حاوية لتوسيط العنصر const wrapper = document.createElement('div'); wrapper.style.textAlign = 'center'; wrapper.appendChild(title); // إدراجه بعد السكشن مباشرة section.parentNode.insertBefore(wrapper, section.nextSibling); } // إنشاء عنصر