/**
 * Preset button styles for Flineo Elementor widgets (optional; default unchanged in PHP).
 */

.flineo-e-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 25px 40px;
	border-radius: 999px;
	text-decoration: none;
	box-sizing: border-box;
	border: 0;
	cursor: pointer;
	font-weight: 600;
	line-height: 1.2;
	transition: box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease,
		filter 0.3s ease, transform 0.3s ease;
}

.flineo-e-btn__text {
	display: inline-block;
}

.flineo-e-btn__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.flineo-e-btn__icon svg {
	width: 1.25em;
	height: 1.25em;
	display: block;
}

.flineo-e-btn__icon--img img {
	width: 1.25em;
	height: 1.25em;
	object-fit: contain;
	display: block;
}

/* Orange / coral gradient */
.flineo-e-btn--orange {
	background: linear-gradient(90deg, #c13c3c 0%, #ff6b6b 50%, #ffa94d 100%);
	color: #fff;
}

.flineo-e-btn--orange:hover {
	box-shadow: 0 0 28px rgba(255, 107, 107, 0.55);
	filter: brightness(1.06);
}

/* Purple → cyan */
.flineo-e-btn--purple_cyan {
	background: linear-gradient(90deg, #7b3ff3 0%, #4db8e3 100%);
	color: #fff;
}

.flineo-e-btn--purple_cyan:hover {
	box-shadow: 0 0 28px rgba(77, 184, 227, 0.5);
	filter: brightness(1.06);
}

/* Outline: gradient ring, fill on hover */
.flineo-e-btn--outline {
	position: relative;
	z-index: 0;
	background: transparent;
	color: #fff;
}

.flineo-e-btn--outline::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 2px;
	background: linear-gradient(90deg, #7b3ff3, #4db8e3);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index: -1;
	pointer-events: none;
}

.flineo-e-btn--outline:hover::before {
	opacity: 0;
}

.flineo-e-btn--outline:hover {
	background: linear-gradient(90deg, #7b3ff3, #4db8e3);
	box-shadow: 0 0 24px rgba(123, 63, 243, 0.45);
}

/* White default, gradient + white text on hover */
.flineo-e-btn--white {
	background: #fff;
	color: #7b3ff3;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.flineo-e-btn--white:hover {
	background: linear-gradient(90deg, #7b3ff3, #4db8e3);
	color: #fff;
	box-shadow: 0 0 24px rgba(123, 63, 243, 0.45);
}
