document.addEventListener('DOMContentLoaded', function() {
// إنشاء السيكشن
const section = document.createElement('section');
section.className = 'stats-section';
section.innerHTML = `
1240
المستفيدين
607455
التبرعات
82
الحالات الانسانية
`;
/*----------------------stop------------*/
// إضافة CSS
const style = document.createElement('style');
style.textContent = `
.stats-section {
display: flex;
flex-direction: row;
gap: 16px;
padding: 24px 16px;
max-width: 1200px;
margin: 0 auto;
}
.stat-card {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #f5f5f5;
border-radius: 16px;
padding: 32px 16px;
gap: 12px;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.stat-card i {
font-size: 48px;
color: #1a3a5c;
}
.stat-card strong {
font-size: 32px;
font-weight: 700;
color: #1a3a5c;
}
.stat-card span {
font-size: 16px;
color: #888;
}
@media (max-width: 768px) {
.stats-section {
flex-direction: column;
}
}
`;
// إضافة الـ CSS للصفحة
document.head.appendChild(style);
// إضافة السيكشن قبل الفوتر
const footer = document.querySelector('footer');
if (footer) {
footer.parentNode.insertBefore(section, footer);
}
});
document.addEventListener('DOMContentLoaded', function() {
const aboutSection = document.querySelector('.about-store');
if (aboutSection) {
aboutSection.remove();
}
});
document.addEventListener('DOMContentLoaded', function() {
const contactsList = document.querySelector('.s-contacts-list');
if (contactsList) {
const addressSlot = document.createElement('div');
addressSlot.id = 'contact-slot';
addressSlot.innerHTML = `
طريق الملك خالد مقابل محطة الفرسان
`;
contactsList.appendChild(addressSlot);
}
});
document.addEventListener('DOMContentLoaded', function () {
setTimeout(function () {
const footerLogo = document.querySelector('.store-footer__top-area .footer-logo');
if (footerLogo) {
footerLogo.setAttribute('href', 'https://es.ncnp.gov.sa/clds/19157');
footerLogo.setAttribute('target', '_blank');
}
}, 2000);
});