/* Barcode under Add to Cart */
.fuse5-barcode-box {
	margin-top: 16px;
	padding: 12px;
	text-align: center;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	max-width: 300px;
}

.fuse5-barcode svg {
	max-width: 100%;
	height: auto;
}

.fuse5-barcode-text {
	font-family: monospace;
	font-size: 15px;
	letter-spacing: 2px;
}

.fuse5-barcode-hint {
	margin: 6px 0 0;
	font-size: 12px;
	color: #777;
}

/* Scan-to-cart toast */
.fuse5-scan-toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translate(-50%, 20px);
	z-index: 100000;
	max-width: 92vw;
	padding: 14px 18px;
	background: #222;
	color: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.fuse5-scan-toast.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.fuse5-scan-toast.is-success {
	background: #1a7d1a;
}

.fuse5-scan-toast.is-error {
	background: #a33;
}

.fuse5-scan-toast-msg {
	font-size: 15px;
	text-align: center;
}

.fuse5-scan-toast-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 10px;
}

.fuse5-scan-toast-actions a {
	white-space: nowrap;
}
