.top-header-bmegamenu {
    display: inline-block;
    margin-left: 12px;
}
.top-header-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.top-header-item {
    position: relative;
}
.top-header-item>a {
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}
.top-header-item.has-dropdown>a {
    padding-right: 4px;
}
.top-header-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    list-style: none;
    padding: 6px 0;
    z-index: 1000;
}
.top-header-dropdown li a {
    display: block;
    padding: 6px 14px;
    font-size: 13px;
    text-decoration: none;
}
.top-header-item:hover .top-header-dropdown {
    display: block;
}