.eon-popup {
	position: fixed;
	bottom: 25px;
	left: -450px;
	width: 320px;
	max-width: calc(100vw - 40px);
	z-index: 999999;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 12px 18px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: left 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.eon-popup.eon-active {
	left: 20px;
}

.eon-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	margin-right: 15px;
	background: #e9f7ef;
	border-radius: 10px;
}

.eon-icon-box .dashicons {
	width: 24px;
	height: 24px;
	color: #28a745;
	font-size: 24px;
}

.eon-details {
	min-width: 0;
	color: #444;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 13px;
	line-height: 1.5;
}

.eon-message {
	overflow-wrap: anywhere;
}

.eon-message strong {
	color: #000;
	font-size: 14px;
}

.eon-product {
	display: none;
	margin-top: 2px;
	color: #667085;
	font-size: 12px;
}

.eon-product.eon-has-product {
	display: block;
}

.eon-verified {
	display: flex;
	align-items: center;
	margin-top: 3px;
	color: #28a745;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.eon-verified .dashicons {
	width: 14px;
	height: 14px;
	margin-right: 4px;
	font-size: 14px;
}

@media (max-width: 480px) {
	.eon-popup {
		bottom: 16px;
		max-width: calc(100vw - 24px);
		padding: 10px 12px;
	}

	.eon-popup.eon-active {
		left: 12px;
	}
}
