.design-switcher {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1000;
  display: grid;
  gap: 6px;
  width: min(260px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #f7fff8;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.design-switcher label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.design-switcher select {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(10, 12, 14, 0.9);
  color: #ffffff;
  padding: 0 10px;
  font: inherit;
}

.theme-decor {
  display: none;
}

@media (max-width: 760px) {
  .design-switcher {
    position: static;
    width: auto;
    margin: 10px;
  }
}
