/* TOYO Fashion - Language Override Styles */
/* Hide all language options except English and Japanese */

/* Hide German, French, Italian, UK flags in dropdown */
.dropdown-menu a.dropdown-item img[src*="de.png"],
.dropdown-menu a.dropdown-item img[src*="fr.png"],
.dropdown-menu a.dropdown-item img[src*="it.png"],
.dropdown-menu a.dropdown-item img[src*="en-uk.png"] {
    display: none !important;
}

/* Hide the entire dropdown item containing those flags */
.dropdown-item:has(img[src*="de.png"]),
.dropdown-item:has(img[src*="fr.png"]),
.dropdown-item:has(img[src*="it.png"]),
.dropdown-item:has(img[src*="en-uk.png"]) {
    display: none !important;
}

/* Style for active language */
.dropdown-item.active-lang {
    background-color: var(--cz-primary-bg-subtle, #f8f9fa);
    font-weight: 600;
}

/* Japanese specific styling */
html[lang="ja"] body {
    font-feature-settings: "palt" 1;
}
