/* Add custom JS code below */ /** * Custom 3-Column Image Grid Section * Created for Ag Fashion House */ (function() { // Target the main container const mainElement = document.querySelector('.index main'); if (!mainElement) return; // Prevent duplicate insertion if script runs multiple times if (document.querySelector('.custom-image-grid-section')) return; // Create the section element const newSection = document.createElement('section'); newSection.className = 's-block custom-image-grid-section'; // Standard spacing and RTL support newSection.style.cssText = 'padding: 0; margin: 2rem 0; width: 100%; direction: rtl;'; const items = [ { img: 'https://i.ibb.co/HTmCcTYM/abayat.webp' , title: 'عبايات مناسبات', link: 'https://agfashionhouse.com/%D8%B9%D8%A8%D8%A7%D9%8A%D8%A7%D8%AA-%D9%85%D9%86%D8%A7%D8%B3%D8%A8%D8%A7%D8%AA/c1149473094' }, { img: 'https://i.ibb.co/9HWwCLxv/monasba.webp', link:'https://agfashionhouse.com/%D8%B9%D8%A8%D8%A7%D9%8A%D8%A7%D8%AA-%D9%83%D8%AC%D9%88%D8%A7%D9%84/c1595232084', title: 'عبايات كاجوال', }, { img: 'https://i.ibb.co/zHhY6RLN/fadyat.webp', title: 'فضيات', link: 'https://agfashionhouse.com/%D9%81%D8%B6%D9%8A%D8%A7%D8%AA/c1610702292' } ]; const gridHtml = `