/* ST Variation Swatches — size squares on product cards */

.st-vs-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 8px 0 10px;
	align-items: center;
}

.st-vs-swatch {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	padding: 0 6px;
	border: 1px solid #222;
	border-radius: 2px;
	background: #fff;
	color: #222;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.st-vs-swatch span {
	pointer-events: none;
}

.st-vs-swatch:hover,
.st-vs-swatch:focus {
	background: #222;
	color: #fff;
	border-color: #222;
	outline: none;
}

/* ProductX cards — keep alignment consistent */
.wopb-block-item .st-vs-swatches,
.wopb-block-content-wrap .st-vs-swatches {
	margin-top: 6px;
	margin-bottom: 8px;
}

/* Classic Woo loop */
.woocommerce ul.products li.product .st-vs-swatches {
	margin-top: 6px;
}
