/* WNWL WhatsApp multi-contact selector. The existing floating button CSS stays authoritative. */
.wnwl-wa-panel {
	position: fixed;
	right: 24px;
	bottom: 148px;
	z-index: 201;
	width: min(320px, calc(100vw - 48px));
	max-height: calc(100vh - 172px);
	overflow: auto;
	padding: 18px;
	border: 1px solid rgba(16, 42, 67, .1);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(7, 31, 50, .2);
	color: #102a43;
}

.wnwl-wa-panel[hidden] { display: none; }
.wnwl-wa-panel__header { margin: 0 0 12px; }
.wnwl-wa-panel__header h2 { margin: 0; color: #102a43; font-size: 18px; line-height: 1.25; }
.wnwl-wa-panel__header p { margin: 5px 0 0; color: #627d98; font-size: 13px; line-height: 1.4; }
.wnwl-wa-contact-list { display: grid; gap: 8px; }

.wnwl-wa-contact {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	padding: 11px 12px;
	border: 1px solid #e6edf2;
	border-radius: 12px;
	background: #fff;
	color: #102a43 !important;
	text-decoration: none;
	transition: background-color .18s ease, border-color .18s ease;
}

.wnwl-wa-contact:hover { border-color: rgba(31, 174, 98, .35); background: #f2fbf6; }
.wnwl-wa-contact:focus-visible { outline: 3px solid rgba(31, 174, 98, .35); outline-offset: 2px; }
.wnwl-wa-contact__icon { display: grid; flex: 0 0 36px; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: #25b968; color: #fff; font-size: 16px; }
.wnwl-wa-contact__copy { display: grid; min-width: 0; gap: 2px; }
.wnwl-wa-contact__copy strong { overflow: hidden; color: #102a43; font-size: 14px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.wnwl-wa-contact__copy small { color: #627d98; font-size: 12px; line-height: 1.3; }

@media (max-width: 767px) {
	/* Keep the sales entry point visible without covering mobile content or controls. */
	.wnwl-wa-widget {
		display: flex;
		justify-content: flex-end;
		clear: both;
		padding: 16px;
		background: #fff;
	}
	.wnwl-whatsapp {
		position: static;
		right: auto;
		bottom: auto;
	}
	.wnwl-wa-panel {
		right: 16px;
		bottom: calc(16px + env(safe-area-inset-bottom));
		width: calc(100vw - 32px);
		max-height: calc(100vh - 32px - env(safe-area-inset-bottom));
		padding: 15px;
		border-radius: 14px;
	}
	.wnwl-wa-panel__header { margin-bottom: 10px; }
	.wnwl-wa-panel__header h2 { font-size: 17px; }
	.wnwl-wa-contact { padding: 10px; }
}

@media (prefers-reduced-motion: reduce) {
	.wnwl-wa-contact { transition: none; }
}
