.se-style-switcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(15, 15, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: Inter, Segoe UI, system-ui, sans-serif;
}

.se-style-switcher-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 6px 0 10px;
}

.se-style-switcher button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.se-style-switcher button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.se-style-switcher button.active {
  background: #ffffff;
  color: #111216;
}

@media (max-width: 700px) {
  .se-style-switcher {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 12px;
    padding: 8px 10px;
    gap: 6px;
  }
  .se-style-switcher-label {
    display: none;
  }
  .se-style-switcher button {
    padding: 7px 10px;
    font-size: 11px;
  }
}
