.wp-pwa-lite-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: -120px;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	max-width: 480px;
	margin: 0 auto;
	padding: 16px 18px;
	background-color: #1d2327;
	color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	transition: bottom 0.3s ease, opacity 0.3s ease;
	opacity: 0;
}

.wp-pwa-lite-banner--visible {
	bottom: 16px;
	opacity: 1;
}

.wp-pwa-lite-banner__content {
	flex: 1 1 auto;
	min-width: 0;
}

.wp-pwa-lite-banner__title {
	display: block;
	font-size: 14px;
	margin-bottom: 4px;
}

.wp-pwa-lite-banner__desc {
	margin: 0;
	font-size: 12px;
	line-height: 1.4;
	color: #d6d9dc;
}

.wp-pwa-lite-banner__actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
}

.wp-pwa-lite-banner__install {
	appearance: none;
	border: 0;
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #1d2327;
	background-color: #ffffff;
	cursor: pointer;
}

.wp-pwa-lite-banner__install:active {
	opacity: 0.85;
}

.wp-pwa-lite-banner__dismiss {
	appearance: none;
	border: 0;
	background: transparent;
	color: #ffffff;
	font-size: 20px;
	line-height: 1;
	padding: 4px 6px;
	cursor: pointer;
}

@media (max-width: 480px) {
	.wp-pwa-lite-banner {
		left: 8px;
		right: 8px;
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.wp-pwa-lite-banner__actions {
		justify-content: center;
	}
}
