.pfgeo-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(10, 18, 14, 0.72);
	backdrop-filter: blur(4px);
}

.pfgeo-overlay[hidden] {
	display: none;
}

.pfgeo-dialog {
	position: relative;
	width: min(100%, 440px);
	padding: 36px 32px 28px;
	background: #fff;
	color: #111;
	border-radius: 4px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
	font-family: inherit;
}

.pfgeo-close {
	position: absolute;
	top: 12px;
	right: 14px;
	border: 0;
	background: transparent;
	color: #444;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.pfgeo-kicker {
	margin: 0 0 8px;
	color: #3d7a3a;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.pfgeo-title {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.pfgeo-copy {
	margin: 0 0 24px;
	color: #444;
	font-size: 16px;
	line-height: 1.5;
}

.pfgeo-actions {
	display: grid;
	gap: 10px;
}

.pfgeo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	border: 0;
	border-radius: 2px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
}

.pfgeo-btn-primary {
	background: #111;
	color: #fff;
}

.pfgeo-btn-primary:hover,
.pfgeo-btn-primary:focus {
	background: #3d7a3a;
	color: #fff;
}

.pfgeo-btn-ghost {
	background: transparent;
	color: #111;
}

.pfgeo-btn-ghost:hover,
.pfgeo-btn-ghost:focus {
	background: #f3f3f3;
}

body.pfgeo-open {
	overflow: hidden;
}
