.mn-804f3da3-wrapper {
    display: flex;
    width: 100%;
}
.mn-804f3da3-wrapper[style*="center"] {
    justify-content: center;
}
.mn-804f3da3-wrapper[style*="right"] {
    justify-content: flex-end;
}
.mn-804f3da3-wrapper[style*="left"] {
    justify-content: flex-start;
}

.mn-804f3da3-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    z-index: 100;
}

.mn-804f3da3-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
}

.mn-804f3da3-toggle-icon span {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mn-804f3da3-toggle-text {
    font-size: 16px;
    font-weight: 500;
}

.mn-804f3da3-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.5s ease, visibility 0.5s, transform 0.5s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-y: auto;
}
.mn-804f3da3-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mn-804f3da3-overlay-image {
    margin-bottom: 30px;
    max-width: 80%;
    text-align: center;
}
.mn-804f3da3-overlay-image img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
}

.mn-804f3da3-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

.mn-804f3da3-nav {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    padding-bottom: 50px;
}
.mn-804f3da3-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.mn-804f3da3-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: relative;
}
.mn-804f3da3-overlay.active .mn-804f3da3-menu > li {
    transform: translateY(0);
    opacity: 1;
}
.mn-804f3da3-menu li:last-child {
    border-bottom: none;
}
.mn-804f3da3-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: block;
    padding: 15px 0;
}
.mn-804f3da3-empty {
    color: #fff;
    text-align: center;
}

/* Submenu Styles */
.mn-804f3da3-menu .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mn-804f3da3-menu .menu-item-has-children > a::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}
.mn-804f3da3-menu .menu-item-has-children.open > a::after {
    content: '-';
}

.mn-804f3da3-menu .sub-menu {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
    display: none;
    background: rgba(255,255,255,0.05);
}
.mn-804f3da3-menu .menu-item-has-children.open > .sub-menu {
    display: block;
    animation: fadeInSubmenu 0.3s ease forwards;
}

.mn-804f3da3-menu .sub-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    opacity: 1;
    transform: none;
}
.mn-804f3da3-menu .sub-menu li:last-child {
    border-bottom: none;
}
.mn-804f3da3-menu .sub-menu a {
    font-size: 16px;
    padding: 12px 0;
    text-transform: none;
    font-weight: normal;
}

@keyframes fadeInSubmenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}