.angie-mobile-menu-advanced-2813 {
    position: relative;
    display: inline-block;
}

/* Reset ul/li inside the menu ONLY to avoid conflicts */
.angie-mobile-menu-advanced-2813 ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.angie-mobile-menu-advanced-2813 li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure no focus outline on anything */
.angie-mobile-menu-advanced-2813 * {
    outline: none !important;
    box-shadow: none !important;
}
.angie-mobile-menu-advanced-2813 *:focus {
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent;
}

/* Trigger Button */
.asm-menu-btn-2813 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.asm-focus-outline-none:focus {
    outline: none !important;
}

/* Icons */
.asm-menu-btn-2813 svg,
.asm-action-btn-icon svg,
.asm-social-link svg {
    width: 1em;
    height: 1em;
    display: inline-block;
}
.asm-icon-mr {
    margin-right: 0.5rem;
}

/* Overlay */
.asm-mobile-menu-overlay-2813 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

/* Panel */
.asm-mobile-menu-panel-2813 {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100dvh;
    background-color: #ffffff; /* fallback */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    /* remove the shadow if that was interpreted as focus outline, else restore original shadow */
    box-shadow: -10px 0 30px rgba(0,0,0,0.1) !important;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Panel Header */
.asm-panel-header {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    border-bottom: 1px solid #f3f4f6;
    flex-shrink: 0;
}
.asm-panel-title {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
}
.asm-close-btn-2813 {
    font-size: 1.5rem;
    color: #9ca3af;
    padding: 0.5rem;
    margin-right: -0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}
.asm-close-btn-2813:hover {
    color: #333333;
}

/* Panel Nav Content */
.asm-panel-nav {
    flex: 1;
    padding: 1.5rem 1.25rem;
}
.asm-nav-wrapper {
    display: flex;
    flex-direction: column;
}
.asm-editor-note {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Menu Items */
.asm-menu-parent-item {
    border-bottom: 1px solid #f3f4f6;
}
.asm-menu-link {
    width: 100%;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    text-align: left;
    text-decoration: none;
}
.asm-menu-link:focus, .asm-accordion-btn:focus {
    background-color: transparent !important;
}

.asm-accordion-btn {
    width: 100%;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}
.asm-menu-link-parent {
    color: #333333;
    font-weight: 500;
}
.asm-menu-link-child {
    color: #4b5563;
    display: block; /* ensure block layout for children links if needed */
}

/* Submenu Container */
.asm-submenu-container {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

/* Panel Footer */
.asm-panel-footer {
    padding: 1.25rem;
    margin-top: auto;
    border-top: 1px solid #f3f4f6;
    flex-shrink: 0;
}

/* Buttons */
.asm-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.asm-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    background-color: #6A8259;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    /* Box shadow is acceptable here for normal button style, just overriding it globally */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}
.asm-action-btn:focus {
     box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}
.asm-action-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Socials */
.asm-social-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.asm-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.2s;
}