/* Language Switcher Styles */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 8px;
    z-index: 1001;
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: #6e6e73;
    cursor: pointer;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: #f5f5f7;
}

.lang-btn.active {
    background: #007AFF;
    color: white;
}

/* Language Content */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .lang-switcher {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 13px;
    }
}
