/* Font Awesome Icon Fixes */
/* Ensure all Font Awesome classes work properly */

/* Base Font Awesome styles */
.fa, .fas, .far, .fal, .fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* Map Pro classes to Free classes for compatibility */
.fal {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

.far {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

.fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* Specific icon content fixes */
.fa-search:before { content: "\f002"; }
.fa-bars:before { content: "\f0c9"; }
.fa-times:before { content: "\f00d"; }
.fa-arrow-right:before { content: "\f061"; }
.fa-chevron-up:before { content: "\f077"; }
.fa-chevron-down:before { content: "\f078"; }
.fa-mouse:before { content: "\f8cc"; }
.fa-star:before { content: "\f005"; }
.fa-paper-plane:before { content: "\f1d8"; }
.fa-phone-alt:before { content: "\f879"; }
.fa-envelope:before { content: "\f0e0"; }
.fa-map-marker-alt:before { content: "\f3c5"; }

/* Social media icons */
.fa-facebook-f:before { content: "\f39e"; }
.fa-twitter:before { content: "\f099"; }
.fa-instagram:before { content: "\f16d"; }
.fa-youtube:before { content: "\f167"; }
.fa-linkedin:before { content: "\f08c"; }
.fa-dribbble:before { content: "\f17d"; }

/* Force icon display */
[class^="fa-"]:before,
[class*=" fa-"]:before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* Brand icons use brands font */
.fa-facebook-f:before,
.fa-twitter:before,
.fa-instagram:before,
.fa-youtube:before,
.fa-linkedin:before,
.fa-dribbble:before {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* Hide dropdown arrows in header navigation */
.ori-main-navigation-area .dropdown:after {
  display: none !important;
}

/* Also hide any other dropdown indicators */
.dropdown:after,
.dropdown::after {
  display: none !important;
}