/* Westshield WhatsApp Chat — floating button + inline shortcode button */

.tvwa-float-btn {
	position: fixed;
	bottom: 24px;
	z-index: 9997; /* one below the Quote & Contact Forms modal (9998/9999) */
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	text-decoration: none;
}

.tvwa-float-btn:hover {
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
	color: #ffffff;
}

.tvwa-pos-left {
	left: 24px;
}

.tvwa-pos-right {
	right: 24px;
}

.tvwa-inline-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #25d366;
	color: #ffffff;
	padding: 12px 20px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: background 0.15s ease, transform 0.1s ease;
}

.tvwa-inline-btn:hover {
	background: #1ebe5a;
	color: #ffffff;
	transform: translateY(-1px);
}

.tvwa-inline-btn svg {
	width: 22px;
	height: 22px;
	flex: none;
}

@media (max-width: 480px) {
	.tvwa-float-btn {
		width: 52px;
		height: 52px;
		bottom: 18px;
	}
	.tvwa-pos-left {
		left: 18px;
	}
	.tvwa-pos-right {
		right: 18px;
	}
}
