/* Language Selector for Static Pages */
.language-selector-static {
  position: relative;
  display: inline-block;
  margin-left: auto;
}

.language-selector-toggle-static {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  transition: all 200ms ease;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
}

.language-selector-toggle-static:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.globe-icon {
  font-size: 16px;
}

.arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.language-dropdown-static {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(162, 158, 158, 0.14);
  opacity: 1;
  visibility: visible;
  z-index: 100;
  overflow: hidden;
}

.language-option-static {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  transition: all 150ms ease;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(162, 158, 158, 0.08);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.language-option-static:last-child {
  border-bottom: none;
}

.language-option-static:hover {
  background: rgba(124,92,255,0.08);
  color: var(--accent);
}

.language-option-static .flag {
  font-size: 20px;
}

@media only screen and (max-width: 520px) {
  .language-selector-static {
    margin-left: 0;
  }

  .language-selector-toggle-static {
    padding: 6px 10px;
    font-size: 13px;
  }
}

