/* Sales notifications (FOMO) */
.jum-fomo {
	position: fixed;
	z-index: 9200;
	bottom: 20px;
	max-width: 340px;
	width: calc(100% - 40px);
	display: flex;
	align-items: stretch;
	background: #fff;
	border: 1px solid var(--jum-border-soft, #e6e8ec);
	border-radius: 14px;
	box-shadow: 0 14px 40px -12px rgba(15, 23, 42, 0.28);
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;
	overflow: hidden;
}

.jum-fomo--bl { left: 20px; }
.jum-fomo--br { right: 20px; }

.jum-fomo.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.jum-fomo__card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 12px 12px 12px;
	text-decoration: none;
	color: inherit;
	min-width: 0;
	flex: 1;
}

.jum-fomo__img {
	flex: 0 0 50px;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	background: var(--jum-soft, #f4f4f5) center / cover no-repeat;
}

.jum-fomo__body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.jum-fomo__line {
	font-size: 12.5px;
	color: var(--jum-muted, #6b7280);
	line-height: 1.3;
}

.jum-fomo__line strong {
	color: var(--jum-text, #1f2430);
	font-weight: 700;
}

.jum-fomo__title {
	font-size: 13px;
	font-weight: 700;
	color: var(--jum-text, #1f2430);
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.jum-fomo__meta {
	font-size: 11.5px;
	color: #9aa0ab;
	display: flex;
	align-items: center;
	gap: 5px;
}

.jum-fomo__verified {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #1a7f37;
	color: #fff;
	font-size: 9px;
	line-height: 1;
}

.jum-fomo__close {
	flex: 0 0 auto;
	align-self: flex-start;
	border: 0;
	background: none;
	color: #b6bcc6;
	font-size: 20px;
	line-height: 1;
	padding: 6px 9px;
	cursor: pointer;
}

.jum-fomo__close:hover {
	color: var(--jum-text, #1f2430);
}

@media (max-width: 520px) {
	.jum-fomo {
		max-width: none;
		width: calc(100% - 24px);
	}

	.jum-fomo--bl { left: 12px; }
	.jum-fomo--br { right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
	.jum-fomo {
		transition: opacity 0.2s ease;
		transform: none;
	}
}
