/* =========================================================
   VOLGA TOOLS — WHATSAPP
========================================================= */

.vt-whatsapp-chat {
	position: fixed;
	left: 25px;
	bottom: 25px;
	z-index: 9998;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 54px;
	padding: 8px 16px 8px 10px;
	background: #25d366;
	color: #fff !important;
	border: 0;
	border-radius: 999px;
	box-shadow: 0 7px 22px rgba(0,0,0,.18);
	font-family: inherit;
	line-height: 1.2;
	text-decoration: none !important;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.vt-whatsapp-chat:hover,
.vt-whatsapp-chat:focus {
	background: #20bd5a;
	color: #fff !important;
	text-decoration: none !important;
	transform: translateY(-2px);
	box-shadow: 0 9px 26px rgba(0,0,0,.23);
}

.vt-whatsapp-chat:focus-visible {
	outline: 3px solid rgba(37,211,102,.35);
	outline-offset: 3px;
}

.vt-whatsapp-chat__icon {
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.16);
	border-radius: 50%;
	color: #fff;
}

.vt-whatsapp-chat__icon svg { display: block; }
.vt-whatsapp-chat__text { display:flex; flex-direction:column; gap:2px; white-space:nowrap; }
.vt-whatsapp-chat__title { font-size:14px; font-weight:700; }
.vt-whatsapp-chat__status { font-size:11px; font-weight:400; opacity:.92; }

@media (max-width: 1024px) {
	.vt-whatsapp-chat {
		left: var(--vt-floating-edge-left, 20px);
		bottom: var(--vt-floating-bottom, 24px);
		width: var(--vt-floating-size, 42px);
		height: var(--vt-floating-size, 42px);
		min-height: var(--vt-floating-size, 42px);
		padding: 0;
		justify-content: center;
		border-radius: 50%;
	}

	.vt-whatsapp-chat__icon {
		width: 100%;
		height: 100%;
		flex: 0 0 100%;
		background: transparent;
	}

	.vt-whatsapp-chat__icon svg {
		width: 24px;
		height: 24px;
		transform: translateX(1px);
	}

	.vt-whatsapp-chat__text { display:none; }
}

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