/* ═══════════════════════════════════════════
   CUSTOM FONT AWESOME SUBSET
   Only includes icons used on yatesdinka.com
   Replaces full Font Awesome CDN (~100KB → ~5KB)
   ═══════════════════════════════════════════ */

/* Font display swap for faster rendering */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2') format('woff2');
}

/* Base icon styles */
.fa, .fas, .fab {
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.fas, .fa-solid { font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.fab, .fa-brands { font-family: 'Font Awesome 6 Brands'; font-weight: 400; }

/* Icon Unicode mappings (only used icons) */
.fa-anchor::before { content: "\f13d"; }
.fa-arrow-down::before { content: "\f063"; }
.fa-arrow-left::before { content: "\f060"; }
.fa-baby::before { content: "\f77c"; }
.fa-calculator::before { content: "\f1ec"; }
.fa-calendar-alt::before { content: "\f073"; }
.fa-calendar-check::before { content: "\f274"; }
.fa-check-circle::before { content: "\f058"; }
.fa-clock::before { content: "\f017"; }
.fa-credit-card::before { content: "\f09d"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-exclamation-triangle::before { content: "\f071"; }
.fa-external-link-alt::before { content: "\f35d"; }
.fa-facebook-f::before { content: "\f39e"; }
.fa-hand-holding-heart::before { content: "\f4be"; }
.fa-heart::before { content: "\f004"; }
.fa-info-circle::before { content: "\f05a"; }
.fa-instagram::before { content: "\f16d"; }
.fa-map-marker-alt::before { content: "\f3c5"; }
.fa-phone-alt::before { content: "\f879"; }
.fa-plus::before { content: "\2b"; }
.fa-receipt::before { content: "\f543"; }
.fa-search-plus::before { content: "\f00e"; }
.fa-shield-alt::before { content: "\f3ed"; }
.fa-ship::before { content: "\f21a"; }
.fa-spinner::before { content: "\f110"; }
.fa-spin { animation: fa-spin 2s infinite linear; }
.fa-star::before { content: "\f005"; }
.fa-star-half-alt::before { content: "\f5c0"; }
.fa-tag::before { content: "\f02b"; }
.fa-tiktok::before { content: "\e07b"; }
.fa-times::before { content: "\f00d"; }
.fa-trash::before { content: "\f1f8"; }
.fa-user::before { content: "\f007"; }
.fa-users::before { content: "\f0c0"; }
.fa-water::before { content: "\f773"; }
.fa-whatsapp::before { content: "\f232"; }

@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
