.iew-woo-toast {
	--iew-toast-bg: #0f172a;
	--iew-toast-text: #f8fafc;
	--iew-toast-muted: #cbd5e1;
	--iew-toast-accent: #22c55e;
	--iew-toast-button-bg: #2563eb;
	--iew-toast-button-text: #ffffff;
	--iew-toast-close: #cbd5e1;
	--iew-toast-border: rgba(248, 250, 252, 0.18);
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999999;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 12px;
	width: min(500px, calc(100vw - 24px));
	padding: 14px;
	border: 1px solid var(--iew-toast-border);
	border-radius: 16px;
	background: var(--iew-toast-bg);
	color: var(--iew-toast-text);
	box-shadow: 0 16px 36px rgba(2, 8, 23, 0.3);
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.iew-woo-toast[hidden] {
	display: none !important;
}

.iew-woo-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.iew-woo-toast__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--iew-toast-accent);
	color: var(--iew-toast-button-text);
	font-size: 14px;
	font-weight: 700;
}

.iew-woo-toast__content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.iew-woo-toast__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--iew-toast-text);
}

.iew-woo-toast__description {
	font-size: 12px;
	line-height: 1.4;
	color: var(--iew-toast-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.iew-woo-toast__cart-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 16px;
	border-radius: 10px;
	background: var(--iew-toast-button-bg) !important;
	color: var(--iew-toast-button-text) !important;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none !important;
	border: 0 !important;
	box-shadow: none !important;
	line-height: 1;
	white-space: nowrap;
}

.iew-woo-toast a.iew-woo-toast__cart-link,
.iew-woo-toast a.iew-woo-toast__cart-link:visited,
.iew-woo-toast a.iew-woo-toast__cart-link:active {
	color: var(--iew-toast-button-text) !important;
}

.iew-woo-toast__cart-link:hover,
.iew-woo-toast__cart-link:focus {
	filter: brightness(0.95);
	color: var(--iew-toast-button-text) !important;
}

.iew-woo-toast button.iew-woo-toast__close,
.iew-woo-toast .iew-woo-toast__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 0 !important;
	border-radius: 10px;
	background: transparent !important;
	color: var(--iew-toast-close) !important;
	font-size: 26px;
	font-family: inherit;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	padding: 0 !important;
	box-shadow: none !important;
	text-align: center;
	text-decoration: none !important;
	appearance: none;
	-webkit-appearance: none;
}

.iew-woo-toast button.iew-woo-toast__close:hover,
.iew-woo-toast button.iew-woo-toast__close:focus,
.iew-woo-toast .iew-woo-toast__close:hover,
.iew-woo-toast .iew-woo-toast__close:focus {
	background: rgba(255, 255, 255, 0.08) !important;
	color: var(--iew-toast-text) !important;
}

@media (max-width: 767px) {
	.iew-woo-toast {
		right: 12px;
		left: 12px;
		bottom: 12px;
		width: auto;
		grid-template-columns: auto minmax(0, 1fr) auto;
	}

	.iew-woo-toast__content {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}

	.iew-woo-toast__icon {
		width: 24px;
		height: 24px;
		font-size: 12px;
	}

	.iew-woo-toast__title {
		font-size: 15px;
	}

	.iew-woo-toast__description {
		font-size: 13px;
	}

	.iew-woo-toast__close {
		grid-column: 3 / 4;
		grid-row: 1 / 2;
		width: 32px;
		height: 32px;
		font-size: 24px;
	}

	.iew-woo-toast__cart-link {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		justify-self: start;
		justify-content: flex-start;
		margin-top: 2px;
		height: 38px;
		padding: 0 14px 0 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.iew-woo-toast {
		transition: none;
	}
}
