.pei-hm-wrapper {
    position: relative;
    display: inline-block;
    z-index: 9999;
}

.pei-hm-align-right { float: right; }
.pei-hm-align-left { float: left; }
.pei-hm-align-center { display: block; text-align: center; }

.pei-hm-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.pei-hm-bar {
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: 0.2s ease;
}

.pei-hm-toggle.pei-hm-open .pei-hm-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.pei-hm-toggle.pei-hm-open .pei-hm-bar:nth-child(2) {
    opacity: 0;
}
.pei-hm-toggle.pei-hm-open .pei-hm-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.pei-hm-menu {
    position: absolute;
    top: 42px;
    right: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.pei-hm-items { list-style: none; margin: 0; padding: 0; }
.pei-hm-items li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
}
.pei-hm-items li a:hover { background: #f2f2f2; }
