/* Mobile Menu CSS */
/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -350px;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
    visibility: hidden;
    opacity: 0;
    display: none !important;
}

.mobile-menu.active {
    left: 0;
    visibility: visible;
    opacity: 1;
    display: block !important;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header h5 {
    margin: 0;
    color: #495057;
    font-weight: 600;
}

.mobile-menu-header .btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #495057;
    cursor: pointer;
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid #e9ecef;
}

.mobile-menu-item > a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #495057;
    text-decoration: none;
    border-bottom: 1px solid #f8f9fa;
}

.mobile-menu-item > a:hover {
    background: #f8f9fa;
    color: #74788d;
}

.mobile-menu-item > a i {
    margin-right: 20px !important;
    width: 20px;
    flex-shrink: 0;
}

/* Ana Sayfa özel kural */
.mobile-menu-content > .mobile-menu-item:first-child > a > i {
    margin-right: 20px !important;
    display: inline-block !important;
    min-width: 20px !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    color: #495057;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #e9ecef;
}

.mobile-menu-toggle:hover {
    background: #f8f9fa;
}

.mobile-menu-toggle i:first-child {
    margin-right: 20px;
    width: 20px;
    flex-shrink: 0;
}

.mobile-menu-toggle .chevron {
    transition: transform 0.3s ease;
    width: 16px;
    margin-left: 15px;
    flex-shrink: 0;
}

.mobile-menu-toggle.active .chevron {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.3s ease;
    opacity: 0;
}

.mobile-submenu.active {
    max-height: 2000px;
    opacity: 1;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 35px;
    color: #6c757d;
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.mobile-submenu a:hover {
    background: #e9ecef;
    color: #495057;
    padding-left: 40px;
}

.mobile-submenu a i {
    margin-right: 15px;
    width: 16px;
    flex-shrink: 0;
}

/* Mobile Sub-submenu */
.mobile-submenu-item {
    margin: 5px 0;
}

.mobile-submenu-toggle {
    background: #e9ecef !important;
    padding: 10px 35px !important;
    font-size: 0.9rem !important;
    border-radius: 0 !important;
}

.mobile-submenu-toggle i:first-child {
    margin-right: 12px !important;
    width: 16px !important;
}

.mobile-submenu-toggle .chevron {
    width: 14px !important;
    margin-left: 10px !important;
}

.mobile-sub-submenu {
    background: #fff !important;
    margin-left: 20px;
    border-left: 2px solid #e9ecef;
}

.mobile-sub-submenu a {
    padding: 10px 25px !important;
    font-size: 0.85rem !important;
    color: #6c757d !important;
}

.mobile-sub-submenu a:hover {
    background: #f8f9fa !important;
    padding-left: 30px !important;
}

.mobile-sub-submenu a i {
    margin-right: 10px !important;
    width: 14px !important;
}

/* Mobile Menu Divider */
.mobile-menu-divider {
    height: 1px;
    background: #dee2e6;
    margin: 10px 20px;
}

.mobile-submenu-header {
    font-weight: 600;
    color: #495057;
    padding: 8px 35px;
    background: #e9ecef;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Force active state for submenus */
.mobile-submenu.active,
.mobile-sub-submenu.active {
    max-height: 2000px !important;
    opacity: 1 !important;
}

/* Ana Sayfa icon spacing fix */
.mobile-menu-content .mobile-menu-item:first-child a i[data-feather="home"] {
    margin-right: 20px !important;
}

/* Ensure all feather icons have proper spacing */
.mobile-menu i[data-feather] {
    margin-right: 20px !important;
}