.fp-sw-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fp-sw-swatch {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border: 1px solid #626266;
	background: #fff;
	color: inherit;
	font: inherit;
	cursor: pointer;
	border-radius: 4px;
	transition: opacity 0.15s ease;
	-webkit-appearance: none;
	appearance: none;
}

.fp-sw-swatch.is-selected {
	outline: none;
}

.fp-sw-swatch[disabled],
.fp-sw-swatch.is-disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.fp-sw-swatch:focus-visible {
	outline: 2px solid Highlight;
	outline-offset: 2px;
}

.fp-sw-swatch__color {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.fp-sw-swatch__image {
	width: 32px;
	height: 32px;
	object-fit: cover;
	border-radius: 2px;
}

.fp-sw-swatch__label {
	font-size: inherit;
}

.fp-sw-swatch.has-hidden-label .fp-sw-swatch__label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
