.kcv-hidden-select {
  display: none !important;
}

.kcv-swatches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 8px 0 14px;
}

.kcv-swatches-archive {
  justify-content: center;
  gap: 6px;
  margin: 8px 0;
}

.kcv-swatch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  border: 1px solid #c8ccd0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.kcv-swatch:hover,
.kcv-swatch:focus {
  border-color: #111;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .08);
  outline: none;
}

.kcv-swatch.selected {
  border-color: #111;
  box-shadow: 0 0 0 2px #111 inset;
}

.kcv-swatch.disabled {
  opacity: .38;
  cursor: not-allowed;
}

.kcv-swatch.disabled::after {
  content: '';
  position: absolute;
  left: 7px;
  right: 7px;
  top: 50%;
  height: 1px;
  background: currentColor;
  transform: rotate(-35deg);
}

.kcv-swatch-visual {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: inherit;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.kcv-swatch-label {
  display: none;
  padding: 0 10px;
  white-space: nowrap;
  font-size: 13px;
  line-height: 32px;
}

.kcv-swatch.is-text,
.kcv-swatch-button,
.kcv-swatch-radio {
  min-width: auto;
  padding: 0 10px;
  border-radius: 6px;
}

.kcv-swatch.is-text .kcv-swatch-visual,
.kcv-swatch-button .kcv-swatch-visual,
.kcv-swatch-radio .kcv-swatch-visual {
  display: none;
}

.kcv-swatch.is-text .kcv-swatch-label,
.kcv-swatch-button .kcv-swatch-label,
.kcv-swatch-radio .kcv-swatch-label {
  display: inline-block;
}

.kcv-swatch-radio {
  gap: 6px;
  padding-left: 8px;
}

.kcv-swatch-radio::before {
  content: '';
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: #fff;
}

.kcv-swatch-radio.selected::before {
  box-shadow: inset 0 0 0 3px #fff;
  background: currentColor;
}

.kcv-swatches-archive .kcv-swatch {
  min-width: 24px;
  min-height: 24px;
}

.kcv-swatches-archive .kcv-swatch-visual {
  width: 22px;
  height: 22px;
}

.kcv-swatches-archive .kcv-swatch-label {
  display: none;
}

.kcv-swatches.kcv-shape-squared .kcv-swatch,
.kcv-swatches.kcv-shape-squared .kcv-swatch-visual {
  border-radius: 4px;
}

.kcv-swatches.kcv-shape-rounded .kcv-swatch,
.kcv-swatches.kcv-shape-rounded .kcv-swatch-visual {
  border-radius: 999px;
}

.kcv-swatches.kcv-shape-squared .kcv-swatch-button,
.kcv-swatches.kcv-shape-squared .kcv-swatch-radio,
.kcv-swatches.kcv-shape-rounded .kcv-swatch-button,
.kcv-swatches.kcv-shape-rounded .kcv-swatch-radio {
  border-radius: 6px;
}
