/* 1. ẨN CỜ MẶC ĐỊNH CỦA POLYLANG */
.lang-item img {
    display: none !important;
}

/* 2. GẮN ẢNH CỜ TỰ CHỌN (CUSTOM) */
.lang-item-en > a {
    background: url('/wp-content/uploads/2026/09/comy.png') no-repeat center !important;
}

.lang-item-vi > a {
    background: url('/wp-content/uploads/2026/09/coviet.png') no-repeat center !important;
}

/* 3. HIỂN THỊ TRÊN MOBILE & IPAD (DƯỚI 1024PX) */
@media (max-width: 1023px) {
    .mobile-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end;
    }

    .mobile-nav .lang-item {
        display: inline-flex !important;
    }

    /* Kích thước hiển thị của từng cờ */
    .mobile-nav .lang-item > a {
        display: inline-block !important;
        width: 26px !important;
        height: 18px !important;
        padding: 0 !important;
        background-size: cover !important;
        border-radius: 3px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }
}

/* 4. HIỂN THỊ TRÊN MÁY TÍNH (DESKTOP TỪ 1024PX TRỞ LÊN) */
@media (min-width: 1024px) {
    .lang-item {
        margin-left: 6px;
        display: inline-block;
    }

    .lang-item span {
        display: none !important;
    }

    .lang-item > a {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 30px !important;
        height: 20px !important;
        padding: 0 !important;
        background-size: cover !important;
        border-radius: 4px;
    }
}