/* DSG Color Swatches */
.dsg-swatch-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 10px 0;
}
.dsg-swatch {
	width: 46px;
	height: 46px;
	padding: 3px;
	border: 2px solid #ddd;
	border-radius: 9999px;
	background: #fff;
	cursor: pointer;
	overflow: hidden;
	line-height: 0;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.dsg-swatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 9999px;
	display: block;
}
.dsg-swatch.dsg-swatch-text {
	line-height: 1.2;
	padding: 8px 12px;
	font-size: 12px;
	text-align: center;
	color: #121212;
}
.dsg-swatch.selected {
	border-color: #121212;
	box-shadow: 0 0 0 2px #121212;
}
