.cl-popup-promo-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
	padding: 20px;
	box-sizing: border-box;
}

.cl-popup-promo-overlay.cl-popup-promo-visible {
	opacity: 1;
	visibility: visible;
}

.cl-popup-promo-box {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	transform: scale(0.92);
	transition: transform 0.25s ease;
	line-height: 0;
}

.cl-popup-promo-overlay.cl-popup-promo-visible .cl-popup-promo-box {
	transform: scale(1);
}

.cl-popup-promo-box .cl-popup-promo-img {
	display: block;
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.cl-popup-promo-link {
	display: inline-block;
	line-height: 0;
	cursor: pointer;
}

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

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

@media (max-width: 480px) {
	.cl-popup-promo-close {
		top: -10px;
		right: -10px;
		width: 30px;
		height: 30px;
		font-size: 18px;
	}
}
