/* Color swatches — circles for product cards & single product */

.bz-swatches{
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	align-items:center;
}
.bz-swatches--card{
	margin:8px 0 10px;
}
.bz-swatches--product{
	margin:0 0 14px;
}
.bz-swatch-label{
	display:block;
	margin:0 0 8px;
	font-size:13px;
	font-weight:700;
	color:var(--bz-ink-strong);
}
.bz-swatch-label small{
	font-weight:500;
	color:var(--bz-muted);
	margin-right:6px;
}

.bz-swatch{
	appearance:none;
	width:22px;
	height:22px;
	padding:0;
	border-radius:50%;
	background:var(--bz-swatch,#888);
	cursor:pointer;
	position:relative;
	box-shadow:inset 0 0 0 1px #00000018;
	transition:transform .15s,box-shadow .15s;
}
.bz-swatches--product .bz-swatch{
	width:30px;
	height:30px;
}
.bz-swatch:hover{
	transform:scale(1.12);
}
.bz-swatch.is-active{
	box-shadow:0 0 0 2px var(--bz-page),0 0 0 4px var(--bz-accent);
	transform:scale(1.08);
}
.bz-swatch.is-disabled{
	opacity:.35;
	cursor:not-allowed;
	transform:none;
}
.bz-swatch.is-disabled:after{
	content:"";
	position:absolute;
	inset:45% 10%;
	height:2px;
	background:#fff;
	transform:rotate(-40deg);
	box-shadow:0 0 0 1px #0003;
}

/* Hide quantity everywhere in storefront */
.bz-store .quantity,
.bz-product-page .quantity,
.bz-product-cart .quantity{
	display:none!important;
}

/* Hide default WC variation select UI — swatches replace it */
.bz-product-cart .variations,
.bz-product-cart .reset_variations{
	position:absolute!important;
	width:1px!important;
	height:1px!important;
	overflow:hidden!important;
	clip:rect(0 0 0 0)!important;
	white-space:nowrap!important;
	border:0!important;
	padding:0!important;
	margin:-1px!important;
}

.bz-product-cart form.cart{
	position:relative;
}
.bz-product-cart .single_add_to_cart_button{
	width:100%;
	flex:1 1 100%;
}

.bz-product-card__bottom{
	gap:10px;
}
.bz-product-card .bz-add.is-waiting{
	opacity:.5;
	pointer-events:none;
}
