/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background-color: var(--bg-light);
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    opacity: 1;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

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

.mobile-menu ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 15px 20px;
    transition: var(--transition);
}

.mobile-menu ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.02);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
}

.mobile-dropdown-menu li {
    border-bottom: none !important;
}

.mobile-dropdown-menu li a {
    padding-left: 50px;
}

.mobile-contact {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.mobile-contact-item i {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary-color);
}

.mobile-contact-item a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px 20px;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.mobile-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.mobile-menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

body.menu-open {
    overflow: hidden;
}

/* Balık ve Pide Özel Stilleri */
.balik-item {
    color: var(--balik-primary) !important;
}

.pide-item {
    color: var(--pide-primary) !important;
}
