/* Desktop header visible on all devices */
.desktop-header {
    display: flex !important;
}

/* Hide mobile-only controls */
.mobile-header-controls {
    display: none !important;
}

/* Auth buttons hidden on mobile - they are in menu */
@media (max-width: 1024px) {
    .desktop-auth,
    .auth-buttons.desktop-auth {
        display: none !important;
    }
    
    /* Make header elements responsive */
    .top_bar_right_wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #search_button {
        display: flex !important;
    }
    
    .wpml-languages {
        display: flex !important;
    }
    
    .search_wrapper {
        max-width: 100%;
    }
    
    /* Responsive menu toggle visible on mobile */
    .responsive-menu-toggle {
        display: block !important;
    }
}

/* Mobile auth menu in hamburger menu */
.mobile-auth-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .mobile-auth-menu {
        display: flex;
    }
}

.mobile-auth-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.2s;
}

.mobile-auth-link:hover {
    text-decoration: none;
}

.mobile-auth-link.login {
    background: rgba(0,0,0,0.05);
}

.mobile-auth-link.register {
    background: linear-gradient(135deg, #B84513, #a03d10);
    color: #fff;
}

.mobile-auth-link.profile {
    background: rgba(184,69,19,0.1);
    color: #B84513;
}

.mobile-auth-link.logout {
    background: rgba(220,53,69,0.1);
    color: #dc3545;
}
