/* MA5MENU SORUN DÜZELTMESİ YENİDEN YAPILDI */

/* ::before overlay'ini devre dışı bırak */
.ma5menu--left::before,
.ma5menu--right::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

/* Responsive uyum için sadece gereken yerlerde override */
@media (max-width: 1360px) {
    .ma5menu__container {
        position: relative !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
        background: transparent !important;
        box-shadow: none !important;
    }
}

/* Normal genişlikte çalışmasını bozma */
@media (min-width: 1361px) {
    .ma5menu__container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: #fff;
        z-index: 10000;
    }
}

/* Mobil görünüm için: menü gizli başlayacak */
@media (max-width: 767px) {
    .ma5menu__container {
        display: none;
    }
    .ma5menu.active .ma5menu__container {
        display: block !important;
        position: fixed !important;
        height: 100% !important;
        width: 100% !important;
        top: 0;
        left: 0;
        background: #fff;
        overflow-y: auto;
        z-index: 10000;
    }
}

/* Panel davranışı */
.ma5menu__panel {
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
}

body.ma5menu-open {
    overflow: hidden;
}

.ma5menu {
    max-width: 100%;
    overflow-x: hidden;
}
