/* Mobile menu button - Show 'Giriş' text instead of hamburger */

/* Desktop - hide mobile-only items */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: inline-block !important;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    /* Hide desktop Giriş button */
    .desktop-only {
        display: none !important;
    }

    /* Show mobile-only items */
    .mobile-only {
        display: block !important;
    }

    /* Style mobile login link */
    .mobile-login-link {
        display: block;
        background: var(--primary-color);
        color: white !important;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
        margin-top: 0.5rem;
        box-shadow: 0 2px 8px rgba(123, 45, 142, 0.3);
    }

    .mobile-login-link:hover {
        background: var(--primary-dark);
    }
}