Regional geo popup
.gruve-geo-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(6, 20, 14, 0.75);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gruve-geo-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.gruve-geo-modal {
	position: relative;
	width: 100%;
	max-width: 460px;
	padding: 40px 36px 36px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	text-align: center;
	transform: translateY(16px) scale(0.98);
	transition: transform 0.3s ease;
}
.gruve-geo-overlay.is-visible .gruve-geo-modal {
	transform: translateY(0) scale(1);
}

.gruve-geo-x {
	position: absolute;
	top: 14px;
	right: 16px;
	border: none;
	background: transparent;
	color: #888;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 8px;
	transition: color 0.2s ease;
}
.gruve-geo-x:hover { color: #000; }

.gruve-geo-flag {
	display: inline-block;
	margin-bottom: 16px;
	padding: 6px 16px;
	background: var(--primary-color, #21A55E);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 999px;
}

.gruve-geo-title {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 700;
	color: #0f1b17;
}
.gruve-geo-body {
	margin: 0 0 28px;
	font-size: 15px;
	line-height: 1.55;
	color: #555;
}

.gruve-geo-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.gruve-geo-go {
	display: inline-block;
	padding: 14px 28px;
	background: var(--secondary-color, #CCFC00);
	color: #0f1b17;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	border-radius: 8px;
	transition: filter 0.2s ease, transform 0.2s ease;
}
.gruve-geo-go:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}
.gruve-geo-stay {
	padding: 12px 20px;
	border: none;
	background: transparent;
	color: #777;
	font-size: 14px;
	cursor: pointer;
	transition: color 0.2s ease;
}
.gruve-geo-stay:hover { color: #0f1b17; }

body.gruve-geo-open { overflow: hidden; }

@media (max-width: 480px) {
	.gruve-geo-modal { padding: 34px 22px 26px; }
	.gruve-geo-title { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
	.gruve-geo-overlay,
	.gruve-geo-modal { transition: none; }
}