/* Christmas Pop-Up Pro - Public Styles */

.cpp-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 999998;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.cpp-overlay.cpp-show {
	display: flex;
	opacity: 1;
}

.cpp-modal {
	position: relative;
	max-width: 500px;
	width: 90%;
	padding: 40px 30px;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	z-index: 999999;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.cpp-overlay.cpp-show .cpp-modal {
	transform: scale(1);
}

/* Accent is now handled via CSS ::before pseudo-element */

.cpp-image-container {
	margin-bottom: 20px;
	text-align: center;
}

.cpp-popup-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
	margin: 0 auto;
}

.cpp-content {
	text-align: center;
}

.cpp-headline {
	font-size: 32px;
	font-weight: bold;
	margin: 0 0 10px 0;
	line-height: 1.2;
}

.cpp-subheadline {
	font-size: 18px;
	margin: 0 0 20px 0;
	opacity: 0.9;
}

.cpp-main-line {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 15px 0;
	line-height: 1.4;
}

.cpp-support-line {
	font-size: 16px;
	margin: 0 0 30px 0;
	opacity: 0.85;
	line-height: 1.5;
}

.cpp-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.cpp-btn {
	padding: 12px 30px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.cpp-btn-primary {
	color: #ffffff;
}

.cpp-btn-secondary {
	background: transparent;
	color: inherit;
	border: 2px solid currentColor;
	opacity: 0.8;
}

.cpp-btn-secondary:hover {
	opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
	.cpp-modal {
		padding: 30px 20px;
		max-width: 90%;
	}
	
	.cpp-headline {
		font-size: 26px;
	}
	
	.cpp-main-line {
		font-size: 18px;
	}
	
	.cpp-buttons {
		flex-direction: column;
	}
	
	.cpp-btn {
		width: 100%;
	}
}


