/* Simple swatch styling for WPPA Swatch Linker */
.wppa-swatch-linker {
	margin: 1.25rem 0;
}
.wppa-swatch-title {
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.wppa-swatch-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.wppa-swatch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 3rem;
	height: 3rem;
	padding: 0 0.6rem;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid rgba(0,0,0,0.08);
	box-shadow: 0 1px 2px rgba(0,0,0,0.03);
	transition: transform 120ms ease, box-shadow 120ms ease;
	color: inherit;
	background: #fff;
}
.wppa-swatch:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.wppa-swatch-inner {
	font-size: 0.9rem;
	padding: 0 0.25rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
