/* ===== MOBİL NAVIGASYON ===== */
.mobile-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    z-index: 100000;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.mobile-navigation.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-nav-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.mobile-nav-close:hover {
    color: var(--primary-blue);
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.mobile-menu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #232323;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.mobile-menu-item a:hover {
    background: #f5f5f5;
    color: var(--primary-blue);
}

/* Dropdown */
.mobile-menu-item.has-dropdown.active .mobile-dropdown {
    display: block;
}

.mobile-menu-item.has-dropdown.active > a .dashicons {
    transform: rotate(180deg);
}

.mobile-dropdown {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.mobile-dropdown li a {
    padding: 12px 20px 12px 35px;
    font-weight: 500;
    font-size: 14px;
}

/* Mobil arama */
.mobile-search {
    padding: 15px 20px;
}

.mobile-search-form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-search-form input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    font-size: 14px;
}

.mobile-search-form button {
    width: 60px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* Mobil iletişim */
.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 700;
}

.mobile-contact .dashicons {
    font-size: 20px;
}

/* Body overflow */
body.mobile-menu-open {
    overflow: hidden;
}

/* Masaüstü menüyü mobilde gizle */
@media (max-width: 992px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
}

@media (min-width: 993px) {
    .mobile-navigation,
    .mobile-menu-toggle {
        display: none !important;
    }
}