/* AZ Widgets — Product Tags base styles. Override via the widget's Style tab. */

.azw-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.azw-tags-label {
	font-weight: 600;
	margin-right: 2px;
}

.azw-tag {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: #f3f4f6;
	color: #18181b;
	font-size: 13px;
	line-height: 1.4;
	text-decoration: none;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

a.azw-tag:hover {
	background: #6d28d9;
	color: #fff;
}
