/** Shopify CDN: Minification failed

Line 345:3 Unexpected "/"

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

.mega-menu__content {
  background: rgba(var(--color-background), 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  left: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1000;
  margin-top: 2px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.shopify-section-header-sticky .mega-menu__content {
  max-height: calc(100vh - var(--header-bottom-position-desktop, 20rem) - 4rem);
  overflow-y: auto;
}

.header-wrapper--border-bottom .mega-menu__content {
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

/* Smooth animations */
.js .mega-menu__content {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

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

/* Mega menu grid layout */
.mega-menu__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 2rem;
  min-height: 300px;
}

/* Column styling */
.mega-menu__list > li {
  padding: 1.5rem;
  border-right: 1px solid rgba(var(--color-foreground), 0.06);
  position: relative;
}

.mega-menu__list > li:last-child {
  border-right: none;
}

.mega-menu__list > li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    rgb(var(--color-base-accent-1)) 0%, 
    rgb(var(--color-base-accent-2)) 100%
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.mega-menu__list > li:hover::before {
  transform: scaleX(1);
}

/* Main category links (level 2) */
.mega-menu__link--level-2 {
  color: rgb(var(--color-foreground));
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  padding: 0.8rem 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.mega-menu__link--level-2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    rgb(var(--color-base-accent-1)) 0%, 
    rgb(var(--color-base-accent-2)) 100%
  );
  transition: width 0.3s ease;
}

.mega-menu__link--level-2:hover::after,
.mega-menu__link--level-2.mega-menu__link--active::after {
  width: 100%;
}

.mega-menu__link--level-2:hover {
  color: rgb(var(--color-base-accent-1));
  transform: translateX(4px);
}

/* Subcategory links */
.mega-menu__link {
  color: rgba(var(--color-foreground), 0.8);
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.6rem 0;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  border-radius: 6px;
  margin-bottom: 0.3rem;
}

.mega-menu__link:hover {
  color: rgb(var(--color-foreground));
  background: rgba(var(--color-base-accent-1), 0.08);
  padding-left: 1rem;
  transform: translateX(4px);
}

.mega-menu__link--active {
  color: rgb(var(--color-base-accent-1));
  font-weight: 500;
  background: rgba(var(--color-base-accent-1), 0.1);
  padding-left: 1rem;
}

/* Submenu lists */
.mega-menu__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Featured content area */
.mega-menu__featured {
  background: linear-gradient(135deg, 
    rgba(var(--color-base-accent-1), 0.1) 0%, 
    rgba(var(--color-base-accent-2), 0.05) 100%
  );
  border-radius: 8px;
  padding: 2rem;
  margin-top: 1rem;
  text-align: center;
}

.mega-menu__featured-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: rgb(var(--color-foreground));
}

.mega-menu__featured-text {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.mega-menu__featured-button {
  background: linear-gradient(135deg, 
    rgb(var(--color-base-accent-1)) 0%, 
    rgb(var(--color-base-accent-2)) 100%
  );
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.mega-menu__featured-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--color-base-accent-1), 0.3);
}

/* Icons for categories */
.mega-menu__icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.mega-menu__link--level-2:hover .mega-menu__icon {
  opacity: 1;
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
  .mega-menu__content {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

@media screen and (max-width: 990px) {
  .mega-menu__content {
    display: none;
  }
}

@media screen and (min-width: 990px) {
  .mega-menu__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Center alignment for top-center header */
.header--top-center .mega-menu__content {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 1200px;
}

.header--top-center .mega-menu[open] .mega-menu__content {
  transform: translateX(-50%) translateY(0) scale(1);
}

.header--top-center .js .mega-menu__content {
  transform: translateX(-50%) translateY(-20px) scale(0.95);
}

/* Condensed layout */
.mega-menu__list--condensed {
  display: block;
  columns: 3;
  column-gap: 3rem;
  column-fill: balance;
}

.mega-menu__list--condensed .mega-menu__link {
  break-inside: avoid;
  page-break-inside: avoid;
}

/* Loading state */
.mega-menu__content.loading {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-menu__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(var(--color-foreground), 0.1);
  border-top: 3px solid rgb(var(--color-base-accent-1));
  border-radius: 50%;
  animation: mega-menu-spin 1s linear infinite;
}

@keyframes mega-menu-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hover effects for the entire mega menu */
.mega-menu__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    rgb(var(--color-base-accent-1)) 0%, 
    rgba(var(--color-base-accent-1), 0) 50%,
    rgba(var(--color-base-accent-2), 0) 50%,
    rgb(var(--color-base-accent-2)) 100%
  );
  background-size: 200% 100%;
  animation: mega-menu-gradient 3s ease infinite;
}

@keyframes mega-menu-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Search highlight in mega menu */
.mega-menu__link.highlighted {
  background: rgba(var(--color-base-accent-1), 0.2);
  color: #F3F3F3;
  font-weight: 500;
}

/* Accessibility improvements */
.mega-menu__content:focus-within {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
              0 4px 12px rgba(0, 0, 0, 0.1),
              0 0 0 2px rgb(var(--color-base-accent-1));
}

.mega-menu__link:focus,
.mega-menu__link--level-2:focus {
  outline: 2px solid rgb(var(--color-base-accent-1));
  outline-offset: 2px;
  border-radius: 4px;
} */ */