.mhpush-bell {
	position: fixed;
	z-index: 99999;
	bottom: 24px;
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--mhpush-color, #7C3AED);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 12px 18px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0,0,0,0.25);
	transition: transform 0.15s ease;
}
.mhpush-bell:hover { transform: translateY(-2px); }
.mhpush-bell-bottom-right { right: 24px; }
.mhpush-bell-bottom-left { left: 24px; }
.mhpush-bell-subscribed { opacity: 0.6; cursor: default; }
.mhpush-bell span { white-space: nowrap; }

@media (max-width: 480px) {
	.mhpush-bell { padding: 10px 14px; font-size: 13px; bottom: 16px; }
	.mhpush-bell-bottom-right { right: 16px; }
	.mhpush-bell-bottom-left { left: 16px; }
}

/* ---------------- Soft-ask popup ---------------- */

.mhpush-softask-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: mhpush-fade-in 0.15s ease;
}

.mhpush-softask-card {
	position: relative;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	width: 100%;
	max-width: 420px;
	padding: 28px 28px 24px;
	text-align: center;
	animation: mhpush-pop-in 0.18s ease;
}

.mhpush-softask-icon {
	font-size: 34px;
	line-height: 1;
	margin-bottom: 12px;
	display: inline-block;
}

.mhpush-softask-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 22px;
	line-height: 1.4;
}

.mhpush-softask-btn {
	display: block;
	width: 100%;
	background: var(--mhpush-color, #1a73e8);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 14px 18px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: filter 0.15s ease;
}
.mhpush-softask-btn:hover { filter: brightness(1.08); }

.mhpush-softask-dismiss {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: none;
	color: #999;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	padding: 4px;
}
.mhpush-softask-dismiss:hover { color: #333; }

@keyframes mhpush-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes mhpush-pop-in {
	from { opacity: 0; transform: scale(0.94); }
	to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
	.mhpush-softask-card { padding: 22px 20px 18px; }
	.mhpush-softask-title { font-size: 16px; }
}
