/**
 * Font Awesome Fix
 * يضمن ظهور أيقونات Font Awesome بشكل صحيح
 */

/* تحميل خطوط Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* قاعدة أساسية لجميع أيقونات Font Awesome */
.fa, .fas, .far, .fal, .fab,
i.fa, i.fas, i.far, i.fal, i.fab,
i[class*="fa-"],
span.fa, span.fas, span.far, span.fal, span.fab {
	font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
	font-style: normal !important;
	font-variant: normal !important;
	font-weight: 900 !important;
	text-rendering: auto !important;
	line-height: 1 !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	display: inline-block !important;
}

/* أيقونات Solid */
.fa-solid, .fas,
i.fa-solid, i.fas {
	font-family: "Font Awesome 6 Free" !important;
	font-weight: 900 !important;
}

/* أيقونات Regular */
.fa-regular, .far,
i.fa-regular, i.far {
	font-family: "Font Awesome 6 Free" !important;
	font-weight: 400 !important;
}

/* أيقونات Brands */
.fa-brands, .fab,
i.fa-brands, i.fab {
	font-family: "Font Awesome 6 Brands" !important;
	font-weight: 400 !important;
}

/* إلغاء أي تأثيرات من خط Cairo */
.fa::before, .fas::before, .far::before, .fal::before, .fab::before,
i.fa::before, i.fas::before, i.far::before, i.fal::before, i.fab::before {
	font-family: inherit !important;
}

/* التأكد من عدم تطبيق خط Cairo على الأيقونات */
* [class*="fa-"]::before {
	font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
}
