/* Fake Order Notification - Styles */

.fon-popup {
	position: fixed;
	z-index: 999999;
	max-width: 320px;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hind Siliguri", Arial, sans-serif;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: auto;
	border: 1px solid #eaeaea;
}

.fon-popup.fon-show {
	opacity: 1;
	transform: translateY(0);
}

.fon-popup.fon-hide {
	opacity: 0;
	transform: translateY(20px);
}

/* Positions */
.fon-position-bottom-left {
	bottom: 20px;
	left: 20px;
}
.fon-position-bottom-right {
	bottom: 20px;
	right: 20px;
}
.fon-position-top-left {
	top: 20px;
	left: 20px;
}
.fon-position-top-right {
	top: 20px;
	right: 20px;
}

.fon-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #e9f7ef;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.fon-content {
	flex: 1;
	line-height: 1.4;
}

.fon-title {
	font-size: 13px;
	color: #1a1a1a;
	font-weight: 600;
}

.fon-title .fon-name {
	color: #16a34a;
}

.fon-product {
	font-size: 12.5px;
	color: #444;
	margin-top: 2px;
}

.fon-time {
	font-size: 11.5px;
	color: #999;
	margin-top: 3px;
}

.fon-close {
	position: absolute;
	top: 6px;
	right: 8px;
	cursor: pointer;
	color: #bbb;
	font-size: 14px;
	line-height: 1;
}

.fon-close:hover {
	color: #666;
}

.fon-badge {
	display: inline-block;
	background: #fff3cd;
	color: #92400e;
	font-size: 9.5px;
	font-weight: 700;
	padding: 1px 6px;
	border-radius: 4px;
	margin-left: 6px;
	vertical-align: middle;
	letter-spacing: 0.3px;
}
