#nds-brand-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.nds-swatch {
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  transition: transform 0.12s ease;
}

.nds-swatch:hover {
  transform: scale(1.18);
}

.nds-swatch-active {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(100, 116, 139, 0.9);
}

html.dark .nds-swatch-active {
  border-color: #0f172a;
  box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.9);
}
