/* ── Fastway suburb autocomplete ────────────────────────────────────────── */

.fw-suburb-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #fff;
	border: 1px solid #d0d5dd;
	border-radius: 6px;
	box-shadow: 0 4px 16px rgba(0,0,0,.10);
	margin: 2px 0 0;
	padding: 4px 0;
	list-style: none;
	max-height: 260px;
	overflow-y: auto;
	display: none;
}

.fw-suburb-dropdown li {
	padding: 9px 14px;
	font-size: 14px;
	cursor: pointer;
	color: #1a1a2e;
	transition: background .12s ease;
}

.fw-suburb-dropdown li:hover {
	background: #f0f4ff;
	color: #1b4de4;
}

/* ── Confirmation toast ──────────────────────────────────────────────────── */

.fw-confirm-toast {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 99999;
	background: #1b4de4;
	color: #fff;
	padding: 12px 18px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(27,77,228,.30);
	font-size: 13px;
	line-height: 1.5;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .22s ease, transform .22s ease;
	pointer-events: none;
}

.fw-confirm-toast--visible {
	opacity: 1;
	transform: translateY(0);
}

.fw-confirm-toast strong {
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
}
