document.addEventListener("DOMContentLoaded", function () { const tabBtn = document.querySelector('.more-info-tabs__nav-link.mobile[data-id="reviews"]'); const tabContent = document.querySelector('#reviews'); if (tabBtn && tabContent) { tabBtn.classList.add("active"); tabContent.classList.add("show", "active"); tabContent.style.display = "block"; } }); document.addEventListener("DOMContentLoaded", function () { const target = document.querySelector("#product-form > salla-product-options > salla-conditional-fields"); if (target) { const html = `
جدول مقاسات الفساتين
المقاس الصدر الخصر الأرداف
S322636
M342838
L363040
XL383242
XXL403444
XXXL423646
`; // ندرجه أسفل كل الأكوردينات الحالية target.insertAdjacentHTML("beforeend", html); // نفس حركة الفتح/الإغلاق document.querySelectorAll(".accordion-title").forEach((title) => { title.addEventListener("click", () => { const parent = title.closest(".accordion-group"); const isOpen = parent.classList.contains("open"); document .querySelectorAll(".accordion-group") .forEach((g) => g.classList.remove("open")); if (!isOpen) parent.classList.add("open"); }); }); } });