/* Font Awesome Icons - Local Version */
/* Only includes icons used on the site */

/* Base styles */
.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Times (X) icon */
.fa-times:before {
    content: "\f00d";
}

/* Star icon */
.fa-star:before {
    content: "\f005";
}

/* Star half alt icon */
.fa-star-half-alt:before {
    content: "\f5c0";
}

/* Quote left icon */
.fa-quote-left:before {
    content: "\f10d";
}

/* Chevron down icon */
.fa-chevron-down:before {
    content: "\f078";
}

/* Exclamation triangle icon */
.fa-exclamation-triangle:before {
    content: "\f071";
}

/* Font Awesome font files would need to be downloaded and hosted locally */
/* For now, we'll use Unicode symbols as fallback */

/* Fallback Unicode symbols */
.fa-times:before {
    content: "✕";
}

.fa-star:before {
    content: "★";
}

.fa-star-half-alt:before {
    content: "☆";
}

.fa-quote-left:before {
    content: """;
}

.fa-chevron-down:before {
    content: "▼";
}

.fa-exclamation-triangle:before {
    content: "⚠";
}
