/**
* Theme Name: Helo Child
* Description: This is a child theme of Helo
* Author: <a href="http://themeforest.net/user/crowdytheme">CrowdyTheme</a>
* Template: helo
* Version: 1.0.0
*/


.mega-menu-container {
  background: red !important;
}


.mega-menu-container {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 99;
}

.menu-item.has-mega-menu:hover .mega-menu-container {
  display: block;
}

.mega-menu-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.mega-menu-content {
  display: flex;
  gap: 2rem;
}

.mega-menu-left {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.mega-menu-item {
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 8px;
}

.mega-menu-item-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.mega-menu-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.mega-menu-right {
  flex: 1;
}

.mega-menu-right img {
  max-width: 100%;
  height: auto;
  display: block;
}
