.actorshop-product-signal {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 900;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	width: min(340px, calc(100vw - 36px));
	min-height: 42px;
	margin: 0;
	padding: 8px 12px;
	border: 1px solid var(--actorshop-line, rgba(17, 17, 17, 0.12));
	background: color-mix(in srgb, var(--actorshop-surface, #ffffff) 94%, transparent);
	box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08);
	color: var(--actorshop-text, #111111);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	visibility: hidden;
	backdrop-filter: blur(12px);
	transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.actorshop-product-signal.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.actorshop-product-signal__head {
	display: flex;
	align-items: center;
	gap: 0;
	min-width: 0;
}

.actorshop-product-signal__pulse {
	position: relative;
	display: inline-block;
	width: 7px;
	height: 7px;
	flex: 0 0 7px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--actorshop-text, #111111) 72%, #ffffff);
	box-shadow: 0 0 0 5px color-mix(in srgb, var(--actorshop-text, #111111) 10%, transparent);
}

.actorshop-product-signal__pulse::after {
	content: "";
	position: absolute;
	inset: -5px;
	border: 1px solid color-mix(in srgb, var(--actorshop-text, #111111) 18%, transparent);
	border-radius: inherit;
	animation: actorshop-product-signal-pulse 2.2s ease-out infinite;
}

.actorshop-product-signal__eyebrow {
	display: none;
}

.actorshop-product-signal__live {
	display: block;
	min-width: 0;
	margin: 0;
	overflow: visible;
	color: var(--actorshop-text, #111111);
	font-size: 13px !important;
	font-weight: 650;
	line-height: 1.25 !important;
	text-overflow: clip;
	white-space: normal;
	transition: opacity 180ms ease, transform 180ms ease;
}

.actorshop-product-signal__live.is-changing {
	opacity: 0;
	transform: translateY(3px);
}

.actorshop-product-signal.has-cart-feedback {
	border-color: color-mix(in srgb, var(--actorshop-text, #111111) 18%, var(--actorshop-line, rgba(17, 17, 17, 0.12)));
}

@keyframes actorshop-product-signal-pulse {
	0% {
		opacity: 0.9;
		transform: scale(0.72);
	}

	100% {
		opacity: 0;
		transform: scale(1.55);
	}
}

@media (max-width: 900px) {
	.actorshop-product-signal {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.actorshop-product-signal__pulse::after {
		animation: none;
	}

	.actorshop-product-signal__live {
		transition: none;
	}

	.actorshop-product-signal {
		transition: none;
	}
}
