/* Minimal helper styles kept while using Tailwind defaults */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.hn { line-height: 1; display: inline-block; }

/* keep subtle pointer for product cards when hovering */
#catalog-grid article:hover { cursor: pointer; }

/* Disable text selection globally, but allow in form fields */
* {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}

input, textarea, select, option, [contenteditable="true"] {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}
