/* Only Noir remains — the other design directions were removed on request.
   This file now just holds the mode dock that lives at the bottom-left. */

.design-dock {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(12, 14, 19, 0.72);
  border: 1px solid rgba(244, 239, 231, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
}

.design-dock .dock-link {
  font-size: 0.72rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(244, 239, 231, 0.28);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 0 2px;
  opacity: 0.85;
  transition: background 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}
.design-dock .dock-link:hover { opacity: 1; background: rgba(244, 239, 231, 0.12); }

@media (max-width: 900px) {
  .design-dock { left: 10px; bottom: 10px; font-size: 0.68rem; padding: 5px 6px; }
  .design-dock .dock-link { padding: 5px 10px; font-size: 0.68rem; }
}
