/* Mobile Navigation Styles */
.aeda-mobile-menu {
    display: none !important;
}
@media (max-width: 1068px) {
    .aeda-mobile-menu {
        display: block !important;
    }

    .aeda-mobile-nav .main-nav ul li {
        float: none !important;
    }
    .main-nav {
        display: block !important;
    }
    #aeda-mobile-nav-button {
        display: block;
        z-index: 99999;
    }

    #aeda-mobile-nav-button {
        background: transparent;
        display: block;
        width: 40px;
        height: 40px;
        border: none;
        color: #112037;
        font-size: 16px;
        padding: 0;
        cursor: pointer;
        position: relative;
        margin-top: 0;
    }

    #aeda-mobile-nav-button:focus {
        outline: 2px solid #1c5694;
        outline-offset: 2px;
    }

    .aeda-mobile-nav-wrap {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: #fff;
        padding: 80px 20px 20px;
        transition: right 0.3s ease-in-out;
        z-index: 99999;
        overflow-y: auto;
    }

    .primary {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.65);
        z-index: 9999;
        overflow-y: auto;
        max-height: 1px;
        opacity: 0;
        visibility: hidden;
    }

    .mobile-menu-open.primary {
        right: 0;
        opacity: 1;
        visibility: visible;
        max-height: 100vh;
    }

    .mobile-menu-open.primary .aeda-mobile-nav-wrap {
        right: 0;
    }

    .mobile-menu-active {
        overflow: hidden;
    }

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

    .primary li {
        margin: 0;
        padding: 0;
    }

    .primary a {
        display: block;
        padding: 12px 15px;
        color: #112037;
        text-decoration: none;
        font-size: 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .primary a:hover,
    .primary a:focus {
        background: rgba(0, 0, 0, 0.05);
        outline: none;
    }

    .primary .sub-menu {
        padding-left: 20px;
    }

    .primary .sub-menu a {
        font-size: 16px;
    }

    /* Overlay when menu is open */
    .mobile-menu-active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
} 

@media screen and (max-width: 600px) {
    .aeda-mobile-nav-wrap {
        padding-top: 0;
        max-width: 76vw !important;
    }
}