/* custom-fontawesome.css - Sadece kullanılan Font Awesome ikonları */
/* Font Awesome 6.4.0 özel derleme - Boyut: ~4KB (orijinal 18KB) */

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/fonts/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('/fonts/fa-brands-400.woff2') format('woff2');
}

.fas,
.far,
.fa-solid {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.fab,
.fa-brands {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
}

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

/* ANA İKONLAR */
.fa-compass:before { content: "\f14e"; }
.fa-headphones:before { content: "\f025"; }
.fa-shopping-cart:before { content: "\f07a"; }
.fa-check-circle:before { content: "\f058"; }
.fa-landmark:before { content: "\f66f"; }
.fa-home:before { content: "\f015"; }
.fa-sync-alt:before { content: "\f2f1"; }
.fa-sign-out-alt:before { content: "\f2f5"; }
.fa-globe:before { content: "\f0ac"; }
.fa-chevron-down:before { content: "\f078"; }
.fa-times:before { content: "\f00d"; }
.fa-bars:before { content: "\f0c9"; }
.fa-phone:before { content: "\f095"; }
.fa-link:before { content: "\f0c1"; }
.fa-whatsapp:before { content: "\f232"; }
.fa-info-circle:before { content: "\f05a"; }
.fa-hourglass-half:before { content: "\f252"; }
.fa-language:before { content: "\f1ab"; }
.fa-wifi:before { content: "\f1eb"; }
.fa-database:before { content: "\f1c0"; }
.fa-list-music:before { content: "\f8c9"; }
.fa-backward-step:before { content: "\f048"; }
.fa-forward-step:before { content: "\f051"; }
.fa-play:before { content: "\f04b"; }
.fa-pause:before { content: "\f04c"; }
.fa-repeat:before { content: "\f363"; }
.fa-backward:before { content: "\f04a"; }
.fa-forward:before { content: "\f04e"; }
.fa-check:before { content: "\f00c"; }
.fa-spinner:before { content: "\f110"; }
.fa-exclamation-triangle:before { content: "\f071"; }

/* EK İKONLAR (Admin panel ve diğer alanlar için) */
.fa-ticket-alt:before { content: "\f3ff"; }
.fa-qrcode:before { content: "\f029"; }
.fa-store:before { content: "\f54e"; }
.fa-lock:before { content: "\f023"; }
.fa-shield-alt:before { content: "\f3ed"; }
.fa-chart-line:before { content: "\f201"; }
.fa-users:before { content: "\f0c0"; }
.fa-calendar-day:before { content: "\f783"; }
.fa-user-tie:before { content: "\f508"; }
.fa-history:before { content: "\f1da"; }
.fa-edit:before { content: "\f044"; }
.fa-trash:before { content: "\f1f8"; }
.fa-upload:before { content: "\f093"; }
.fa-save:before { content: "\f0c7"; }
.fa-plus-circle:before { content: "\f055"; }
.fa-eye:before { content: "\f06e"; }
.fa-comment-dots:before { content: "\f4ad"; }
.fa-tachometer-alt:before { content: "\f3fd"; }

/* Dönüşümler ve yardımcı sınıflar */
.fa-spin {
    animation: fa-spin 2s infinite linear;
}
@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}