/**
 * Plant Coins — floating badge. Deliberately theme-agnostic: fixed
 * positioning + high z-index so it sits above any theme's header.
 */
.prs-coins-badge {
	position: fixed;
	top: 12px;
	right: 16px;
	z-index: 99999;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #2e7d32;
	color: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	padding: 8px 12px;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	user-select: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.prs-coins-badge:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.prs-coins-badge.is-loading {
	opacity: 0.7;
}

.prs-coins-badge-icon {
	font-size: 15px;
	line-height: 1;
}

.prs-coins-badge-amount {
	min-width: 1ch;
}

@media (max-width: 600px) {
	.prs-coins-badge {
		top: auto;
		bottom: 16px;
		right: 12px;
		padding: 10px 14px;
	}
}
