/**
 * WooCommerce Coupon Free Gift – cart styles
 *
 * Styles the Free Gift badge and locked-quantity display in the cart and
 * checkout order table.
 */

/* "Free Gift" badge appended to the product name */
.wc-free-gift-badge {
	display: inline-block;
	background-color: #27ae60;
	color: #ffffff;
	font-size: 0.72em;
	font-weight: 700;
	line-height: 1;
	padding: 3px 8px;
	border-radius: 3px;
	margin-left: 6px;
	vertical-align: middle;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

/* Locked quantity display replacing the <input> */
.wc-free-gift-qty {
	display: inline-block;
	font-weight: 600;
	padding: 6px 12px;
	border: 1px solid #ddd;
	background-color: #f8f8f8;
	border-radius: 3px;
	color: #555;
	min-width: 36px;
	text-align: center;
}
