.hm-6d3f2447-nav {
    position: relative;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}
.hm-6d3f2447-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
.hm-6d3f2447-item {
    position: relative;
}
.hm-6d3f2447-item > a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px;
    transition: all 0.3s ease;
}
.hm-6d3f2447-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
/* Sub-menu styling */
.hm-6d3f2447-sub {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    background-color: #333;
    display: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 1;
    z-index: 99999;
    border: 0 solid transparent;
    border-top: none !important;
}
/* Bridge gap between parent and submenu to prevent hover drop off */
.hm-6d3f2447-sub::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}
.hm-6d3f2447-sub li a {
    display: block;
    padding: 5px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
/* Revert to pure CSS hover. Active class remains for JS clicks if needed. */
.hm-6d3f2447-item:hover .hm-6d3f2447-sub,
.hm-6d3f2447-item.is-active .hm-6d3f2447-sub {
    display: block;
}
