/** Shopify CDN: Minification failed

Line 117:1 Expected "}" to go with "{"

**/
/* DESKTOP NAV FIX: wrap menu + stable dropdowns */
@media screen and (min-width: 990px) {

  /* 1) Kill the "horizontal scroller" behavior so wrapping can happen */
  .header__links-primary-scroll-container,
  [data-scroll-container-viewport-wrap],
  [data-scroll-container-viewport]{
    overflow: visible !important;
  }

  /* 2) FORCE the UL to wrap (your theme uses header__links-list + fs-navigation-base) */
  ul.header__links-list,
  ul.header__links-list.fs-navigation-base{
    display: flex !important;
    flex-wrap: wrap !important;
    white-space: normal !important;
    gap: 8px 14px !important;         /* row / column spacing */
    justify-content: center !important; /* change to flex-start if you want left aligned */
  }

  /* Theme sometimes sets nowrap on the UL or parent */
  nav.header__links.header__links-primary,
  .header__links{
    height: auto !important;
    overflow: visible !important;
  }

  /* Let each LI behave normally */
  ul.header__links-list > li{
    flex: 0 1 auto !important;
  }

  /* Prevent link text from being forced to one line */
  .header__links-list > li > a,
  .header__links-list > li > button{
    white-space: normal !important;
  }

  /* 3) Dropdown: stop it drifting / keep it usable */
  ul.header__links-list > li[data-submenu-parent]{
    position: relative !important;
  }

  /* Anchor dropdown under the parent item (overrides inline left:###px) */
  ul.header__links-list > li[data-submenu-parent] .navigation__submenu-ff-body{
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    z-index: 9999 !important;
  }

  ul.header__links-list > li[data-submenu-parent] .navigation__submenu-ff-body[style]{
    left: 0 !important;
    right: auto !important;
    transform: none !important;
  }

  /* Hover bridge (prevents accidental switching to neighbors) */
  ul.header__links-list > li[data-submenu-parent]::after{
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: 100%;
    height: 18px;
    background: transparent;
  }

  /* Hide scroll arrows since we’re wrapping */
  .scroll-button,
  .scroll-overflow-indicator-wrap{
    display: none !important;
  }

  /* HARD FIX: force dropdowns to anchor to their parent li (theme currently positions them globally) */
@media screen and (min-width: 990px) {

  ul.header__links-list > li[data-submenu-parent]{
    position: relative !important;
  }

  /* Force submenu + any inner dropdown wrapper to be absolute, not fixed */
  ul.header__links-list > li[data-submenu-parent] .navigation__submenu-ff-body,
  ul.header__links-list > li[data-submenu-parent] .navigation__submenu-ff,
  ul.header__links-list > li[data-submenu-parent] .navigation__submenu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    margin: 0 !important;
    z-index: 99999 !important;
  }

  /* Override any inline left/top the theme injects */
  ul.header__links-list > li[data-submenu-parent] .navigation__submenu-ff-body[style],
  ul.header__links-list > li[data-submenu-parent] .navigation__submenu-ff[style],
  ul.header__links-list > li[data-submenu-parent] .navigation__submenu[style]{
    left: 0 !important;
    top: calc(100% + 10px) !important;
    transform: none !important;
  }

  /* Make the dropdown align nicely and not stretch weird */
  ul.header__links-list > li[data-submenu-parent] .navigation__submenu-ff-body{
    min-width: 220px;
    max-width: 340px;
  }

}