.account-dropdown__item--button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  cursor: pointer;
}

.language-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 140;
}

.language-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.language-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 19, 36, 0.44);
}

.language-modal__dialog {
  position: relative;
  width: min(420px, 100%);
  border-radius: 18px;
  border: 1px solid #d7e0ee;
  background: #fff;
  box-shadow: 0 28px 64px rgba(11, 20, 40, 0.22);
  padding: 20px 18px 16px;
}

.language-modal__title {
  margin: 0 0 14px;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #252a36;
}

.language-modal__options {
  display: grid;
  gap: 8px;
}

.language-modal__option {
  width: 100%;
  border: 1px solid #b8c9e6;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  color: #1f2f4f;
  height: 42px;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.language-modal__option:hover,
.language-modal__option:focus-visible {
  border-color: #6f8fc4;
  box-shadow: 0 8px 20px rgba(60, 88, 140, 0.2);
  outline: none;
}

.language-modal__option.is-selected {
  border-color: #446da8;
  background: linear-gradient(180deg, #f7fbff 0%, #e8f0ff 100%);
}

.language-modal__close-btn {
  margin-top: 12px;
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #2a2b35;
  color: #fff;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.language-modal__close-btn:hover,
.language-modal__close-btn:focus-visible {
  background: #1f2028;
  outline: none;
}
