 .language-switcher {
    display: flex;
    gap: 8px;
    margin: 10px 0 14px;
    flex-wrap: wrap;
}

.lang-item {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    background: #f5f5f5;
    color: #555;
    border: 1px solid #e2e2e2;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.lang-item:hover {
    background: #eef3ff;
    color: #0d6efd;
    border-color: #cfe0ff;
}

.lang-item.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 4px 10px rgba(13,110,253,0.25);
}