/**
 * Voxel City Filter — стили баннера-памяти города.
 */
.vcf-geo-banner {
	position: fixed;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%) translateY(20px);
	z-index: 2147483000;
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: calc(100% - 32px);
	padding: 12px 16px;
	background: #0f172a;
	color: #fff;
	border-radius: 14px;
	box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.45);
	font-size: 14px;
	line-height: 1.4;
	opacity: 0;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.vcf-geo-banner.vcf-geo-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.vcf-geo-text {
	font-weight: 600;
	margin-right: 4px;
}

.vcf-geo-btn {
	cursor: pointer;
	border: none;
	border-radius: 10px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
	font-family: inherit;
	white-space: nowrap;
	transition: opacity 0.15s ease, background 0.15s ease;
}

.vcf-geo-switch {
	background: #4f46e5;
	color: #fff;
}

.vcf-geo-switch:hover {
	background: #4338ca;
}

.vcf-geo-stay {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.vcf-geo-stay:hover {
	background: rgba(255, 255, 255, 0.22);
}

.vcf-geo-close {
	cursor: pointer;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 22px;
	line-height: 1;
	padding: 0 4px;
	transition: color 0.15s ease;
}

.vcf-geo-close:hover {
	color: #fff;
}

@media (max-width: 600px) {
	.vcf-geo-banner {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
		bottom: 12px;
	}
	.vcf-geo-text {
		width: 100%;
		margin-bottom: 4px;
	}
}
