    #fg-main-menu {
      background-color: #fff;
      width: 100%;
    }

    /* Inner container for content constraint */
    .fg-menu-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1rem;
    }

    .fg-menu-logo a {
      display: flex;
      align-items: center;
      height: 64px;
    }

    .fg-menu-logo svg {
      height: 60px;
      width: auto;
      display: block;
    }

    .fg-nav-inner {
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .fg-menu {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .fg-menu li {
      position: relative;
    }

    .fg-menu li a {
      display: inline-flex;
      align-items: center;
      padding: 1rem;
      color: #000;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      background-color: #fff !important;
    }

    .fg-menu li a:hover {
      color: #1077d3;
    }

    .fg-special-offers {
      color: #f58220 !important;
    }

    .fg-has-submenu {
      position: relative;
    }

    .fg-submenu {
      position: absolute;
      top: calc(100% + 1px);
      left: 0;
      background-color: #fff !important;
      border: 1px solid #ddd;
      border-bottom: none;
      border-radius: 16px;
      padding: 1rem;
      list-style: none;
      margin: 0;
      z-index: 10;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 16px 32px rgba(0, 0, 0, 0.2);
      min-width: 240px;

      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      pointer-events: none;
    }

    .fg-submenu.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .fg-submenu.hidden {
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
    }

    .fg-submenu::before {
      content: "";
      position: absolute;
      top: -8px;
      left: 30px;
      width: 16px;
      height: 16px;
      background: #fff;
      border-left: 1px solid #ddd;
      border-top: 1px solid #ddd;
      transform: rotate(45deg);
      box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.05);
    }

    .fg-submenu li a {
      padding: 0.6rem 1rem;
      display: block;
      white-space: nowrap;
      color: #686868;
      font-weight: 600;
    }

    .fg-caret-icon {
      width: 10px;
      height: 10px;
      margin-left: 4px;
      transition: transform 0.3s ease;
      transform: rotate(0deg);
    }

    .fg-has-submenu.open .fg-caret-icon {
      transform: rotate(90deg);
    }

    .fg-top-bar-right ul {
      display: flex;
      align-items: center;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .fg-profile-icon {
      width: 36px;
      height: 36px;
      background-color: #fff !important;
      border: 2px solid #f58220;
      border-radius: 50%;
      object-fit: cover;
    }

    .fg-menu li:hover,
    .fg-menu li a:hover,
    .fg-menu li a:focus,
    .fg-menu li a:active {
      background-color: transparent !important;
      box-shadow: none !important;
      outline: none !important;
    }

    .fg-menu li a:hover {
      background-color: #fff !important;
    }

    .fg-menu-stuck {
      box-shadow: 0 6px 8px -4px rgba(0, 0, 0, 0.25);
    }