.wacis-swatches {
	margin: 0 0 12px;
}

.wacis-swatches-label {
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
}

.wacis-swatches-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wacis-swatch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	padding: 0 10px;
	background: #fff;
	border: 1px solid #c3c4c7;
	border-radius: 999px;
	cursor: pointer;
	transition: transform 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.wacis-swatch:hover {
	transform: translateY(-1px);
	border-color: #1d2327;
}

.wacis-swatch.is-active {
	border-color: #1d2327;
	box-shadow: inset 0 0 0 1px #1d2327;
}

.wacis-swatch.is-disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.wacis-type-color {
	width: 36px;
	padding: 0;
	background: var(--wacis-color, #eee);
}

.wacis-type-image {
	width: 44px;
	height: 44px;
	padding: 0;
	overflow: hidden;
	border-radius: 12px;
}

.wacis-type-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
