
.mega-menu {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-menu-items {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.menu-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 4px;
}

.menu-category:hover,
.menu-category.active {
  background: #f5f5f5;
  color: #000;
}

.menu-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.expanded-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-height: 70vh;
  overflow-y: auto;
}

.category-content {
  padding: 2rem 0;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.section-title.highlighted {
  color: #ff6b35;
}

.chevron-icon {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.submenu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu-items li {
  margin-bottom: 0.75rem;
}

.menu-link {
  color: #666;
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.menu-link:hover {
  color: #000;
}

.menu-link.cross-site {
  color: #0066cc;
}

.external-indicator {
  font-size: 0.75rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .main-menu-items {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .menu-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .expanded-menu {
    position: static;
    box-shadow: none;
  }
}
