/* VARIANTY */
.variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}

.variant-chip {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.variant-chip:hover { background: #f8fafc; }

.variant-chip.is-selected {
  border-color: var(--darkest-violet);
  background: var(--lightest-purple);
  font-weight: 600;
}

.variant-chip.is-disabled {
  opacity: .5;
  cursor: not-allowed;
}

.variant-select--hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
/* KONEC VARIANTY */