/* HARCHI KOLO — unified user activity status */
.hk-presence {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	min-height: 32px;
	padding: 6px 11px;
	color: #49645a;
	background: #fffdf8;
	border: 1px solid rgba(18, 63, 47, 0.14);
	border-radius: 999px;
	box-shadow: 0 5px 14px rgba(18, 63, 47, 0.05);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.25;
	vertical-align: middle;
}

.hk-presence__dot {
	position: relative;
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	background: #c79a2b;
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(199, 154, 43, 0.13);
}

.hk-presence.is-online {
	color: #123f2f;
	background: #fbfdfb;
	border-color: rgba(18, 63, 47, 0.19);
}

.hk-presence.is-online .hk-presence__dot {
	background: #123f2f;
	box-shadow: 0 0 0 3px rgba(18, 63, 47, 0.12);
}

.hk-presence.is-online .hk-presence__dot::after {
	content: '';
	position: absolute;
	inset: -4px;
	border: 1px solid rgba(18, 63, 47, 0.22);
	border-radius: 50%;
	animation: hk-presence-pulse 2.4s ease-out infinite;
}

.hk-presence__label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hk-presence--vendor {
	margin: 7px 0 3px;
}

.hk-presence--listing {
	margin: 0 0 10px;
}

.hk-presence--chat {
	margin: 0 auto 0 0;
}

@keyframes hk-presence-pulse {
	0% { transform: scale(.7); opacity: .55; }
	75%, 100% { transform: scale(1.55); opacity: 0; }
}

@media (max-width: 700px) {
	.hk-presence {
		gap: 7px;
		min-height: 30px;
		padding: 6px 10px;
		font-size: 12.5px;
	}

	.hk-presence--listing,
	.hk-presence--vendor {
		margin-bottom: 8px;
	}

	.hk-presence--chat {
		width: fit-content;
		max-width: calc(100vw - 42px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hk-presence.is-online .hk-presence__dot::after {
		animation: none;
	}
}
