.hp-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hp-popup-overlay.hp-popup-active {
	opacity: 1;
	visibility: visible;
}

.hp-popup-modal {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 40px 30px;
	max-width: 500px;
	width: 90%;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	transform: scale(0.8);
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-sizing: border-box;
	text-align: center;
}

.hp-popup-overlay.hp-popup-active .hp-popup-modal {
	transform: scale(1);
}

.hp-popup-close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	color: #999;
	transition: color 0.2s;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hp-popup-close-btn:hover {
	color: #333;
}

.hp-popup-content h2 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 24px;
	color: #222222;
	font-family: inherit;
}

.hp-popup-content p {
	font-size: 16px;
	line-height: 1.5;
	color: #555555;
	margin-bottom: 25px;
	font-family: inherit;
}

.hp-popup-action-btn {
	background-color: #3b82f6;
	color: #ffffff;
	border: none;
	padding: 12px 28px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.hp-popup-action-btn:hover {
	background-color: #2563eb;
}
