/** Shopify CDN: Minification failed

Line 104:0 Unexpected "}"

**/
/* =========================
   CF Mega Grid Overrides
   Load this LAST (high specificity + !important)
   ========================= */

/* Base grid (only effective when inline nav is visible) */
header .cf-mega-grid,
.cf-mega-grid,
.mega-menu__content .cf-mega-grid,
.mega-menu__list.cf-mega-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px !important;
  padding: 24px !important;
  box-sizing: border-box !important;
  align-items: start !important;
}

/* Grid cells */
header .cf-mega-grid > li,
.cf-mega-grid > li,
.mega-menu__list.cf-mega-grid > li {
  list-style: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: center !important;
}

/* Tile layout */
.cf-mega-link,
.mega-menu__list.cf-mega-grid > li > a {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

/* Images */
.cf-mega-img,
.mega-menu-image,
.mega-menu__list.cf-mega-grid img {
  width: 100% !important;
  max-width: 160px !important;
  height: auto !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  margin: 0 auto 8px auto !important;
  display: block !important;
}

/* Title */
.cf-mega-title,
.mega-menu-title {
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
}

/* nested ULs (grandchildren) should span full width of grid */
.cf-mega-grid > li > ul,
.mega-menu__list.cf-mega-grid > li > ul {
  grid-column: 1 / -1 !important;
  margin-top: 8px !important;
  padding-left: 0 !important;
  display: block !important;
}

/* ---------- Responsive breakpoints ----------
   NOTE: grid only applies while inline nav is visible.
   We collapse to hamburger at <=1024px.
   ---------- */

/* Desktop: 1200px+ -> 4 columns */
@media (min-width: 1200px) {
  .cf-mega-grid { grid-template-columns: repeat(5, 1fr) !important; gap: 20px !important; padding: 20px !important; }
  .cf-mega-img { max-width: 160px !important; }
}

/* Large tablets / small desktop: 1025px–1199px -> 3 columns */
@media (min-width: 1025px) and (max-width: 1199px) {
  .cf-mega-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 22px !important; padding: 22px !important; }
  .cf-mega-img { max-width: 140px !important; }
}

/* NOTE: we collapse inline nav to hamburger at <=1024px.
   If you prefer a 2-column expanded mega on tablets, change the max-width here.
*/


  /* If mega menu is still visible inside a drawer, show 2 columns there */
  .cf-mega-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 16px !important;
  }

  .cf-mega-img { max-width: 120px !important; }
}

/* Mobile: < 740px -> 1 column, image left + text right (thumb friendly) */
@media (max-width: 739px) {
  .cf-mega-grid { grid-template-columns: 1fr !important; gap: 12px !important; padding: 12px !important; }
  .cf-mega-grid > li { text-align: left !important; }
  .cf-mega-grid > li > a,
  .cf-mega-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .cf-mega-img { width: 64px !important; height: 64px !important; max-width: 64px !important; border-radius: 6px !important; margin: 0 !important; }
  .cf-mega-title { font-size: 15px !important; text-align: left !important; }
}

/* Safety: if any theme pseudo-underline etc remains, preserve our no-underline/bold rule */
.header__menu-item > a:hover,
.header__menu-item > summary:hover,
.header__active-menu-item,
.header__menu-item a.is-active {
  text-decoration: none !important;
  border-bottom: none !important;
  font-weight: 700 !important;
}
