.wccs-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
}

.wccs-swatch {
	cursor: pointer;
	box-sizing: border-box;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid #ddd;
	background-size: cover;
	background-position: center;
	background-color: #f7f7f7;
	transition: border-color .15s ease, box-shadow .15s ease;
	position: relative;
}

.wccs-swatch:hover {
	border-color: #999;
}

.wccs-swatch.selected {
	border-color: #2c6ecb;
	box-shadow: 0 0 0 2px rgba(44, 110, 203, .25);
}

/* ปุ่มข้อความ (Button) แสดงเป็นสี่เหลี่ยมมุมโค้ง ไม่ใช่วงกลม */
.wccs-swatch-button {
	width: auto;
	height: auto;
	min-width: 40px;
	border-radius: 4px;
	padding: 6px 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
}

.wccs-swatch-button .wccs-swatch-label {
	font-size: 13px;
	line-height: 1;
	white-space: nowrap;
}

/* กรณีไม่มีตัวเลือกไหนถูกเลือก (reset) */
.wccs-swatch.disabled {
	opacity: .35;
	cursor: not-allowed;
}
