.variant-label b {
  color: #111;
  font-size: 12px;
  font-weight: 600;
}

.variant-picker {
  display: flex;
  gap: 9px;
  margin: 8px 0 12px;
}

.color-swatch {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid #aaa;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: inset 0 0 0 3px #fff;
}

.color-swatch[aria-pressed="true"] {
  outline: 1px solid #111;
  outline-offset: 2px;
}

.color-swatch:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.swatch-black { background: #222; }
.swatch-green { background: #708171; }
.swatch-white { background: #f5f3ec; }
