.mv-swatches {
  margin: 1rem 0;
}

.mv-swatch-group {
  margin-bottom: 0.75rem;
}

.mv-swatch-group__label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.mv-swatch-group__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mv-swatch-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  padding: 0.375rem 0.5rem;
  min-width: 2.5rem;
  min-height: 2rem;
  user-select: none;
  background-color: white;
}

.mv-swatch-item.is-active {
  border-color: #254135;
  background: #254135;
  color: white;
}

.mv-swatch-item.is-disabled {
  opacity: 0.5;
  border-style: dashed;
  cursor: not-allowed;
}

.mv-swatch-item__link {
  color: inherit;
  text-decoration: none;
}

.mv-swatch-item__link:hover {
  text-decoration: underline;
}

.mv-swatch-item__label {
  color: inherit;
}


