/* WP2Static — FontAwesome neutralizer (EchoPx fix)
   Original injected an FA6 layer (@font-face -> non-existent Avada paths) loaded
   after the theme's working Font Awesome -> icons rendered as tofu. Hand .fa* back. */
.fa,.fas,.far,.fab,.fa-solid,.fa-regular,.fa-brands,
[class^="fa-"],[class*=" fa-"]{
  font-family:"FontAwesome"!important;font-weight:normal!important;font-style:normal!important;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;line-height:1;
}

/* ── EchoPx fix: Avada duplicate (sticky) menu — site-wide ──
   Avada outputs a second .fusion-sticky-menu copy of the main menu that its
   dynamic stylesheet normally keeps hidden until scroll. That rule wasn't
   captured in the static export, so both menus showed on every page.
   This file is loaded in <head> on all pages, so the fix applies everywhere. */
.fusion-main-menu.fusion-sticky-menu{display:none !important;}
