.pv-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.pv-popup.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.pv-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.5);
}

.pv-popup__dialog {
	position: relative;
	width: min(940px, 100%);
	background: #ffffff;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	transform: translateY(16px) scale(0.98);
	transition: transform 0.2s ease;
	border-bottom: 12px solid #cc5e98;
}

.pv-popup.is-active .pv-popup__dialog {
	transform: translateY(0) scale(1);
}

.pv-popup__close {
	position: absolute;
	top: 0;
	right: 12px;
	border: none;
	background: transparent;
	padding: 0;
	width: auto !important;
	height: auto !important;
	border-radius: 0;
	font-size: 66px;
	line-height: 1;
	cursor: pointer;
	color: gray;
}

.pv-popup__close:hover {
	color: #1f1331;
}

.pv-popup__header {
	background: linear-gradient(180deg, #4c2f74, #b84a88);
	padding: 24px 32px;
	min-height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pv-popup__logo {
	width: 454px;
	max-width: 100%;
	height: auto;
	display: block;
}

.pv-popup__body {
	padding: 28px 36px 34px;
	text-align: center;
}

.pv-popup__title {
	margin: 0 0 8px;
	font-size: clamp(20px, 4vw, 40px);
	text-transform: uppercase;
	color: #cc5e98;
}

.pv-popup__description {
	margin: 0 0 20px;
	color: #5e6468;
	font-size: clamp(16px, 4vw, 25px);
}

.pv-popup__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.pv-popup__corner-graphic {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 170px;
	max-width: 40%;
	height: auto;
	pointer-events: none;
}

@media (min-width: 600px) {
	.pv-popup__actions {
		gap: 40px;
	}
}

.pv-popup__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: bold;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	width: 250px;
	height: 65px;
	padding: 15px 30px;
	border-radius: 32.5px;
	background-color: #3e1c59;
}

.pv-popup__cta--primary,
.pv-popup__cta--secondary {
	background: #4c2f74;
	color: #ffffff;
	box-shadow: 0 10px 20px rgba(76, 47, 116, 0.3);
}

.pv-popup__cta:hover {
	transform: translateY(-1px);
	color: white;
}

body.pv-popup-open {
	overflow: hidden;
}

@media (max-width: 600px) {
	.pv-popup__dialog {
		width: 100%;
	}

	.pv-popup__header {
		padding: 18px 20px;
	}

	.pv-popup__body {
		padding: 22px 20px 26px;
	}

	.pv-popup__title {
		font-size: 18px;
	}
}
