document.addEventListener('DOMContentLoaded', function () { const target = document.querySelector("#new-place > article"); if (target) { const html = `
📏 جدول المقاسات
المقاس طول العباية (إنش) العرض (إنش) الكم (إنش)
50502125
52522226
54542327
56562428
58582529
60602630
التوصيل والإرجاع

الرياض، أبها، خميس مشيط: 1 - 2 أيام عمل

باقي مدن المملكة: 2-4 أيام عمل

الرجاء ملاحظة أنه في ظل ظروف استثنائية، قد يتأثر وقت التوصيل. سيخبركم فريق خدمة العملاء لدينا بأي تأخير قد يحدث.

خيارات الدفع
`; target.insertAdjacentHTML('beforeend', html); const moveSallaPayments = setInterval(() => { const paymentSection = document.querySelector("salla-payments"); const paymentContentContainer = document.querySelector('.payment-content'); if (paymentSection && paymentContentContainer) { paymentContentContainer.appendChild(paymentSection); paymentSection.classList.remove('hidden'); paymentSection.style.display = 'block'; clearInterval(moveSallaPayments); } }, 300); } }); document.addEventListener('click', function (e) { if (e.target.tagName === 'SUMMARY' && e.target.closest('.accordion-group')) { const current = e.target.closest('.accordion-group'); document.querySelectorAll('.accordion-group').forEach(item => { if (item !== current && item.hasAttribute('open')) { item.removeAttribute('open'); } }); } });