/* Minimal, deliberately generic feedback states for a link that could be
   attached to any Elementor element (Icon, Button, Button Group, etc.) —
   see wc-add-to-cart-link.js. Kept intentionally light (opacity + a subtle
   scale) rather than any color/shape assumption, since this has to look
   reasonable on top of whatever styling the user already applied. */
.xtool-dt-atc-loading {
	opacity: 0.6;
	pointer-events: none;
	cursor: default;
}

.xtool-dt-atc-added {
	animation: xtool-dt-atc-pulse 0.5s ease;
}

@keyframes xtool-dt-atc-pulse {
	0% {
		transform: scale(1);
	}
	40% {
		transform: scale(1.12);
	}
	100% {
		transform: scale(1);
	}
}
