/* Laurette App — soft push opt-in banner. Brand taupe, unobtrusive. */
.lapp-push-bar {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	background: #ffffff;
	color: #5b5148;
	border: 1px solid #e7ded4;
	border-radius: 14px;
	box-shadow: 0 8px 30px rgba(90, 81, 72, 0.18);
	font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 15px;
	transform: translateY(140%);
	transition: transform .28s ease;
}
.lapp-push-bar.lapp-push-in { transform: translateY(0); }
.lapp-push-text { flex: 1; line-height: 1.35; }
.lapp-push-actions { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.lapp-push-yes {
	border: 0;
	background: #8a7967;
	color: #fff;
	padding: 9px 16px;
	border-radius: 999px;
	font-size: 14px;
	cursor: pointer;
}
.lapp-push-yes:hover { background: #766655; }
.lapp-push-no {
	border: 0;
	background: transparent;
	color: #9b9184;
	padding: 9px 6px;
	font-size: 14px;
	cursor: pointer;
}
@media (min-width: 600px) {
	.lapp-push-bar { left: auto; right: 20px; bottom: 20px; max-width: 380px; }
}
