/**
 * Custom cursor — matches test3.ant Elementor footer snippet.
 */

.cursor {
	position: fixed;
	width: 25px;
	height: 25px;
	background: #e0cee5;
	border-radius: 50%;
	pointer-events: none;
	z-index: 999999;
	transform: translate(-50%, -50%);
	transition: all 0.15s ease;
	box-shadow: 0 0 15px #e0cee5, 0 0 30px #e0cee5;
}

.cursor.active {
	background: transparent;
	border: 2px solid #e0cee5;
	transform: translate(-50%, -50%) scale(1.8);
	box-shadow: 0 0 20px #e0cee5, 0 0 40px #e0cee5;
}

.cursor.click {
	transform: translate(-50%, -50%) scale(1.2);
}

@media (max-width: 768px) {
	.cursor {
		display: none !important;
	}
}
