/* ============================================
   LANGUAGE SELECTOR STYLES
   ============================================ */

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.language-selector button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.language-selector button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-selector button.active {
    background: white;
    color: var(--primary-color, #aa3a4c);
    border-color: white;
    font-weight: 600;
}

.language-selector .separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 10px;
    }

    .language-selector button {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}