/* ===== HEAVENLY Smart UI Layer ===== */
/* Small, non-invasive utilities shared by the site runtime. */
body::before {
	position: fixed;
	width: 0;
	height: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	pointer-events: none;
	content: "desktop";
}

@media (max-width: 1024px) {
	body::before {
		content: "tablet";
	}
}

@media (max-width: 640px) {
	body::before {
		content: "mobile";
	}
}

[hidden] {
	display: none !important;
}

[aria-disabled="true"] {
	cursor: not-allowed;
}
