.accop-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(20, 10, 30, 0.72);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
}

.accop-popup-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.accop-popup-box {
	position: relative;
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	padding: 20px;
	text-align: center;
	transform: scale(0.92);
	transition: transform 0.25s ease;
}

.accop-popup-overlay.is-open .accop-popup-box {
	transform: scale(1);
}

.accop-popup-close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 34px;
	height: 34px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: #333;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
}

.accop-popup-close:hover {
	background: #f2f2f2;
}

.accop-popup-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 16px;
}

.accop-popup-button {
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	padding: 14px 28px;
	background: #C6168D;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	border-radius: 999px;
	transition: background 0.2s ease, transform 0.15s ease;
}

.accop-popup-button:hover {
	background: #a51277;
	color: #fff;
	transform: translateY(-1px);
}

@media (max-width: 480px) {
	.accop-popup-box {
		padding: 16px;
	}
	.accop-popup-button {
		font-size: 15px;
		padding: 13px 20px;
	}
}
