/*
Theme Name: Hello Biz Child
Theme URI: https://elementor.com/products/hello-biz/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-biz
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Biz is a free, user-friendly Hybrid WordPress Theme that was crafted for seamless integration with the Elementor site builder and tailored specifically for business websites. Perfect for beginners, but far from limited to just them, it features a dedicated beginner-oriented “Home” screen to simplify and streamline the web-building process. Hello Biz also integrates with Elementor’s premium features, giving you access to tools like AI, and accessibility enhancements in one place. Whether launching a startup site or refining a company portfolio, Hello Biz offers a solid, responsive foundation for all web creators. Report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team validates, triages, and handles vulnerabilities. Report here: https://patchstack.com/database/wordpress/theme/hello-biz/vdp.
Tags: flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready,style-variations
Version: 1.2.0.1774016765
Updated: 2026-03-20 14:26:05

*/
/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.fab-wa {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 9999;
	display: flex;
	align-items: center;
	gap: 0;
	background: #25D366;
	color: #ffffff;
	border-radius: 3rem;
	padding: 0.875rem;
	text-decoration: none;
	box-shadow:
		0 4px 20px rgba(37, 211, 102, 0.35),
		0 2px 8px rgba(0, 0, 0, 0.15);
	transition:
		transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 0.3s ease,
		gap 0.3s ease,
		padding 0.3s ease,
		background 0.3s ease;
	animation: fab-wa-entrance 0.6s 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

/* Entrance — slide up + scale */
@keyframes fab-wa-entrance {
	0% {
		opacity: 0;
		transform: translateY(2rem) scale(0.5);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Hover — expand to show label */
.fab-wa:hover,
.fab-wa:focus-visible {
	gap: 0.5rem;
	padding: 0.875rem 1.25rem 0.875rem 0.875rem;
	transform: scale(1.05);
	box-shadow:
		0 8px 30px rgba(37, 211, 102, 0.45),
		0 4px 12px rgba(0, 0, 0, 0.2);
	background: #1ebe5a;
	color: #ffffff;
}

.fab-wa:focus-visible {
	outline: 2px solid #CEC7B1;
	outline-offset: 3px;
}

/* Icon */
.fab-wa__icon {
	flex-shrink: 0;
	display: block;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

/* Label — hidden by default, revealed on hover */
.fab-wa__label {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	white-space: nowrap;
	max-width: 0;
	overflow: hidden;
	opacity: 0;
	transition:
		max-width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
		opacity 0.25s ease;
}

.fab-wa:hover .fab-wa__label,
.fab-wa:focus-visible .fab-wa__label {
	max-width: 8rem;
	opacity: 1;
}

/* Pulse ring — breathing effect */
.fab-wa__pulse {
	position: absolute;
	inset: -4px;
	border-radius: inherit;
	border: 2px solid rgba(37, 211, 102, 0.4);
	animation: fab-wa-pulse 3s ease-in-out infinite 2.5s;
	pointer-events: none;
}

@keyframes fab-wa-pulse {
	0%, 100% {
		opacity: 0;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.15);
	}
}

.fab-wa:hover .fab-wa__pulse {
	animation: none;
	opacity: 0;
}

/* Accessibility — reduce motion */
@media (prefers-reduced-motion: reduce) {
	.fab-wa {
		animation: none;
	}

	.fab-wa__pulse {
		display: none;
	}
}

/* Mobile */
@media (max-width: 600px) {
	.fab-wa {
		bottom: 1.25rem;
		right: 1.25rem;
		padding: 0.75rem;
	}

	.fab-wa__label {
		max-width: 0;
		opacity: 0;
	}
}

