.full-header {
  background: #89c540; /* màu xanh giống ảnh */
  position: relative;
  z-index: 1000;
  padding: 0 30px;
}
.inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo{
  width: 20%;
}

.header-logo img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}
.header-right {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.main-menu {
  width: 80%;
  text-align: center;
}
.main-menu .menu-list {
  display: inline-flex;
  gap: 40px;
}
.main-menu .menu-list li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
.header-icons {
  width: 20%;
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-icons a {
  color: #fff;
  font-size: 20px;
}
.header-icons img {
  height: 16px;
  width: auto;
}
.icon-item img{
  width: 22px;
  height: 22px;
}
/* Search Overlay */
.header-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  z-index: 9999;
}

.header-search-overlay.active {
  display: flex;
}

.header-search-overlay .searchform {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.header-search-overlay .search-field {
  width: 100%;
  padding: 12px 20px;
  font-size: 20px;
  border: none;
  outline: none;
  color: #555;
}

.header-search-overlay .search-submit {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #555;
  position: absolute;
  right: 40px;
}

.header-search-overlay .search-close {
  position: absolute;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}
#google_translate_element_kw {
  display: none !important;
}
#switch_lang_flag img {
  vertical-align: middle !important;
}
.header-icons-mobile {
  display: none;
}
@media only screen and (min-width: 1100px) {
  .full-header.sticky .main-menu {
    margin-top: 5px;
  }
  .full-header.sticky .header-search {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1200px) {
  .main-menu {
    float: right;
    margin-top: 0;
    margin-left: 0;
  }
  .header-search {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .full-header{
    height: auto;
  }
  .header-logo img {
    height: auto;
    max-width: 200px;
  }
}
@media only screen and (max-width: 900px) {
  .full-header{
    height: auto;
    padding: 0 10px;
  }
  .header-logo img{
    height: auto;
  }
  .header-right{
    justify-content: end;
    gap: unset;
  }
  .main-menu {
    width: 90px;
    margin-left: 10px;
    margin-bottom: 10px;
  }
  #mega-menu-wrap-max_mega_menu_1
    .mega-menu-toggle.mega-menu-open
    + #mega-menu-max_mega_menu_1 {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .header-icons{
    justify-content: end;
  }
  .header-icons .icon-item {
    display: none;
  }
  .icon-item.search-toggle {
    display: block !important;
  }
  #switch_lang_flag {
    display: none;
  }
  .header-icons-mobile {
    display: block;
  }
  .header-icons-mobile .header-icons {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
  }
  .header-icons-mobile .header-icons .icon-item {
    display: block;
  }
}
