/** Shopify CDN: Minification failed

Line 60:0 Unexpected "}"
Line 90:0 Unexpected "}"
Line 128:0 Unexpected "="

**/
.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%;
}

.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;
}

.js .mega-menu__content {
  opacity: 0;
  transform: translateY(-1.5rem);
}

.mega-menu[open] .mega-menu__content {
  opacity: 1;
  transform: translateY(0);
}

.header--top-center .mega-menu__list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.8rem 2rem;
}

.mega-menu__list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0rem 0rem !important;
  justify-content: start !important;
  text-align: left !important;
  padding-left: 50px !important;
  margin-left: 0 !important;
    list-style: none !important;
}
}
.header--top-center .mega-menu__list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0rem 0rem !important;
  justify-content: start !important;
  margin-left: 0 !important;
  padding-left: 50px !important;
  list-style: none !important;
    grid-row-gap: 1.5rem !important;    /* vertical spacing (adjust as you like) */
  grid-column-gap: 0.5rem !important; /* <–– tighter horizontal spacing */
}

.mega-menu__link {
  font-size: 30px; /* adjust as needed, e.g., 1.25rem or 18px */
  color: rgba(var(--color-foreground), 0.75);
  display: block;
  line-height: 1.2;
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
  text-decoration: none;
  transition: text-decoration var(--duration-short) ease;
}

/* 3) If you have any per-item padding, you can tone that down too: */
.header--top-center .mega-menu__list > li {
  padding-right: 1rem; /* reduce from 2.4rem if needed */
  width: auto;         /* let grid size it automatically */
}

}


.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: black;
  text-decoration: underline;
}

.mega-menu__link--active:hover {
  text-decoration-thickness: 0.2rem;
}

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

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


============

}