/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    background: white;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid transparent;
    background: transparent;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.lang-btn:hover {
    background: #fce4ec;
    color: #e91e63;
}

.lang-btn.active {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
    border-color: #e91e63;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 6px;
        gap: 4px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}
