/* Style switcher — palette-neutral, sits over any variant. */

.style-switcher {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: opacity .25s ease, transform .25s ease;
}
.style-switcher.is-hidden {
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
}
.ssw-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 16px;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.ssw-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.ssw-buttons { display: flex; gap: 4px; }
.ssw-btn {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.ssw-btn:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.ssw-btn.is-active {
  background: #fff;
  color: #141414;
}
.ssw-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.ssw-close:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

@media (max-width: 480px) {
  .style-switcher { bottom: 12px; }
  .ssw-label { display: none; }
  .ssw-inner { padding: 6px; }
  .ssw-btn { padding: 7px 12px; font-size: 11px; }
}
