.emm-menu-wrapper {
    position: relative;
    z-index: 1000;
}

.emm-closed-state {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10000;
}

.emm-toggle-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.emm-icon-strip {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 1.5rem;
}

.emm-icon-link {
    color: #333;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
}

.emm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5); /* kann überschrieben werden */
    z-index: 9999;
    padding: 3rem 1rem;
    overflow-y: auto;
}

.emm-overlay.active {
    display: block;
}

.emm-menu {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
}


.emm-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.emm-menu li {
    margin-bottom: 1rem;
}

.emm-menu a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emm-submenu {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.emm-submenu li a {
    font-size: 16px;
    opacity: 0.85;
}

.elementor-widget-emm_mobile_menu {
    width: 100%;
    margin: 0;
    padding: 0;
}

.emm-closed-state {
    position: fixed !important;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10000;
}
