/* Hide native frame dropdown */
.t-product__option-variants_regular:has(.js-product-option-variants) select {
  display: none !important;
}

/* Swatch list */
.artio-frame-swatches {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

/* Each row */
.artio-frame-swatch {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s;
}

/* Circle image */
.artio-frame-swatch__circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color 0.2s;
  box-shadow: 0 0 0 1px #ccc;
}

.artio-frame-swatch__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Active state — black ring like Poster Club */
.artio-frame-swatch.active .artio-frame-swatch__circle {
  box-shadow: 0 0 0 2px #111;
}

/* Label text */
.artio-frame-swatch__label {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #111;
  text-transform: uppercase;
}

/* Inactive = greyed out like Poster Club */
.artio-frame-swatch:not(.active) .artio-frame-swatch__label {
  color: #aaa;
}