/* Product variant selectors (single product detail page) */

.sg-variants {
	margin: 16px 0 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sg-variants__row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sg-variants__label {
	font-size: 13px;
	color: #555;
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.sg-variants__name {
	font-weight: 600;
	color: #222;
}

.sg-variants__value {
	color: #2ba0a3;
}

.sg-variants__opts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* Text-style button */
.sg-variants__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	min-height: 36px;
	min-width: 50px;
	font-size: 14px;
	color: #333;
	background: #fff;
	border: 1px solid #d2d2d2;
	cursor: pointer;
	transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.sg-variants__btn:hover {
	border-color: #2ba0a3;
	color: #2ba0a3;
}

.sg-variants__btn.is-active {
	border-color: #2ba0a3;
	color: #2ba0a3;
	box-shadow: inset 0 0 0 1px #2ba0a3;
}

/* Image-style button */
.sg-variants__btn--image {
	width: 56px;
	height: 56px;
	padding: 2px;
	min-width: 56px;
}

.sg-variants__btn--image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}
