.custom-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.swatch-label {
  padding: 6px 14px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.2s;
}

.swatch-label:hover {
  background-color: #f0f0f0;
}

.swatch-label.active {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
