document.addEventListener('click', function (e) {
const target = e.target;
// نحاول نلتقط أي زر فيه "أضف للسلة"
if (target && target.tagName === 'BUTTON' && target.textContent.includes('أضف للسلة')) {
setTimeout(() => {
if (!document.querySelector('#related-product-bar')) {
const bar = document.createElement('div');
bar.id = 'related-product-bar';
bar.style.cssText = `
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #111;
color: #fff;
padding: 15px;
text-align: center;
font-family: inherit;
z-index: 9999;
`;
bar.innerHTML = `
🖤 كثير من العملاء اشتروا هذا المنتج مع
غطاء حزام الأمان
شاهد الآن
`;
document.body.appendChild(bar);
}
}, 1200); // نأخره شوي عشان يتأكد من الإضافة
}
});