/* Sweep to right */
.modern-btn-anim-sweep-right .elementor-button {
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: color 0.3s ease;
}
.modern-btn-anim-sweep-right .elementor-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 100%;
	bottom: 0;
	background: rgba(255, 255, 255, 0.2);
	z-index: -1;
	transition: right 0.3s ease-out;
}
.modern-btn-anim-sweep-right .elementor-button:hover::before {
	right: 0;
}

/* Sweep to left */
.modern-btn-anim-sweep-left .elementor-button {
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: color 0.3s ease;
}
.modern-btn-anim-sweep-left .elementor-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 100%;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.2);
	z-index: -1;
	transition: left 0.3s ease-out;
}
.modern-btn-anim-sweep-left .elementor-button:hover::before {
	left: 0;
}

/* Bounce */
@keyframes modernBtnBounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-10px); }
	60% { transform: translateY(-5px); }
}
.modern-btn-anim-bounce .elementor-button:hover {
	animation: modernBtnBounce 1s;
}

/* Glow */
.modern-btn-anim-glow .elementor-button {
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.modern-btn-anim-glow .elementor-button:hover {
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
	transform: scale(1.02);
}

/* Lift */
.modern-btn-anim-lift .elementor-button {
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.modern-btn-anim-lift .elementor-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
