html.evovio-variations-ready .evovio-variations__select {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.evovio-variations__swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	border: 0;
}

.evovio-variations__choice {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.25rem;
	padding: 0.4rem 0.9rem;
	border: 1px solid #c6c6c6;
	border-radius: 999px;
	background: #fff;
	color: inherit;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.evovio-variations__choice.is-selected {
	border-color: #ffc022;
	background: #ffc0221A;
	box-shadow: 0 0 0 2px #ffc0220D;
    color: #000000;
}

.evovio-variations__choice.is-disabled {
	color: #8a8a8a;
	border-color: #d8d8d8;
	background: #f5f5f5;
	cursor: not-allowed;
	box-shadow: none;
}

.evovio-variations__choice-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.evovio-variations__choice:focus-within {
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.35);
}

.evovio-variations__choice-label {
	font-size: 0.95rem;
	line-height: 1.1;
}

@media (prefers-reduced-motion: reduce) {
	.evovio-variations__choice {
		transition: none;
	}
}
