/* Support Popup CSS */
.support-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

body.admin-bar .support-popup-overlay {
	top: var(--wp-admin--admin-bar--height, 32px);
	height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
	body.admin-bar .support-popup-overlay {
		top: 46px;
		height: calc(100% - 46px);
	}
}

.support-popup-overlay.active {
	opacity: 1;
}

.support-popup-content {
	background: #ffffff;
	border-radius: 12px;
	padding: 40px 30px;
	max-width: 500px;
	width: 90%;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	position: relative;
	transform: scale(0.9);
	transition: transform 0.3s ease;
	text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.support-popup-overlay.active .support-popup-content {
	transform: scale(1);
}

.support-popup-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #9ca3af;
	line-height: 1;
	padding: 0;
}

.support-popup-close:hover {
	color: #4b5563;
}

.support-popup-header h2 {
	margin: 0 0 10px 0;
	font-size: 24px;
	font-weight: 800;
	color: #111827;
	letter-spacing: -0.025em;
}

.support-popup-header p {
	margin: 0 0 30px 0;
	font-size: 15px;
	color: #6b7280;
	line-height: 1.5;
}

.support-popup-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.support-popup-option-btn {
	display: flex;
	flex-direction: column;
	text-decoration: none !important;
	padding: 16px 20px;
	border-radius: 8px;
	text-align: left;
	transition: all 0.2s ease;
	border: 2px solid #e5e7eb;
}

.support-popup-option-btn:hover {
	transform: translateY(-2px);
}

.option-kb {
	background-color: #f9fafb;
}

.option-kb:hover {
	border-color: #2563eb;
	background-color: #eff6ff;
}

.option-kb .option-title {
	color: #2563eb;
}

.option-ai {
	background-color: #f9fafb;
}

.option-ai:hover {
	border-color: #059669;
	background-color: #ecfdf5;
}

.option-ai .option-title {
	color: #059669;
}

.option-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
}

.option-desc {
	font-size: 13px;
	color: #4b5563;
}
