/* Language Switcher Styles */

.language-switcher {
    position: relative;
    margin-left: 15px;
}

.language-switcher select {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    padding: 8px 30px 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

.language-switcher select:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
    transform: translateY(-2px);
}

.language-switcher select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2);
}

/* Language flags in dropdown */
.language-switcher option {
    padding: 8px;
    background: white;
    color: #333;
}

/* Mobile styles */
@media (max-width: 768px) {
    .language-switcher {
        position: fixed;
        top: 15px;
        right: 75px;
        z-index: 10002;
        margin-left: 0;
    }
    
    .language-switcher select {
        padding: 10px 28px 10px 10px;
        font-size: 13px;
        border-radius: 12px;
        min-width: 60px;
    }
}

/* Desktop header alignment */
@media (min-width: 769px) {
    .header-nav-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}
