.aiwest-dropdown-menu-wrap {
  position: relative;
  z-index: 100000100;
  margin: 18px 0 0;
  width: 100%;
  overflow: visible;
}

.aiwest-dropdown-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.aiwest-dropdown-menu > li {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.aiwest-dropdown-menu a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  border-radius: 999px;
}

.aiwest-dropdown-menu > li > a {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.aiwest-dropdown-menu > li:hover > a,
.aiwest-dropdown-menu > li:focus-within > a,
.aiwest-dropdown-menu > li.aiwest-menu-open > a {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.aiwest-dropdown-menu > li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.aiwest-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 560px;
  max-width: min(960px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 18px;
  z-index: 1000001;
}

.aiwest-dropdown-menu > li:hover > .aiwest-dropdown-panel,
.aiwest-dropdown-menu > li:focus-within > .aiwest-dropdown-panel,
.aiwest-dropdown-menu > li.aiwest-menu-open > .aiwest-dropdown-panel {
  display: grid;
}

.aiwest-dropdown-panel h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  margin: 0 0 8px;
}

.aiwest-dropdown-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aiwest-dropdown-panel li {
  margin: 0 0 6px;
  padding: 0;
}

.aiwest-dropdown-panel a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #334155;
  font-weight: 600;
}

.aiwest-dropdown-panel a:hover,
.aiwest-dropdown-panel a:focus {
  background: #eff6ff;
  color: #1d4ed8;
}

@media (max-width: 780px) {
  .aiwest-dropdown-menu {
    display: block;
  }

  .aiwest-dropdown-menu > li {
    margin-bottom: 8px;
  }

  .aiwest-dropdown-menu > li > a {
    width: 100%;
    justify-content: space-between;
  }

  .aiwest-dropdown-panel {
    position: static;
    min-width: 0;
    max-width: none;
    margin-top: 8px;
  }

  .aiwest-dropdown-menu > li .aiwest-dropdown-panel {
    display: grid;
  }
}
