/* Set-deal notice — sits directly under the price */

.kw-set-deal {
	/* block + fit-content, never inline-block: an inline-block sits in a line
	   box, and the parent's leading adds ~24px that margin collapsing can't
	   see, so the negative margin below would silently do nothing. */
	display: block;
	width: fit-content;
	max-width: 100%;
	margin: 0;
	padding: 4px 11px;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.05);
	color: inherit;
	font-size: 0.8em;
	font-weight: 600;
	line-height: 1.4;
}

.kw-set-deal .woocommerce-Price-amount {
	font-weight: 700;
	white-space: nowrap;
}

/*
 * Single product: the notice is a sibling that follows
 * .product-price-container, which carries margin-bottom: 30px (style.css:1516).
 * Pull back most of that so the notice reads as part of the price block,
 * then restore breathing room underneath it.
 */
.single-product .kw-set-deal--single {
	margin-top: -22px;
	margin-bottom: 22px;
}
