.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.theme-toggle {
  position: relative;
  top: 5px;
  width: 48px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(135deg, #fcfff4, #3837a5);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 14px rgba(233, 30, 99, .18);
  transition: background .25s ease, border-color .25s ease;
}

.theme-toggle__circle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:#4642cf;
  box-shadow: 0 3px 8px rgba(0,0,0,.25);
  transition: transform .25s ease, background .25s ease;
  z-index: 2;
}
.theme-toggle__circleMob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 3px 8px rgba(0,0,0,.25);
  transition: transform .25s ease, background .25s ease;
  z-index: 2;
}
.theme-toggle__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  z-index: 1;
  user-select: none;
}

.theme-toggle__sun {
  left: 9px;
  color: #fff;
}

.theme-toggle__moon {
  right: 10px;
  color: #8a1644;
}