/** Shopify CDN: Minification failed

Line 171:0 Expected "}" to go with "{"

**/
.mega-menu {
  position: static;
}

.mega-menu__content {
  background-color: rgb(var(--color-background));
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  left: 0;
  overflow-y: auto;
  padding-bottom: 3rem;
  padding-top: 3rem;
  position: absolute;
  right: 0;
  top: 100%;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shopify-section-header-sticky .mega-menu__content {
  max-height: calc(100vh - var(--header-bottom-position-desktop, 20rem) - 4rem);
}

.header-wrapper--border-bottom .mega-menu__content {
  border-top: 0;
}

details.mega-menu[open] .mega-menu__content {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Reset mega menu content when closed */
details.mega-menu:not([open]) .mega-menu__content {
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* FadeInUp animation keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-menu__list {
  display: grid;
  gap: 1.8rem 4rem;
  grid-template-columns: repeat(6, minmax(auto, 1fr));
  list-style: none;
}

.mega-menu__link {
  color: rgba(var(--color-foreground), 0.75);
  display: block;
  line-height: calc(1 + 0.3 / var(--font-body-scale));
  padding-bottom: 0.3rem;
  padding-top: 0.3rem;
  font-size: 1.6rem;
  text-decoration: none;
  transition: color var(--duration-short) ease;
  word-wrap: break-word;
  position: relative;
}

.mega-menu__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgb(var(--color-foreground));
  transition: width 0.3s ease;
}

.mega-menu__link:hover::after {
  width: 100%;
}

.mega-menu__link--level-2 {
  font-weight: bold;
}

.header--top-center .mega-menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 0;
}

.header--top-center .mega-menu__list > li {
  width: 16%;
  padding-right: 2.4rem;
}

.mega-menu__link:hover,
.mega-menu__link--active {
  color: rgb(var(--color-foreground));
}

.mega-menu__link--active::after {
  width: 100%;
}

.mega-menu__heading {
  position: relative;
  text-decoration: none;
}

.mega-menu__heading::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgb(var(--color-foreground));
  transition: width 0.3s ease;
}

.mega-menu__heading:hover::after {
  width: 100%;
}

.mega-menu .mega-menu__list--condensed {
  display: block;
}

.mega-menu__list--condensed .mega-menu__link {
  font-weight: normal;
mega-menu__list--condensed .mega-menu__link {
  font-weight: normal;
}

/* Fix: constrain mega menu to nav item width */
.mega-menu__content {
  left: auto !important;
  right: auto !important;
  width: auto !important;
  min-width: 200px !important;
  max-width: 320px !important;
}

/* Pin header icons to bottom-right of header, level with nav */
.header-wrapper {
  position: relative !important;
}

.header__icons {
  position: absolute !important;
  bottom: 0.8rem !important;
  right: 2rem !important;
  align-items: center !important;
}

