/* Wansen PPF — Local FontAwesome 6.x Icons (Subset: WhatsApp + Solid Icons) */
/* Only essential icons used on Wansen site are bundled to minimize footprint */

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: local('Font Awesome 6 Brands Regular'), local('FontAwesome6Brands-Regular'),
         url('../icons/fa-brands-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: local('Font Awesome 6 Free Solid'), local('FontAwesome6Free-Solid'),
         url('../icons/fa-solid-900.ttf') format('truetype');
}

/* WhatsApp — brand icon (fabs) */
.fa-whatsapp::before {
    font-family: 'Font Awesome 6 Brands' !important;
    content: '\f232';
}

/* All solid icons — use fas fallback */
[class*='fa-']::before {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900;
}

/* Specific overrides for brand icons */
.fab {
    font-family: 'Font Awesome 6 Brands' !important;
}

.fas {
    font-family: 'Font Awesome 6 Free' !important;
}

.fa-solid-900 {
    font-family: 'Font Awesome 6 Free' !important;
}

.fab::before {
    font-family: 'Font Awesome 6 Brands' !important;
}