.product-form__input--pill--swatch-color {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;

  .swatch__label {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 0.8rem;
    margin: 0.5rem;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    background : none;
    overflow : hidden;    
    transition: transform 0.2s;
  }
  .swatch__circle {
    width: 30px;
    height: 30px;
  }
    
    input:checked + .swatch__label {
    outline: 2px solid #000;
    transform: scale(1.1);
  }
}


