.sales-toast {
	position: fixed;
	bottom: 20px;
	left: 20px;
	background: rgb(var(--color-background));
	color: rgb(var(--color-foreground));
	padding: 15px 20px;
	border-radius: 8px;
	display: flex;
	gap: 10px;
	align-items: center;
	max-width: 350px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 10000;
}

.sales-toast.show {
	opacity: 1;
	pointer-events: auto;
}

.toast-img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
}

.toast-content {
	flex: 1;
}

.sales-toast-link {
	color: rgb(var(--color-link));
	text-decoration: none;
}