.wweb-ac-popup {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 340px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	z-index: 99999;
	opacity: 0;
	transform: translateY(100%);
	transition: opacity 0.4s ease, transform 0.4s ease;
	padding: 20px;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wweb-ac-popup.wweb-ac-show {
	opacity: 1;
	transform: translateY(0);
}

.wweb-ac-popup.wweb-ac-hide {
	opacity: 0;
	transform: translateY(100%);
}

.wweb-ac-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
	color: #999;
	line-height: 1;
	padding: 4px;
}

.wweb-ac-close:hover {
	color: #333;
}

.wweb-ac-content {
	text-align: center;
	padding-top: 4px;
}

.wweb-ac-icon {
	font-size: 36px;
	display: block;
	margin-bottom: 10px;
}

.wweb-ac-text {
	font-size: 15px;
	font-weight: 600;
	color: #222;
	margin: 0 0 6px;
	line-height: 1.4;
}

.wweb-ac-count {
	font-size: 13px;
	color: #888;
	margin: 0 0 16px;
}

.wweb-ac-btn {
	display: inline-block;
	background: #7f54b3;
	color: #fff;
	text-decoration: none;
	padding: 10px 28px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.2s ease;
}

.wweb-ac-btn:hover {
	background: #6b3fa0;
	color: #fff;
}
