/* VOX toast + cart AJAX polish */
.vox-toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 100000;
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: calc(100vw - 32px);
	padding: 14px 18px;
	background: #121212;
	color: #fff;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
	font-family: "Source Sans Pro", "Open Sans", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.35;
	transform: translate(-50%, 16px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.vox-toast__msg {
	flex: 1;
	min-width: 0;
}

.vox-toast__cart {
	flex-shrink: 0;
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.vox-toast__cart:hover,
.vox-toast__cart:focus,
.vox-toast__cart:focus-visible {
	color: #ee1d23;
	outline: none !important;
	box-shadow: none !important;
}

.woocommerce-cart-form.vox-cart--updating {
	opacity: 0.72;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.woocommerce-cart-form .vox-cart__update--js-hidden {
	display: none !important;
}

@media (max-width: 480px) {
	.vox-toast {
		left: 12px;
		right: 12px;
		bottom: 16px;
		transform: translate(0, 16px);
		max-width: none;
	}

	.vox-toast.is-visible {
		transform: translate(0, 0);
	}
}
