عربة التسوق

هل تريد بدء عربة جديدة؟

عربة التسوق الخاصة بك تحتوي بالفعل على عناصر من FoonFood

هل ترغب في مسح سلة التسوق؟

🌸 أهلًا وسهلًا عزيزي
يسعدني وجودك، كيف أقدر أخدمك اليوم بكل سرور

// التمرير السلس عند الضغط على تصنيفات المنيو document.querySelectorAll('.category-tab').forEach(tab => { tab.addEventListener('click', function(e) { e.preventDefault(); const targetId = this.getAttribute('href'); const targetSection = document.querySelector(targetId); if (targetSection) { targetSection.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }); }); // تغيير الحالة النشطة للتصنيف أثناء نزول الشاشة (Scroll Spy) window.addEventListener('scroll', () => { let fromTop = window.scrollY + 120; // إزاحة لضبط دقة الاختيار document.querySelectorAll('.menu-section').forEach(section => { let link = document.querySelector(`.category-tab[href="#${section.id}"]`); if (link) { if (section.offsetTop <= fromTop && section.offsetTop + section.offsetHeight > fromTop) { link.classList.add('active'); } else { link.classList.remove('active'); } } }); });