.wcsps-swatches {
	clear: both;
	margin-block: 1.25rem;
}

.wcsps-swatches__heading {
	font-size: 1rem;
	line-height: 1.4;
	margin: 0 0 0.75rem;
}

.wcsps-swatches__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wcsps-swatches__item {
	margin: 0;
	padding: 0;
}

.wcsps-swatches__link {
	background: #fff;
	border: 2px solid currentColor;
	border-radius: 50%;
	box-sizing: border-box;
	display: block;
	height: var(--wcsps-swatch-size, 56px);
	overflow: hidden;
	position: relative;
	transition: box-shadow 150ms ease, transform 150ms ease;
	width: var(--wcsps-swatch-size, 56px);
}

.wcsps-swatches__link:hover {
	box-shadow: 0 0 0 3px rgb(0 0 0 / 18%);
	transform: translateY(-1px);
}

.wcsps-swatches__link:focus-visible {
	box-shadow: 0 0 0 3px #fff, 0 0 0 6px currentColor;
	outline: 2px solid transparent;
	outline-offset: 2px;
}

.wcsps-swatches__link.is-active,
.wcsps-swatches__link[aria-current="page"] {
	border-width: 4px;
	box-shadow: 0 0 0 2px currentColor;
}

.wcsps-swatches__image {
	display: block;
	height: 100%;
	max-width: none;
	object-fit: cover;
	width: 100%;
}

@media (prefers-reduced-motion: reduce) {
	.wcsps-swatches__link {
		transition: none;
	}
}

