/** Shopify CDN: Minification failed

Line 96:70 Unexpected "{"
Line 180:3 Expected ":"

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

/* Overlay styles **EVEN THOUGH THEY'RE NOT PART OF THIS COMPONENT, THEY SHOW UP WHEN OPEN** */
body .overlay__megamenu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  z-index: 2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0; /* Start with 0 opacity */
  visibility: hidden; /* Start hidden */
  transition: all 300ms ease;
}

/* Overlay visible when .is-visible is applied */
body .overlay__megamenu.is-visible {
  opacity: 1; /* Fully visible */
  visibility: visible; /* Make it visible */
}

.mega-menu__content {
  background-color: rgb(var(--color-background));
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  left: 0;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 100%;
  overflow: hidden;
  max-height: 60.622vh;
  min-height: 60.622vh;
  height: auto;
}

@media(max-width: 1440px) {
  .mega-menu__content {
    max-height: 70.622vh;
    min-height: 70.622vh;
  }
}

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

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

.mega-menu__child-links .mega-menu__link-wrapper,
.mega-menu__block {
  margin-bottom: 2.3rem;
}

.mega-menu__block .mega-menu__title {
  margin: 20px 0 0;
}

.mega-menu__link {
  color: rgba(var(--color-foreground), 0.75);
  display: block;
  line-height: calc(1 + 0.3 / var(--font-body-scale));
  text-decoration: none;
  word-wrap: break-word;
  margin-bottom: 2.3rem;
}

.mega-menu__link-wrapper .mega-menu__link--level-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu__link .mega-menu__title, 
.mega-menu__link-wrapper .mega-menu__link--level-2 .mega-menu__title, {
   transition: color 300ms ease-in-out;
}

.mega-menu__link:hover .mega-menu__title,
.mega-menu__link-wrapper .mega-menu__link--level-2:hover .mega-menu__title {
   color: #313037;
}

.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 {

}

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

/*** MEGA MENU ***/

.mega-menu__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.6rem;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  position: relative;
  width: 90%;
  max-width: var(--page-width);
  margin: 0 auto;
  gap: 40px;
}

.mega-menu__column {
  position: relative;
  text-align: center;
  padding: 3rem 1.5rem;
}

.mega-menu__image {
  overflow: hidden;
  position: relative;
}

.mega-menu__image img {
  width: 100%; 
  max-width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 0.6s ease-in-out;
}

.mega-menu__title {
  p
  margin: 0;
  font-size: 1.6rem !important;
  font-weight: 400;
  line-height: 2.8rem;
  text-align: left;
  color: #838387;
}

.mega-menu__block .mega-menu__title {
  font-size: 2rem;
  line-height: 2.8rem;
  text-align: center;
}

.mega-menu__overlay span {
  font-family: var(--font-heading-family);
  color: #fff;
  font-size: 32px; 
  font-weight: 400; 
  line-height: 52px;
  text-align: center;
  pointer-events: none; 
  z-index: 3;
}

.mega-menu__link {
  text-decoration: none;
  display: block;
  padding: 0;
}

/* Vertical Separator */
.mega-menu__column::after {
  display: block;
  content: '';
  width: 1px; 
  height: 100%; 
  background-color: #e0e0e0; /* Separator color */
  position: absolute;
  top: 0;
  right: -2rem; /* Position separator to the right of the column */
  z-index: 2;
}

.mega-menu__column:last-child::after {
  display: none; /* Hide the separator after the last column */
}

/* Bottom Separator */
.mega-menu__bottom-separator {
  width: 100%;
  height: 2px;
  background-color: #ccc;
  margin-top: 1.6rem;
}

.mega-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000075;
  opacity: 0; /* Hidden initially */
  display: flex; /* Enables centering of text */
  justify-content: center; /* Centers text horizontally */
  align-items: center; /* Centers text vertically */
  transition: opacity 0.6s ease-in-out; /* Smooth opacity transition */
  z-index: 2; /* Ensures overlay appears on top of the image */
}


/* Hover effect for the image and overlay */
.mega-menu__image:hover img {
  transform: scale(1.08); /* Slight zoom effect for the image */
}

.mega-menu__image:hover .mega-menu__overlay {
  opacity: 1; /* Makes the overlay fully visible */
}

.grandchild-panel {
 position: absolute;
}

.mega-menu__child-links .mega-menu__link-wrapper.active .mega-menu__title {
  color: #313037;
}

.mega-menu__child-links .mega-menu__link-wrapper svg {
  position: relative;
  transition: transform 250ms ease;
}

.mega-menu__child-links .mega-menu__link-wrapper.active svg {
  transform: translateX(10px);
}

.mega-menu__grandchild-links.scrollable {
  overflow-y: auto;
  overflow-x: hidden;
}

.grandchild-panel.scrollable::-webkit-scrollbar {
  width: 4px; 
}

.grandchild-panel.scrollable::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.grandchild-panel.scrollable::-webkit-scrollbar-thumb {
  background: #888;
}

.grandchild-panel.scrollable::-webkit-scrollbar-thumb:hover {
  background: #555;
}