.wacw-widget {
	position: fixed;
	bottom: 20px;
	z-index: 99999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.wacw-widget.wacw-right { right: 20px; }
.wacw-widget.wacw-left { left: 20px; }

@media (max-width: 600px) {
	.wacw-widget.wacw-hide-mobile { display: none !important; }
}

.wacw-toggle-btn {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--wacw-accent, #25D366);
	border: none;
	box-shadow: 0 4px 14px rgba(0,0,0,.3);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform .15s ease;
}
.wacw-toggle-btn:hover { transform: scale(1.06); }
.wacw-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	background: #ff3b30;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wacw-panel {
	position: absolute;
	bottom: 76px;
	right: 0;
	width: 320px;
	max-width: calc(100vw - 40px);
	background: #ede3da;
	border-radius: 14px;
	box-shadow: 0 10px 40px rgba(0,0,0,.25);
	overflow: hidden;
	display: none;
	flex-direction: column;
}
.wacw-widget.wacw-left .wacw-panel { right: auto; left: 0; }
.wacw-panel.wacw-open { display: flex; }

.wacw-panel-header {
	background: var(--wacw-primary, #128C7E);
	color: #fff;
	padding: 16px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.wacw-status { font-size: 12px; opacity: .9; margin-top: 2px; }
.wacw-panel-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	line-height: 1;
}

.wacw-panel-body {
	padding: 18px 16px 20px;
}

.wacw-timestamp {
	text-align: center;
	font-size: 11px;
	color: #7d7d7d;
	margin-bottom: 12px;
}

.wacw-bubble {
	background: #fff;
	color: #222;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: 0 1px 2px rgba(0,0,0,.08);
	margin-bottom: 18px;
	position: relative;
}

.wacw-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: var(--wacw-accent, #25D366);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	padding: 12px 16px;
	border-radius: 999px;
	box-sizing: border-box;
	transition: opacity .15s ease;
}
.wacw-cta-btn:hover { opacity: .92; color: #fff; }
