#lang-switcher {
  display: inline-block;
  position: relative;
  margin: 0;
  font-family: "tt-commons", Sans-serif;
}

#lang-switcher .lang-dropdown {
  position: relative;
  display: inline-block;
}

#lang-switcher .lang-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  background: #fff9f3;
  box-shadow: 0 1px 3px 0px rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);

  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #b58e53;
  transition: all 0.2s ease;
}

#lang-switcher .lang-button:hover {
  color: #b58e53;
}

#lang-switcher .lang-button img {
  width: 24px;
  height: 18px;
  border-radius: 2px;
}

#lang-switcher .lang-button::after {
  position: relative;
  top: 2px;
  content: "▼";
  margin-left: 5px;
  font-size: 14px;
  transition: transform 0.2s ease;
  color: inherit;
}

#lang-switcher .lang-dropdown.active .lang-button::after {
  transform: rotate(180deg);
}

#lang-switcher .lang-list {
  position: absolute;
  top: 100%;
  width: 100%;
  background: #fff9f3;
  border-radius: 0;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  list-style: none;
  margin: 5px 0 0 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

#lang-switcher .lang-dropdown.active .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#lang-switcher .lang-list li {
  margin: 0;
  padding: 0;
}

#lang-switcher .lang-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  text-decoration: none;
  color: #b58e53;
  transition: all 0.2s ease;
}

#lang-switcher .lang-list a:hover {
  background: #b58e53;
  color: #fefbf6;
}

#lang-switcher .lang-list img {
  width: 24px !important;
  height: 18px !important;
  border-radius: 2px;
}

/* Mobilny lang switcher */
#mobile-lang-switcher {
  display: none;
  margin-top: 20px;
  text-align: center;
}

#mobile-lang-switcher .mobile-lang-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#mobile-lang-switcher .mobile-lang-link {
  text-decoration: none;
  color: #b58e53;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

#mobile-lang-switcher .mobile-lang-link:hover {
  color: #8b6b3f;
}

#mobile-lang-switcher .mobile-lang-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  margin: 0 2px;
}

#mobile-lang-switcher .lang-separator {
  color: #b58e53;
  font-weight: 500;
  font-size: 16px;
}

/* Responsywność */
@media (max-width: 768px) {
  #lang-switcher .lang-button {
    padding: 8px 12px;
    font-size: 12px;
  }

  #lang-switcher .lang-button img,
  #lang-switcher .lang-list img {
    width: 14px;
    height: 10px;
  }

  /* Pokazuj mobilny lang switcher na urządzeniach mobilnych */
  #mobile-lang-switcher {
    display: block;
  }

  #mobile-lang-switcher .mobile-lang-link {
    font-size: 18px;
  }

  #mobile-lang-switcher .mobile-lang-flag {
    width: 18px;
    height: 13px;
  }

  #mobile-lang-switcher .lang-separator {
    font-size: 18px;
  }
}
