/* AECS swatches — minimal styling. */
.aecs-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 6px 0 12px;
}
.aecs-swatch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	color: inherit;
	text-decoration: none;
	transition: border-color .15s, transform .1s;
}
.aecs-swatch:hover {
	border-color: #888;
}
.aecs-swatch.selected {
	border-color: #111;
	border-width: 2px;
	transform: scale(1.05);
}
.aecs-swatch .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}
