/* Font Awesome Fallback - Funktioniert auch ohne CDN */
.fas, .fab {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', monospace;
    font-weight: 900;
    font-display: swap;
    width: 1em;
    height: 1em;
    display: inline-block;
    text-align: center;
}

/* Wichtige Icons - inline definiert */
.fa-phone::before { content: '\f095'; }
.fa-whatsapp::before { content: '\f232'; }
.fa-info-circle::before { content: '\f05a'; }
.fa-star::before { content: '\f005'; }
.fa-star-half-alt::before { content: '\f5c0'; }
.fa-rocket::before { content: '\f135'; }
.fa-handshake::before { content: '\f2b5'; }
.fa-shield-alt::before { content: '\f3ed'; }
.fa-check-circle::before { content: '\f058'; }
.fa-shield::before { content: '\f132'; }
.fa-heart::before { content: '\f004'; }
.fa-external-link-alt::before { content: '\f35d'; }
.fa-google::before { content: '\f1a0'; }
.fa-hammer::before { content: '\f6e3'; }
.fa-map-marker-alt::before { content: '\f3c5'; }
.fa-truck::before { content: '\f0d1'; }
.fa-shipping-fast::before { content: '\f48b'; }
.fa-theater-masks::before { content: '\f630'; }
.fa-people-carry::before { content: '\f4ce'; }
.fa-broom::before { content: '\f51a'; }
.fa-seedling::before { content: '\f4d8'; }
.fa-store::before { content: '\f54e'; }
.fa-facebook-f::before { content: '\f39e'; }
.fa-instagram::before { content: '\f16d'; }
.fa-arrow-up::before { content: '\f062'; }
.fa-paper-plane::before { content: '\f1d8'; }
.fa-building::before { content: '\f1ad'; }
.fa-envelope::before { content: '\f0e0'; }
.fa-clock::before { content: '\f017'; }

/* Fallback für nicht-ladende Icons */
.fas::before, .fab::before {
    content: attr(data-icon);
    font-family: monospace;
}

/* Visual fallback wenn CDN nicht lädt */
@media (max-width: 0px) {
    .fas, .fab {
        background-color: #ffd700;
        border-radius: 50%;
        width: 1.2em;
        height: 1.2em;
        line-height: 1.2;
    }
}