/* ===== MOBİL HAMBURGER MENÜ ===== */

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 999;
    text-align: center;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 20px 0;
}

/* Mobil Nav Link */
.mobile-nav-link {
    font-size: 24px;
    text-align: center;
    display: block;
    width: 100%;
    padding: 8px 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #fff;
}

/* Mobil Dropdown */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.mobile-dropdown-toggle i {
    font-size: 14px;
    margin-left: 8px;
    transition: transform 0.3s;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 4px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    transition: color 0.2s;
}

.mobile-dropdown-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

.mobile-dropdown-item i {
    margin-right: 8px;
}

.mobile-dropdown-item .fa-credit-card {
    color: #ffd700;
}

.mobile-dropdown-item .fa-dollar-sign {
    color: #ff6b6b;
}

.mobile-dropdown-item .fa-stamp {
    color: #4ecdc4;
}

/* Mobil User Actions */
.mobile-user-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 14px 0 6px;
    padding: 14px 8px 18px;
    border-top: 1px solid #222;
    text-align: center;
}

.mobile-user-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s;
    text-decoration: none;
}

.mobile-user-btn:hover,
.mobile-user-btn:focus {
    background: #e8e8e8;
    box-shadow: 0 0 0 3px rgba(187, 187, 187, 0.4);
}

.mobile-user-btn i {
    font-size: 12px;
    color: #000;
    pointer-events: none;
}

.mobile-profile-link {
    display: inline-flex;
}
