document.addEventListener("DOMContentLoaded", function () { const slider = document.querySelector("div.product-single__slider"); if (!slider) return; const giftBanner = document.createElement("div"); giftBanner.className = "gift-banner"; giftBanner.innerText = "🎁 طرحة + نقاب هدية مع كل عباءة!"; slider.appendChild(giftBanner); // ✅ يضيفه داخل السلايدر وتحت الصور مباشرة }); document.addEventListener('DOMContentLoaded', function () { const target = document.querySelector("#single-product-details > div > div.tabs-wrapper"); if (target) { const html = `
📏 جدول المقاسات
المقاس طول العباية (إنش) العرض (إنش) الكم (إنش)
50502125
52522226
54542327
56562428
58582529
60602630
🚚 التوصيل والإرجاع

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

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

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

`; target.insertAdjacentHTML('afterend', html); const moveSallaPayments = setInterval(() => { const paymentSection = document.querySelector("div.main-content.mob\\:container.w-full.md\\:w-1\\/2.md\\:pb-16 > form > section.s-block.s-block--payment.container.details.\\!py-4"); 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'); } }); } });