/* ===== Language pills ===== */

#top .container {
    position: relative;
}

.pk-top-right {
    float: right;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pk-top-right #top-links {
    float: none;
}

.pk-top-right #top-links ul {
    margin: 0;
}

.pk-language-pills {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 2px;
    background: #f5f6f8;
    border: 1px solid #e5e8ee;
    border-radius: 999px;
}

.pk-lang-btn {
    min-width: 30px;
    height: 22px;
    padding: 0 8px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #2f3542;
    font-size: 11px;
    line-height: 22px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: all .15s ease;
}

.pk-lang-btn:hover {
    background: #fff7ef;
    color: #ff7a00;
}

.pk-lang-btn.active {
    background: #ff7a00;
    color: #fff;
    box-shadow: 0 2px 6px rgba(255, 122, 0, 0.28);
}

@media (max-width: 767px) {
    .pk-top-right {
        float: none;
        justify-content: flex-end;
        flex-wrap: wrap;
        margin-top: 6px;
    }
}