.hm-2211-wrapper {
    position: relative;
    display: inline-block;
}

.hm-2211-toggle {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}

.hm-2211-toggle span {
    display: block;
    height: 15%;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hm-2211-toggle.open span:nth-child(1) {
    transform: translateY(250%) rotate(45deg);
}

.hm-2211-toggle.open span:nth-child(2) {
    opacity: 0;
}

.hm-2211-toggle.open span:nth-child(3) {
    transform: translateY(-250%) rotate(-45deg);
}

.hm-2211-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9;
}

.hm-2211-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hm-2211-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hm-2211-nav li {
    border-bottom: 1px solid #eee;
}

.hm-2211-nav li:last-child {
    border-bottom: none;
}

.hm-2211-nav a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.hm-2211-nav a:hover {
    background: #f9f9f9;
}