/** Shopify CDN: Minification failed

Line 113:0 Unexpected "}"

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

.mega-menu__content {
  background-color: rgb(var(--color-background));
  border-left: 0;
  border-right: 0;
  border-bottom:0px;
  left: 0;
  overflow-y: auto;
  padding-bottom: 3rem;
  padding-top: 3rem;
  position: absolute;
  right: 0;
  top: 100%;
  margin:0 3em 0 3em;
  padding-inline: clamp(12px, 3vw, 24px);
  border-radius:0 0 8px 8px;
  box-shadow: 0px 1px 6px 1px rgba(115, 134, 144, 0.3) !important;
}

.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);
}
/* Start hidden/offset */
.mega-menu__content {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}


/* Be kind to motion-sensitive users */
@media (prefers-reduced-motion: reduce) {
  .mega-menu__content {
    transition: none;
    transform: none;
  }
}

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

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

.mega-menu__link--level-2 {
  font-weight: bold;
  font-size: 1.3em;
  font-family:var(--font-heading-family);
}

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

ul.mega-menu__list {
    padding-inline-start: 0px !important;
}

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

.mega-menu__link:hover,
.mega-menu__link--active {
  color: rgb(var(--color-foreground), 0.75);
  text-decoration: underline;
  text-decoration-color: #f58220;
  text-underline-offset: 0.3rem;
  transition: text-decoration var(--duration-short) ease;
}


}

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

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

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


/* Featured image layout for Dawn 15.4 mega menu */
.mega__grid { display: grid; grid-template-columns: 3fr 1fr; gap: 24px; }
/* Make the image column a fixed, reasonable width */
.mega__grid {
  /* left grows, right stays between 220–340px */
  grid-template-columns: 1fr clamp(220px, 24vw, 340px);
}
.mega__feature { align-self: start; min-height: 220px; }
/* Ensure the image fits the column neatly */
.mega__feature { justify-self: end; }
.mega__feature img { width: 100%; height: auto; display: block; border-radius:5px;}
.mega__feature-link { display: block; text-decoration: none;}
.mega__feature-text { margin-top: 8px; display: grid; gap: 4px; }




/* Keep the inner container aligned to your site width */
.mega-menu__content .page-width {
  max-width: var(--page-width);
  margin-inline: auto;
}




.mega__feature-heading { 
  font-family: "meno-banner", serif; 
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  font-size: ;
  color: rgb(var(--color-foreground));
  max-width: 36ch;  }

.mega__feature-subtext { 
  font-family: "acumin-pro", sans-serif;
    font-family: var(--font-body-family);
  font-weight: var(--font-body-weight);
  font-size: ;
  color: rgb(var(--color-foreground));
  max-width: 36ch;  }

@media (max-width: 989px){
  .mega__grid { grid-template-columns: 1fr; }
}


/* Give links more room vs image */
.mega__grid { grid-template-columns: 4fr 1fr; } /* was 3fr 1fr */

/* Force a fixed number of link columns inside the left side */
.mega-menu__content .mega-menu__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* ← 3 columns */
  gap: 16px 24px;
}

/* If Dawn adds --condensed, override it to fewer columns on narrow screens */
.mega-menu__content .mega-menu__list--condensed {
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* ← 2 columns when “condensed” */
}

/* Optional: widen columns on very wide screens only if needed */
@media (min-width: 1400px){
  .mega-menu__content .mega-menu__list {
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* only on big screens */
  }
}

/* Mobile stays stacked */
@media (max-width: 989px){
  .mega__grid { grid-template-columns: 1fr; }
  .mega-menu__content .mega-menu__list {
    grid-template-columns: 1fr;
  }
}

/* Image under each first-level child heading, if set */
.mega-child-image { margin: 8px 0 10px; }
.mega-child-image img { width: 100%; height: auto; display: block; border-radius: 6px; }
.mega-child-image__link { display: block; text-decoration: none; }

