/* TEMPORARY demo theme switcher — remove this file, its <link>, the markup
   block, and initThemeSwitch() in main.js when a palette is chosen. */
.theme-switch {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 210;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px 6px 14px;
  background: rgba(13, 11, 7, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--charcoal);
  border-radius: var(--r-pill);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}
.theme-switch-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-right: 4px;
}
.theme-switch button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ash);
  border: 1px solid transparent;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.theme-switch button:hover { color: var(--carbon); border-color: var(--charcoal); }
.theme-switch button.is-active { background: var(--iris); color: var(--obsidian); border-color: var(--iris); }

@media (max-width: 560px) {
  .theme-switch { left: 12px; bottom: 12px; padding: 5px 6px 5px 10px; }
  .theme-switch button { width: 27px; height: 27px; }
}
