#pn-push-banner {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 999999;
	max-width: 340px;
	background: linear-gradient(160deg, #0f172a, #134e4a);
	color: #fff;
	border-radius: 16px;
	padding: 16px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28);
	font-family: Tahoma, Arial, sans-serif;
	direction: rtl;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	border: 1px solid rgba(20, 184, 166, 0.25);
}

#pn-push-banner.pn-banner-visible {
	opacity: 1;
	transform: translateY(0);
}

.pn-banner-icon {
	font-size: 24px;
	flex-shrink: 0;
	line-height: 1;
	width: 40px;
	height: 40px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pn-banner-text {
	flex: 1;
	min-width: 0;
}

.pn-banner-text strong {
	display: block;
	font-size: 14px;
	margin-bottom: 4px;
}

.pn-banner-text p {
	margin: 0;
	font-size: 12.5px;
	color: #cbd5e1;
	line-height: 1.6;
}

.pn-banner-actions {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex-shrink: 0;
}

.pn-banner-actions button {
	border: none;
	border-radius: 9px;
	padding: 7px 14px;
	font-size: 12.5px;
	cursor: pointer;
	white-space: nowrap;
	font-family: inherit;
	transition: filter .15s, transform .1s;
}

.pn-banner-actions button:active {
	transform: scale(0.96);
}

.pn-banner-allow {
	background: linear-gradient(135deg, #0d9488, #14b8a6);
	color: #fff;
	font-weight: 600;
}

.pn-banner-allow:hover {
	filter: brightness(1.08);
}

.pn-banner-later {
	background: transparent;
	color: #94a3b8;
}

.pn-banner-later:hover {
	color: #e2e8f0;
}

@media (max-width: 480px) {
	#pn-push-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
		max-width: none;
	}
}
