.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(180, 154, 99, .42);
  border-radius: 999px;
  background: rgba(251, 249, 244, .08);
}

.language-switcher button {
  min-width: 42px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  cursor: pointer;
  transition: background var(--ql-motion-fast, 150ms) ease, color var(--ql-motion-fast, 150ms) ease, box-shadow var(--ql-motion-fast, 150ms) ease;
}

.language-switcher button:hover {
  color: var(--ql-orange, #ff6b00);
}

.language-switcher button.active,
.language-switcher button[aria-pressed="true"] {
  background: var(--ql-ivory, #f4f0e7);
  color: var(--ql-ink, #0b0b0a);
  box-shadow: 0 1px 8px rgba(11, 11, 10, .12);
}

.language-switcher button:focus-visible {
  outline: 2px solid var(--ql-orange, #ff6b00);
  outline-offset: 2px;
}

.mobile-language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 48px);
  gap: 2px;
  width: auto;
  min-height: 40px;
  padding: 3px;
  border-color: rgba(201, 173, 114, .38);
  background: #171714;
  color: rgba(244, 240, 231, .74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.mobile-nav-head .mobile-language-switcher button {
  display: grid;
  place-items: center;
  width: 48px;
  min-width: 48px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(244, 240, 231, .74);
  font-family: var(--ql-font-ui, Inter, "Segoe UI", Arial, sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.mobile-nav-head .mobile-language-switcher button[data-locale="zh-Hans"] {
  font-family: "Microsoft YaHei", "PingFang SC", var(--ql-font-ui, Inter, "Segoe UI", Arial, sans-serif);
  letter-spacing: .04em;
}

.mobile-nav-head .mobile-language-switcher button:hover {
  color: var(--ql-ivory, #f4f0e7);
}

.mobile-nav-head .mobile-language-switcher button.active,
.mobile-nav-head .mobile-language-switcher button[aria-pressed="true"] {
  background: var(--ql-brass-muted, #d2c19a);
  color: var(--ql-ink, #0b0b0a);
  box-shadow: 0 1px 6px rgba(0, 0, 0, .22);
}

.mobile-nav-head .mobile-language-switcher button:focus-visible {
  outline-color: var(--ql-ivory, #f4f0e7);
  outline-offset: 2px;
}

.reset-language-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  color: var(--ql-ink, #0b0b0a);
}

html[lang="zh-Hans-CA"] body {
  font-family: "Microsoft YaHei", "PingFang SC", Inter, "Segoe UI", Arial, sans-serif;
}

html[lang="zh-Hans-CA"] .btn,
html[lang="zh-Hans-CA"] button,
html[lang="zh-Hans-CA"] .public-contact-action {
  letter-spacing: .035em;
}

@media (max-width: 1100px) {
  header .language-switcher {
    display: none;
  }

  .mobile-nav-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 42px;
    gap: 8px;
  }

  body.quiet-luxury-site .mobile-nav-head h2 {
    min-width: 0;
    overflow: hidden;
    font-size: 16px;
    letter-spacing: .08em;
    line-height: 1.1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-nav-head .mobile-language-switcher {
    display: inline-grid;
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .language-switcher button {
    transition: none;
  }
}

