/* Swatch Base */
.swatch {
	display: inline-block;
	margin: 5px;
	cursor: pointer;
	border: 1px solid #ddd;
	outline: 2px solid #fff;
	transition: all 0.3s ease;
	transform: scale(1);
	position: relative;
}

/* Selected state */
.swatch.selected {
	outline: 2px solid #000;
	transform: scale(1.15);
}

/* Checkmark */
.swatch.selected::after {
	content: '✓';
	color: #fff;
	font-size: 16px;
	position: absolute;
	top: 4px;
	right: 8px;
}

/* Color swatches */
.color-swatch {
	width: 30px;
	height: 30px;
	border-radius: 50%;
}

/* Size swatches */
.size-swatch {
	border-radius: 999px;
	background: #f0f0f0;
	color: #333;
	padding: 6px 14px;
	font-size: 11px;
	font-weight: bolder;
	line-height: 1.2;
	text-align: center;
	min-width: auto;
	display: inline-block;
}

/* Hover effect */
.swatch:hover {
	transform: scale(1.1);
}

/* Responsive wrap */
.woo-swatches-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* ADDED: Unavailable variation message styling */
.no-variations-message {
	color: #dc3232;
	background-color: #fef7f7;
	border-left: 4px solid #dc3232;
	padding: 10px 15px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.5;
	border-radius: 2px;
}

/* Mobile friendly */
@media (max-width: 480px) {
	.color-swatch {
		width: 24px;
		height: 24px;
	}
	.size-swatch {
		font-size: 12px;
		padding: 4px 10px;
	}
	.no-variations-message {
		font-size: 13px;
		padding: 8px 12px;
	}
}

