/**
 * Hide stray text caret when focus lands on the document root / chrome.
 * Everything inside body keeps a normal caret for text and form fields.
 */
html {
	caret-color: transparent;
}

body * {
	caret-color: auto;
}

/* Carousel UI: avoid selection caret on numeric pagination / drag chrome */
.custom-pagination,
.custom-pagination *,
.main-banner-sec .owl-carousel .owl-stage-outer,
.main-banner-sec .owl-carousel .owl-item {
	-webkit-user-select: none;
	user-select: none;
}

/* Hero copy stays selectable */
.main-banner-sec .slider-content,
.main-banner-sec .slider-content * {
	-webkit-user-select: text;
	user-select: text;
}
