/* =========================================================
   Inline language switcher tweaks
   Keep language switcher inline inside menus
   ========================================================= */

/* Language switcher layout */
.wp-block-polylang-language-switcher,
.lang-item {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
  
}

/* Anchor defaults for language switcher only */
.wp-block-polylang-language-switcher a,
.lang-item a {
  display: inline;
  text-decoration: none;
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
  color: inherit; /* Inherit menu text color */
  vertical-align: top;
}

/* Flag image styling */
.lang-item img {
  display: inlin;
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

/* On hover: restore full color */
.lang-item a:hover img {
  filter: grayscale(0%);
}
