/* icons.css - بديل last_font.css */

/* 1. تعريف خطوط الأيقونات الأساسية (Solid) */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/fa-solid-900.woff2") format("woff2");
}

/* 2. تعريف خطوط الماركات (Brands - واتساب وفيسبوك) */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-brands-400.woff2") format("woff2");
}

/* 3. الإعدادات العامة للأيقونات */
.fa, .fas, .far, .fal, .fad, .fab {
  -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, .fas { font-family: "Font Awesome 5 Free"; font-weight: 900; }
.fab { font-family: "Font Awesome 5 Brands"; font-weight: 400; }

/* 4. تعريف الأيقونات المستخدمة في التمبليت */
/* قائمة الأيقونات الشائعة في قالبك */
.fa-search:before { content: "\f002"; }
.fa-heart:before { content: "\f004"; }
.fa-utensils:before { content: "\f2e7"; }
.fa-shopping-cart:before { content: "\f07a"; }
.fa-cart-plus:before { content: "\f217"; }
.fa-share-alt:before { content: "\f1e0"; }
.fa-phone:before { content: "\f095"; }
.fa-info-circle:before { content: "\f05a"; }
.fa-apple-alt:before { content: "\f5d1"; }
.fa-globe:before { content: "\f0ac"; }
.fa-bell:before { content: "\f0f3"; }

/* أيقونات التواصل الاجتماعي */
.fa-whatsapp:before { content: "\f232"; }
.fa-facebook-f:before { content: "\f39e"; }
.fa-twitter:before { content: "\f099"; }
.fa-instagram:before { content: "\f16d"; }
.fa-tiktok:before { content: "\e07b"; }
.fa-telegram-plane:before { content: "\f3fe"; }

/* تحسينات للعرض */
.fa-spin { animation: fa-spin 2s infinite linear; }
@keyframes fa-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }