.gcp-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
}

.gcp-popup[hidden] {
	display: none;
}

.gcp-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.62);
}

.gcp-popup__dialog {
	position: relative;
	width: min(100%, 560px);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 32px;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
	box-sizing: border-box;
}

.gcp-popup__close {
	position: absolute;
	top: 12px;
	right: 12px;
	border: 0;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #1f2937;
}

.gcp-popup__coupon {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #041e42;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 12px;
}

.gcp-popup__title {
	margin: 0 0 16px;
	font-size: 30px;
	line-height: 1.1;
	color: #111827;
}

.gcp-popup__content {
	color: #374151;
	font-size: 16px;
	line-height: 1.6;
}

.gcp-popup__content p:first-child {
	margin-top: 0;
}

.gcp-popup__content p:last-child {
	margin-bottom: 0;
}

.gcp-popup__actions {
	margin: 24px 0 0;
}

.gcp-popup__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border-radius: 999px;
	background: #b71c1c;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
}

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

@media (max-width: 640px) {
	.gcp-popup {
		padding: 16px;
	}

	.gcp-popup__dialog {
		padding: 24px;
	}

	.gcp-popup__title {
		font-size: 24px;
	}
}
