/* Color swatch styling */
.color-swatch {
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: transform 0.2s;
}
.color-swatch:hover {
  transform: scale(1.1);
}