.shop-variant-picker {
  margin: 18px 0 8px;
}
.shop-variant-row {
  margin-bottom: 18px;
}
.shop-variant-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #8a6a3b;
}
.shop-variant-label strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #222;
}
.shop-variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.shop-variant-options.is-color .shop-variant-choice {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--swatch, #ccc);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
  cursor: pointer;
}
.shop-variant-options.is-color .shop-variant-choice.is-active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #222, inset 0 0 0 1px rgba(0,0,0,0.12);
}
.shop-variant-options.is-box .shop-variant-choice {
  min-width: 48px;
  height: 48px;
  padding: 0 8px;
  border: 1px solid #222;
  background: transparent;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.shop-variant-options.is-box .shop-variant-choice.is-active {
  background: #c4a574;
  border-color: #c4a574;
  color: #fff;
}
.shop-variant-choice.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.shop-variant-status {
  color: #c0392b;
  font-size: 13px;
  margin: 0 0 8px;
}
