/**
 * CognitiveCart Pulse Notification Bubble
 *
 * @package CognitiveCart
 */

.cognitive-cart-pulse-nudge {
	position: fixed;
	bottom: 24px;
	right: 24px;
	background: #1d2327;
	color: #fff;
	padding: 12px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 999999;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	max-width: 320px;
}

.cognitive-cart-pulse-nudge.cognitive-cart-pulse-visible {
	opacity: 1;
	transform: translateY(0);
}

.cognitive-cart-pulse-text {
	font-size: 14px;
	line-height: 1.4;
}
