/* Language Dropdown Styles */
.casa-header__language-dropdown {
  position: relative !important;
  display: inline-block !important;
}



.casa-header__language-list {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 8px 0 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 80px;
  z-index: 10000 !important;
  display: none !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.casa-header__language-dropdown.is-open .casa-header__language-list {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.casa-header__language-list li {
  margin: 0;
  padding: 0;
}

.casa-header__language-link {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  font-family: linotype-vectora, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(18, 18, 18, 0.7);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.casa-header__language-link:hover {
  background-color: rgba(18, 18, 18, 0.05);
  color: #121212;
}

.casa-header__language-link.is-active {
  color: #121212;
  font-weight: 500;
  background-color: rgba(18, 18, 18, 0.05);
}
