/**
 * Amwaj Core - product labels.
 *
 * Matches the pill the legacy plugin rendered: 16px text, fully rounded,
 * 0.5rem/1rem padding, sitting in normal flow just above the product title.
 */

.amwaj-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 5px;
}

.amwaj-label {
	display: inline-block;
	/*
	 * Explicit px, not rem: the theme sets a 14px root, which would render
	 * .5rem/1rem as 7px/14px and shift the pill 4px narrower than before.
	 */
	padding: 8px 16px;
	border-radius: 500px;
	font-size: 16px;
	font-style: normal;
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
}
