.pwaip-overlay {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	display: flex;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
	animation: pwaip-slide-up 0.25s ease-out;
}

@keyframes pwaip-slide-up {
	from { transform: translateY(20px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.pwaip-card {
	width: 100%;
	max-width: 420px;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
	padding: 16px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	flex-wrap: wrap;
}

.pwaip-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	object-fit: cover;
}

.pwaip-body {
	flex: 1 1 200px;
	min-width: 0;
}

.pwaip-title {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
}

.pwaip-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.4;
	color: #555;
}

.pwaip-actions {
	display: flex;
	gap: 8px;
	width: 100%;
	justify-content: flex-end;
	margin-top: 4px;
}

.pwaip-btn {
	border: none;
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.pwaip-btn-later {
	background: transparent;
	color: #666;
}

.pwaip-btn-later:hover {
	background: #f2f2f2;
}

.pwaip-btn-install {
	background: #1e1e1e;
	color: #fff;
}

.pwaip-btn-install:hover {
	opacity: 0.9;
}

@media (max-width: 480px) {
	.pwaip-overlay {
		padding: 12px;
	}
	.pwaip-actions {
		justify-content: stretch;
	}
	.pwaip-btn {
		flex: 1;
	}
}
