/* BPX GLS hőségriadó figyelmeztetés – popup */

.bpx-ghw-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.55);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	animation: bpx-ghw-fade-in 0.18s ease-out;
}

.bpx-ghw-modal {
	box-sizing: border-box;
	max-width: 520px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	color: #1f2937;
	border-radius: 10px;
	border-top: 6px solid #f59e0b;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	padding: 28px 28px 24px;
	text-align: left;
	animation: bpx-ghw-pop-in 0.18s ease-out;
}

.bpx-ghw-title {
	font-size: 1.35em;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 14px;
	color: #b45309;
}

.bpx-ghw-message {
	font-size: 1em;
	line-height: 1.6;
	margin: 0 0 22px;
	white-space: pre-line; /* a beállításokban megadott sortörések megmaradnak */
}

.bpx-ghw-button {
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	padding: 12px 20px;
	border: 0;
	border-radius: 6px;
	background: #b45309;
	color: #fff;
	font-size: 1em;
	font-weight: 600;
	line-height: 1.4;
	cursor: pointer;
	transition: background 0.15s ease;
}

.bpx-ghw-button:hover,
.bpx-ghw-button:focus {
	background: #92400e;
	color: #fff;
	outline: 2px solid #f59e0b;
	outline-offset: 2px;
}

@keyframes bpx-ghw-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes bpx-ghw-pop-in {
	from { transform: translateY(10px) scale(0.98); opacity: 0; }
	to   { transform: translateY(0) scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.bpx-ghw-overlay,
	.bpx-ghw-modal {
		animation: none;
	}
}

@media (max-width: 480px) {
	.bpx-ghw-modal {
		padding: 22px 18px 18px;
	}
}
