/* =============================================
   Scroll-triggered header search bar
   ============================================= */
.headerhide {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}
.headerhide.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   Header search form
   ============================================= */
.search-city-wrap {
  width: 250px;
}
.search-category-wrap {
  min-width: 250px;
}
.suggestions-dropdown {
  top: 100%;
  z-index: 999;
}
.searchBarBtn {
  border: none;
  background: none;
}

/* =============================================
   Mobile location select
   ============================================= */
.mobile-location-select {
  width: 303px;
}

/* =============================================
   Mega Menu
   ============================================= */
.mega-menu-li {
  position: static !important;
}
.mega-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 3px solid #fec201;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 24px 30px;
  z-index: 999;
  width: 100%;
}
.mega-menu.mega-open {
  display: flex;
}
.mega-menu .mega-col {
  flex: 1;
  padding: 0 15px;
  border-right: 1px solid #f0f0f0;
}
.mega-menu .mega-col:last-child {
  border-right: none;
}
.mega-menu .mega-col h6 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #041c2f;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #fec201;
}
.mega-menu .mega-col a {
  display: block;
  font-size: 13px;
  color: #444;
  padding: 5px 0;
  text-decoration: none;
  transition: color 0.2s;
}
.mega-menu .mega-col a:hover {
  color: #fec201;
  padding-left: 6px;
}
