#fsn-wc-wrap {
	position: fixed;
	max-width: 360px;
	width: calc(100% - 32px);
	pointer-events: none;
}

.fsn-wc-toast {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--fsn-bg, #ffffff);
	border-radius: var(--fsn-radius, 12px);
	padding: 12px 14px;
	pointer-events: auto;
	position: relative;
	opacity: 0;
	transition: opacity .35s ease, transform .35s ease;
	font-family: inherit;
	line-height: 1.35;
	box-sizing: border-box;
}

.fsn-wc-toast.fsn-shadow {
	box-shadow: 0 10px 30px rgba(0, 0, 0, .12), 0 2px 8px rgba(0, 0, 0, .08);
}

.fsn-wc-toast.fsn-clickable {
	cursor: pointer;
}

.fsn-wc-toast img.fsn-wc-thumb {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 8px;
	flex: 0 0 auto;
}

.fsn-wc-body {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 13px;
	color: var(--fsn-text, #374151);
}

.fsn-wc-line1 {
	margin: 0 0 2px;
}

.fsn-wc-name {
	font-weight: 700;
	color: var(--fsn-name, #111827);
}

.fsn-wc-product {
	color: var(--fsn-link, #0e8a6e);
	font-weight: 600;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fsn-wc-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 3px;
	font-size: 11px;
	opacity: .75;
}

.fsn-wc-verified {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	color: var(--fsn-link, #0e8a6e);
	font-weight: 600;
}

.fsn-wc-close {
	position: absolute;
	top: 6px;
	right: 8px;
	width: 16px;
	height: 16px;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	color: var(--fsn-close, #0e8a6e);
	opacity: .6;
}

.fsn-wc-close:hover {
	opacity: 1;
}

.fsn-wc-close svg {
	width: 14px;
	height: 14px;
	display: block;
}

.fsn-pos-top {
	transform: translateY(-16px);
}

.fsn-pos-bottom {
	transform: translateY(16px);
}

.fsn-anim-pop {
	transform: scale(.9);
}

.fsn-wc-toast.fsn-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

@media (max-width: 600px) {
	#fsn-wc-wrap {
		max-width: calc(100% - 24px);
	}
	.fsn-wc-toast img.fsn-wc-thumb {
		width: 40px;
		height: 40px;
	}
}
