.coupon-campaign-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	height: 24px;
	min-height: 24px;
	line-height: 1;
	background: #0C1DBB;
	color: white;
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	border: none;
	cursor: pointer;
	font-family: inherit;
}

.coupon-campaign-label:hover,
.coupon-campaign-label:focus-visible {
	background: rgba(12, 29, 187, .85);
	outline: 2px solid currentColor;
	outline-offset: 1px;
}

.coupon-campaign-label__text {
	font-weight: 500;
}

.coupon-campaign-label__code {
	font-weight: 600;
	color: inherit;
	text-transform: uppercase;
}

.woocommerce ul.products li.product .coupon-campaign-label,
.woocommerce-page ul.products li.product .coupon-campaign-label {
	font-size: .8em;
}

.coupon-campaign-single-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.coupon-campaign-copy-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	color: #000000;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	line-height: 1;
	text-underline-offset: 2px;
}

.coupon-campaign-copy-link:hover,
.coupon-campaign-copy-link:focus-visible {
	color: rgba(12, 29, 187, .75);
	outline: none;
}

.thumbnail-product .coupon-campaign-label {
	margin-top: 12px;
	width: 100%;
}

.single-product .coupon-campaign-label {
	padding: 12px 20px;
	height: unset;
	width: 100%;
}

@media (min-width: 768px) {
	.coupon-campaign-single-wrap {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: unset;
	}

	.single-product .coupon-campaign-label {
		width: unset;
	}
}

.coupon-campaign-copy-toast {
	position: absolute;
	z-index: 99999;
	background: #111827;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	padding: 8px 12px;
	border-radius: 6px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
	pointer-events: none;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(4px) scale(.96);
	transition: opacity .22s ease, transform .22s ease;
	font-family: inherit;
}

.coupon-campaign-copy-toast::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 10px;
	height: 10px;
	background: inherit;
	transform: translateX(-50%) rotate(45deg);
	border-radius: 1px;
}

.coupon-campaign-copy-toast.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.coupon-campaign-copy-toast.is-leaving {
	opacity: 0;
	transform: translateY(-4px) scale(.96);
}

@media (prefers-reduced-motion: reduce) {
	.coupon-campaign-copy-toast {
		transition: opacity .15s ease;
		transform: none;
	}

	.coupon-campaign-copy-toast.is-visible,
	.coupon-campaign-copy-toast.is-leaving {
		transform: none;
	}
}
