/*
	File: templates/gallery-return.css
	Purpose: Floating "back to template selection" pill shown on every template
	         page viewed through the juhriah.com gallery. Injected only into the
	         gallery copies — the standalone template trees do not carry it.
	Used by: every templates/<name>/<variant>/*.html page (link + .gallery-return anchor)
*/
.gallery-return {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 99999;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(11, 12, 16, 0.92);
	border: 1px solid rgba(0, 229, 176, 0.45);
	color: #00e5b0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(6px);
	transition: background 0.2s, transform 0.15s;
}
.gallery-return:hover,
.gallery-return:focus {
	background: #00e5b0;
	color: #0b0c10;
	text-decoration: none;
	transform: translateY(-2px);
}
.gallery-return .gallery-return-arrow {
	font-size: 14px;
	line-height: 1;
}
@media (max-width: 575.98px) {
	.gallery-return {
		left: 12px;
		bottom: 12px;
		padding: 9px 14px;
		font-size: 11px;
	}
}
