/* MOBİL MENÜ DÜZELTMESİ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav {
    padding: 80px 20px 20px 20px;
}

.mobile-menu nav a {
    display: block;
    padding: 15px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #ecf0f1;
    transition: all 0.3s;
}

.mobile-menu nav a:hover {
    background: #f8f9fa;
    color: #e74c3c;
    padding-left: 25px;
}

.mobile-menu nav a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Mobil Menü Kapatma Butonu */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #2c3e50;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
}

.mobile-menu-close:hover {
    color: #e74c3c;
}