/* 1. ربط خط كايرو (Cairo) - باستخدام المسارات المطلقة لضمان العمل */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/eg/e-gold-recovery/assets/fonts/Cairo-Regular.woff2') format('woff2'),
       url('/eg/e-gold-recovery/assets/fonts/cairo-regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/eg/e-gold-recovery/assets/fonts/Cairo-Bold.woff2') format('woff2'),
       url('/eg/e-gold-recovery/assets/fonts/cairo-bold.ttf') format('truetype');
}

/* 2. ربط أيقونات Font Awesome - حل مشكلة 410 نهائياً */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('/eg/e-gold-recovery/assets/fonts/fa-solid-900.woff2') format('woff2'),
       url('/eg/e-gold-recovery/assets/fonts/fa-solid-900.woff') format('woff'),
       url('/eg/e-gold-recovery/assets/fonts/fa-solid-900.ttf') format('truetype');
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/eg/e-gold-recovery/assets/fonts/fa-regular-400.woff2') format('woff2'),
       url('/eg/e-gold-recovery/assets/fonts/fa-regular-400.woff') format('woff'),
       url('/eg/e-gold-recovery/assets/fonts/fa-regular-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/eg/e-gold-recovery/assets/fonts/fa-brands-400.woff2') format('woff2'),
       url('/eg/e-gold-recovery/assets/fonts/fa-brands-400.woff') format('woff'),
       url('/eg/e-gold-recovery/assets/fonts/fa-brands-400.ttf') format('truetype');
}

/* 3. تطبيق الخط العام وتنسيق الأيقونات */
body {
    font-family: 'Cairo', sans-serif !important;
}

.fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* الأكواد الستة للأيقونات الأساسية */
.fa-home:before { content: "\f015"; }
.fa-facebook-f:before { content: "\f39e"; }
.fa-bars:before { content: "\f0c9"; }
.fa-xmark:before, .fa-times:before { content: "\f00d"; }

.fas, .fa-solid { font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.far, .fa-regular { font-family: 'Font Awesome 6 Free'; font-weight: 400; }
.fab, .fa-brands { font-family: 'Font Awesome 6 Brands'; font-weight: 400; }