/**
 * WhatsApp contact button (single listing) + form field styling.
 */

/* Floating click-to-chat button on single listing pages */
.ph-wa-floating {
	position: fixed;
	inset-inline-start: 20px;
	bottom: 90px;
	z-index: 9990;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	background: #25d366;
	color: #fff !important;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
	text-decoration: none !important;
	transition: transform 0.15s ease, background 0.15s ease;
}

.ph-wa-floating:hover {
	transform: translateY(-2px);
	background: #1ebe5b;
	color: #fff !important;
}

.ph-wa-floating .ph-wa-icon {
	display: inline-flex;
	align-items: center;
}

/* Login variant (guests) – neutral color, prompts sign-in */
.ph-wa-floating--login {
	background: #334155;
	box-shadow: 0 6px 18px rgba(51, 65, 85, 0.35);
}

.ph-wa-floating--login:hover {
	background: #1e293b;
}

/* Add-listing form field */
.ph-wa-field .ph-wa-input-wrap input:focus {
	outline: none;
	border-color: #25d366;
	box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.ph-wa-field .ph-wa-error {
	font-size: 13px;
}

@media (max-width: 767px) {
	.ph-wa-floating {
		inset-inline-start: 12px;
		bottom: 80px;
		padding: 10px 14px;
		font-size: 13px;
	}
}
