/**
 * PN Sitewide Add-To-Cart Toast
 */
.pn-cart-toast {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 99999;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	max-width: min(360px, calc(100vw - 32px));
	padding: 11px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14), 0 2px 8px rgba(15, 23, 42, 0.08);
	color: #1f2937;
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.pn-cart-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.pn-cart-toast__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: #1f2937;
	color: #ffffff;
}

.pn-cart-toast__icon svg {
	display: block;
	width: 12px;
	height: 12px;
	fill: currentColor;
}

.pn-cart-toast__message {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 640px) {
	.pn-cart-toast {
		right: 16px;
		bottom: 16px;
		left: 16px;
		max-width: none;
	}
}
