.tc-whatsapp-chat {
	position: fixed;
	right: 24px;
	bottom: 92px;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 54px;
	padding: 8px 18px 8px 9px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	background: #168c46;
	box-shadow: 0 12px 30px rgba(8, 66, 32, 0.24);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.tc-whatsapp-chat:hover {
	transform: translateY(-2px);
	background: #11763a;
	box-shadow: 0 16px 34px rgba(8, 66, 32, 0.3);
	color: #fff;
}

.tc-whatsapp-chat:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
	box-shadow: 0 0 0 6px rgba(22, 140, 70, 0.38);
}

.tc-whatsapp-chat__icon {
	display: grid;
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
}

.tc-whatsapp-chat__icon svg {
	display: block;
	width: 28px;
	height: 28px;
}

@media (max-width: 767px) {
	.tc-whatsapp-chat {
		right: 16px;
		bottom: 82px;
		width: 56px;
		height: 56px;
		min-height: 0;
		padding: 0;
		justify-content: center;
	}

	.tc-whatsapp-chat__icon {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}

	.tc-whatsapp-chat__label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tc-whatsapp-chat {
		transition: none;
	}
}
