.theme-toggle {
  position: fixed;
  right: 18px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  color: var(--text-primary);
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.theme-toggle i {
  font-size: 23px;
  line-height: 1;
}
.theme-toggle:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}

@media (max-width: 991.98px) {
  .theme-toggle {
    right: 14px;
    bottom: 20px;
    width: 48px;
    height: 48px;
  }
  .theme-toggle i {
    font-size: 21px;
  }
}

