.wcb-widget {
	position: fixed;
	bottom: 24px;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wcb-position-right { right: 24px; }
.wcb-position-left  { left: 24px; }

.wcb-toggle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--wcb-color, #25D366);
	border: none;
	box-shadow: 0 4px 14px rgba(0,0,0,0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.15s ease;
}

.wcb-toggle:hover {
	transform: scale(1.06);
}

.wcb-popup {
	position: absolute;
	bottom: 74px;
	width: 280px;
	max-width: calc(100vw - 48px);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.18);
	overflow: hidden;
	animation: wcb-fade-in 0.15s ease;
}

.wcb-position-right .wcb-popup { right: 0; }
.wcb-position-left .wcb-popup  { left: 0; }

@keyframes wcb-fade-in {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

.wcb-popup-header {
	background: var(--wcb-color, #25D366);
	color: #fff;
	padding: 12px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	font-size: 15px;
}

.wcb-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	padding: 0 4px;
}

.wcb-popup-body {
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wcb-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #f5f6f7;
	color: #222;
	text-decoration: none;
	font-size: 14px;
	transition: background 0.15s ease;
}

.wcb-option:hover {
	background: #ececec;
	color: #111;
}

.wcb-icon {
	width: 34px;
	height: 34px;
	min-width: 34px;
	border-radius: 50%;
	background: var(--wcb-color, #25D366);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

@media (max-width: 480px) {
	.wcb-widget { bottom: 16px; }
	.wcb-position-right { right: 16px; }
	.wcb-position-left { left: 16px; }
	.wcb-toggle { width: 54px; height: 54px; }
}
