/** Shopify CDN: Minification failed

Line 315:18 Expected identifier but found whitespace
Line 315:28 Unexpected ";"

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

/* NEW Badge on Menu Item */
.header__menu-title {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.menu-badge-new {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #555555;
  color: #ffffff;
  font-size: 9px;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
  pointer-events: none;
}

.menu-badge-new::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 3px 3px 0 3px;
  border-style: solid;
  border-color: #555555 transparent transparent transparent;
}

/* Mega Menu Dropdown Container */
.mega-menu__content {
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  left: 0;
  right: 0;
  top: 100%;
  position: absolute;
  padding: 2.2rem 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

/* Invisible bridge to prevent mouseleave when moving cursor down to dropdown */
.mega-menu__content::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background: transparent;
  pointer-events: auto;
}

/* Hover & Open state on Desktop */
@media screen and (min-width: 990px) {
  header-menu:hover .mega-menu__content,
  .mega-menu:hover .mega-menu__content,
  .mega-menu__content:hover,
  .mega-menu[open] .mega-menu__content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.mega-menu__inner {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Left: Navigation Sublinks Horizontal Grid Columns */
.mega-menu__nav-columns {
  display: flex !important;
  flex-direction: row !important;
  gap: 2.5rem 4.5rem !important;
  flex: 1 !important;
  padding-top: 0.5rem;
  align-items: flex-start;
}

.mega-menu__column {
  display: flex !important;
  flex-direction: column !important;
  min-width: 170px !important;
  flex: 0 0 auto !important;
}

.mega-menu__heading {
  font-family: var(--font-heading-family), Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #333333 !important;
  margin-bottom: 1.2rem;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

.mega-menu__heading:hover {
  color: #b58838 !important;
}

.mega-menu__child-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-menu__child-list li {
  margin-bottom: 0.8rem !important;
}

.mega-menu__child-list li:last-child {
  margin-bottom: 0 !important;
}

.mega-menu__child-list .mega-menu__link {
  font-family: var(--font-body-family), sans-serif;
  font-size: 1.4rem;
  color: #666666 !important;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
  display: inline-block;
}

.mega-menu__child-list .mega-menu__link:hover {
  color: #b58838 !important;
}

.mega-menu__link--highlight {
  color: #b58838 !important;
  font-weight: 600;
}

.mega-menu__link--level-2 {
  font-family: var(--font-heading-family), Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000000 !important;
  margin-bottom: 1rem;
}

/* Right: 3 Featured Image Banners */
.mega-menu__promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  flex: 1 1 62%;
}

.mega-menu__promo-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  display: block;
  aspect-ratio: 1.35;
  background-color: #f5f5f5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mega-menu__promo-image-wrap {
  width: 100%;
  height: 100%;
}

.mega-menu__promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mega-menu__promo-card:hover .mega-menu__promo-image {
  transform: scale(1.06);
}

/* Dark translucent center box label */
.mega-menu__promo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  padding: 0.9rem 1.8rem;
  border-radius: 2px;
  text-align: center;
  transition: background 0.3s ease;
  white-space: nowrap;
  min-width: 130px;
}

.mega-menu__promo-card:hover .mega-menu__promo-overlay {
  background: rgba(0, 0, 0, 0.75);
}

.mega-menu__promo-title {
  font-family: var(--font-body-family), sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1200px) {
  .mega-menu__inner {
    gap: 2rem;
    padding: 0 2rem;
  }
  .mega-menu__nav-columns {
    gap: 2.5rem;
  }
}

/* Sub-menu Accordion / Interactive Dropdown */
.mega-menu__subdetails {
  margin-bottom: 0.4rem;
  border-bottom: none;
  padding-bottom: 0.2rem;
}

.mega-menu__subdetails summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  font-family: var(--font-heading-family), Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #000000 !important;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.mega-menu__subdetails summary::-webkit-details-marker {
  display: none;
}

.mega-menu__subdetails summary:hover {
  color: #b58838 !important;
}

.mega-menu__arrow {
  width: 10px;
  height: 6px;
  color: #222222;
  transition: transform 0.3s ease, color 0.3s ease;
  margin-left: 0.8rem;
  flex-shrink: 0;
}

.mega-menu__subdetails[open] .mega-menu__arrow {
  transform: rotate(180deg);
  color: #b58838;
}

.mega-menu__child-list {
  padding-left: 0.6rem;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  list-style: none;
  border-left: none;
}

.mega-menu__child-list li {
  margin-bottom: 0.4rem !important;
}

.mega-menu__child-list li:last-child {
  margin-bottom: 0 !important;
}

.mega-menu__child-list .mega-menu__link {
  font-size: 1.4rem;
  color: #333333 !important;
}

.mega-menu__child-list .mega-menu__link:hover {
  color: #b58838 !important;
  text-decoration: underline;
}
  text-decoration: underline;
}
