/* Trademark Performance - WhatsApp Engagement
   Inherits the Elementor button system: Work Sans (font-family:inherit),
   weight 500, 6px radius, brand blue #0a4bc0.

   Note on selectors: the Elementor global kit ships ".elementor-kit-6 a"
   (specificity 0,1,1) setting colour, font-size and weight on every anchor.
   Class names are therefore doubled (e.g. .tmp-wa-btn.tmp-wa-btn--primary,
   specificity 0,2,0) so these rules win on class count without !important. */

.tmp-wa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: inherit;
	line-height: 16px;
	border-radius: 6px;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.tmp-wa-btn .tmp-wa-btn__icon {
	width: 1.15em;
	height: 1.15em;
	flex: 0 0 auto;
	fill: currentColor;
}

.tmp-wa-btn.tmp-wa-btn--primary {
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 500;
	background-color: #0a4bc0;
	color: #fff;
	border: 1px solid #0a4bc0;
}

.tmp-wa-btn.tmp-wa-btn--primary:hover,
.tmp-wa-btn.tmp-wa-btn--primary:focus,
.tmp-wa-btn.tmp-wa-btn--primary:active {
	background-color: #08379a;
	border-color: #08379a;
	color: #fff;
}

/* Deliberately subordinate: outline only, one step smaller than a primary CTA. */
.tmp-wa-btn.tmp-wa-btn--secondary {
	padding: 9px 18px;
	font-size: 14px;
	font-weight: 500;
	background-color: transparent;
	color: #0a4bc0;
	border: 1px solid #0a4bc0;
}

.tmp-wa-btn.tmp-wa-btn--secondary:hover,
.tmp-wa-btn.tmp-wa-btn--secondary:focus,
.tmp-wa-btn.tmp-wa-btn--secondary:active {
	background-color: #0a4bc0;
	color: #fff;
}

.tmp-wa-btn.tmp-wa-btn--text {
	padding: 4px 0;
	font-size: 14px;
	font-weight: 500;
	background: none;
	border: 0;
	color: #0a4bc0;
	text-decoration: underline;
}

.tmp-wa-btn.tmp-wa-btn--text:hover,
.tmp-wa-btn.tmp-wa-btn--text:focus {
	color: #08379a;
}

/* Visible keyboard focus on any background: brand outline plus a white/brand
   double ring, so it reads against both the white and the dark sections. */
.tmp-wa-btn.tmp-wa-btn:focus,
.tmp-wa-btn.tmp-wa-btn:focus-visible,
.tmp-wa-formlink.tmp-wa-formlink:focus,
.tmp-wa-formlink.tmp-wa-formlink:focus-visible,
.tmp-wa-float .tmp-wa-float__link:focus,
.tmp-wa-float .tmp-wa-float__link:focus-visible {
	outline: 2px solid #0a4bc0;
	outline-offset: 2px;
	box-shadow: 0 0 0 2px #fff, 0 0 0 5px #0a4bc0;
}

/* "Prefer to fill in a form?" - tuned for the dark cards it currently sits on
   (10.7:1 on the Contact card, 11:1 on the supplements block). On a light
   background add the --dark modifier. */
.tmp-wa-formlink.tmp-wa-formlink {
	display: inline-block;
	margin-top: 10px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 400;
	color: #c7cbd1;
	text-decoration: underline;
}

.tmp-wa-formlink.tmp-wa-formlink:hover,
.tmp-wa-formlink.tmp-wa-formlink:focus {
	color: #fff;
}

.tmp-wa-formlink.tmp-wa-formlink--dark {
	color: #5a6270;
}

.tmp-wa-formlink.tmp-wa-formlink--dark:hover,
.tmp-wa-formlink.tmp-wa-formlink--dark:focus {
	color: #0a4bc0;
}

.tmp-wa-contact-cta {
	margin-bottom: 24px;
}

.tmp-wa-supplements-cta {
	margin-top: 24px;
}

.tmp-wa-myo-secondary {
	margin-top: 16px;
	text-align: center;
}

/* Floating button. Bottom-right, clear of the viewport edge, under any
   Elementor sticky header and above page content. */
.tmp-wa-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9990;
	line-height: 0;
}

.tmp-wa-float .tmp-wa-float__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #0a4bc0;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
	transition: background-color .2s ease, transform .2s ease;
}

.tmp-wa-float .tmp-wa-float__link svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.tmp-wa-float .tmp-wa-float__link:hover,
.tmp-wa-float .tmp-wa-float__link:focus {
	background-color: #08379a;
	color: #fff;
	transform: scale(1.06);
}

@media (max-width: 767px) {
	.tmp-wa-float {
		right: 14px;
		bottom: 14px;
	}

	.tmp-wa-float .tmp-wa-float__link {
		width: 52px;
		height: 52px;
	}

	.tmp-wa-float .tmp-wa-float__link svg {
		width: 26px;
		height: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tmp-wa-btn,
	.tmp-wa-float .tmp-wa-float__link {
		transition: none;
	}

	.tmp-wa-float .tmp-wa-float__link:hover,
	.tmp-wa-float .tmp-wa-float__link:focus {
		transform: none;
	}
}
