.sl-cop-popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 999999;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	overflow: hidden;
}

.sl-cop-popup-overlay.sl-cop-visible {
	display: flex;
	opacity: 1;
}

.sl-cop-popup-container {
	position: relative;
	background: #ffffff;
	border-radius: 12px;
	max-width: 700px;
	width: 90%;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: slCopSlideIn 0.4s ease;
}

@keyframes slCopSlideIn {
	from {
		transform: translateY(-30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.sl-cop-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
	background: #ff4757;
	border: 3px solid #ffffff;
	border-radius: 50%;
	color: #ffffff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	z-index: 1;
	transition: transform 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sl-cop-popup-close:hover {
	transform: scale(1.1);
}

.sl-cop-popup-body {
	display: flex;
	flex-direction: column;
}

.sl-cop-popup-image-wrap {
	position: relative;
	width: 100%;
}

.sl-cop-popup-image {
	width: 100%;
	height: auto;
	border-radius: 12px 12px 0 0;
	object-fit: cover;
}

.sl-cop-discount-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #ff6b6b, #ee5a24);
	color: #ffffff;
	padding: 10px 15px;
	border-radius: 50%;
	text-align: center;
	min-width: 65px;
	min-height: 65px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
}

.sl-cop-discount-value {
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.sl-cop-discount-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.sl-cop-popup-text {
	padding: 30px;
	text-align: center;
}

.sl-cop-popup-title {
	font-size: 28px;
	font-weight: 700;
	color: #2d3436;
	margin: 0 0 15px;
	line-height: 1.3;
}

.sl-cop-popup-content {
	font-size: 16px;
	color: #636e72;
	margin: 0 0 20px;
	line-height: 1.6;
}

.sl-cop-popup-offer-details {
	background: #f8f9fa;
	border: 2px dashed #dfe6e9;
	border-radius: 8px;
	padding: 12px 20px;
	margin-bottom: 25px;
	font-size: 15px;
	font-weight: 600;
	color: #2d3436;
}

.sl-cop-popup-btn {
	display: inline-block;
	background: linear-gradient(135deg, #00b894, #00cec9);
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	padding: 15px 40px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 184, 148, 0.3);
}

.sl-cop-popup-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
	color: #ffffff;
}

.sl-cop-preview-box {
	background: #ffffff;
	border: 1px solid #c3c4c7;
	border-radius: 8px;
	padding: 20px;
	margin-top: 30px;
}

.sl-cop-popup-preview {
	max-width: 400px;
	margin: 0 auto;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
}

.sl-cop-popup-content-preview {
	background: #f8f9fa;
	text-align: center;
	padding: 20px;
}

.sl-cop-popup-content-preview img {
	max-width: 100%;
	height: auto;
}

.sl-cop-popup-content-preview h3 {
	margin: 15px 0 10px;
}

.sl-cop-popup-content-preview p {
	color: #666;
}

.sl-cop-preview-btn {
	display: inline-block;
	background: #00b894;
	color: #fff;
	padding: 10px 25px;
	border-radius: 50px;
	text-decoration: none;
	margin-top: 10px;
}

@media (max-width: 600px) {
	.sl-cop-popup-container {
		width: 95%;
	}

	.sl-cop-popup-title {
		font-size: 22px;
	}

	.sl-cop-popup-text {
		padding: 20px;
	}

	.sl-cop-popup-btn {
		font-size: 16px;
		padding: 12px 30px;
	}
}
