.sekyere-points-popup {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

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

.sekyere-points-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.55);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.sekyere-points-popup.is-open .sekyere-points-popup__backdrop {
	opacity: 1;
}

.sekyere-points-popup__card {
	position: relative;
	background: #ffffff;
	border-radius: 1.75rem;
	max-width: 500px;
	width: 100%;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	padding: 40px 36px 32px;
	text-align: center;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
	transform: translateY(16px) scale(0.97);
	opacity: 0;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.sekyere-points-popup.is-open .sekyere-points-popup__card {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.sekyere-points-popup__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: #f4f4f4;
	color: #555;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.sekyere-points-popup__close:hover,
.sekyere-points-popup__close:focus {
	background: #80b435;
	color: #ffffff;
}

.sekyere-points-popup__eyebrow {
	display: inline-block;
	background: rgba(128, 180, 53, 0.12);
	color: #5c8a24;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.sekyere-points-popup__title {
	font-family: 'Pacifico', cursive;
	font-weight: normal;
	font-size: 34px;
	color: #2b2b2b;
	margin: 0 0 10px;
	line-height: 1.2;
}

.sekyere-points-popup__subtitle {
	font-family: 'Lato', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #6a6a6a;
	max-width: 380px;
	margin: 0 auto 26px;
}

.sekyere-points-popup__features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 20px;
}

.sekyere-points-popup__feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
}

.sekyere-points-popup__feature-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.sekyere-points-popup__icon {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #80b435;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	margin-bottom: 6px;
}

.sekyere-points-popup__feature-text strong {
	font-family: 'Lato', sans-serif;
	font-size: 13.5px;
	color: #2b2b2b;
	line-height: 1.3;
}

.sekyere-points-popup__feature-text span {
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	color: #8a8a8a;
	line-height: 1.35;
}

.sekyere-points-popup__bonus {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff8e6;
	border: 1px solid #f4e3ad;
	border-radius: 14px;
	padding: 12px 16px;
	text-align: left;
	margin-bottom: 24px;
}

.sekyere-points-popup__bonus i {
	color: #d69e1f;
	font-size: 16px;
	flex-shrink: 0;
}

.sekyere-points-popup__bonus span {
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	color: #6b5210;
	line-height: 1.4;
}

.sekyere-points-popup__cta {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 12px;
}

.sekyere-points-popup__later {
	display: block;
	width: 100%;
	background: none;
	border: none;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	color: #9a9a9a;
	cursor: pointer;
	padding: 6px;
	margin-bottom: 8px;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sekyere-points-popup__later:hover {
	color: #6a6a6a;
}

.sekyere-points-popup__fineprint {
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	color: #b3b3b3;
	margin: 0;
}

@media (max-width: 480px) {
	.sekyere-points-popup__card {
		padding: 32px 22px 26px;
	}

	.sekyere-points-popup__title {
		font-size: 28px;
	}

	.sekyere-points-popup__features {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.sekyere-points-popup__feature {
		flex-direction: row;
		align-items: center;
		text-align: left;
		gap: 12px;
	}

	.sekyere-points-popup__icon {
		margin-bottom: 0;
		flex-shrink: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sekyere-points-popup__backdrop,
	.sekyere-points-popup__card {
		transition: none;
	}
}
