#wt-waba-widget {
	position: fixed !important;
	bottom: 24px !important;
	z-index: 2147483647 !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#wt-waba-widget.wt-pos-bottom-right {
	right: 24px !important;
}

#wt-waba-widget.wt-pos-bottom-left {
	left: 24px !important;
}

#wt-waba-widget.wt-pos-right-center {
	right: 24px !important;
	top: 50% !important;
	bottom: auto !important;
	transform: translateY(-50%);
}

#wt-waba-widget.wt-pos-left-center {
	left: 24px !important;
	top: 50% !important;
	bottom: auto !important;
	transform: translateY(-50%);
}

.wt-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border: 0;
	border-radius: 999px;
	background: var(--wt-icon-bg, #25D366);
	box-shadow: 0 18px 44px rgba(16, 73, 54, 0.26);
	cursor: pointer;
	padding: 0;
}

.wt-size-small {
	width: 52px;
	height: 52px;
}

.wt-size-medium {
	width: 60px;
	height: 60px;
}

.wt-size-large {
	width: 68px;
	height: 68px;
}

.wt-btn-icon,
.wt-btn-icon img {
	display: block;
	width: 30px;
	height: 30px;
}

.wt-btn-icon img,
.wt-avatar {
	object-fit: cover;
}

.wt-card,
.wt-trigger-popup {
	position: absolute;
	right: 0;
	bottom: 78px;
	width: 360px;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 28px 70px rgba(22, 45, 35, 0.18);
	overflow: hidden;
}

.wt-card-header {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	color: #ffffff;
}

.wt-avatar {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
}

.wt-agent-info {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.wt-agent-name {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.wt-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
	font-size: 14px;
}

.wt-status::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #f4f7f5;
}

.wt-status.is-online::before {
	background: #d9ff95;
}

.wt-status.is-away::before {
	background: rgba(255, 255, 255, 0.68);
}

.wt-close {
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 12px;
	background: rgba(9, 57, 37, 0.24);
	color: #ffffff;
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
}

.wt-card-body {
	padding: 22px 20px 8px;
}

.wt-greeting {
	margin: 0;
	color: #163829;
	font-size: 18px;
	line-height: 1.55;
}

.wt-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 20px 20px;
}

.wt-cta-btn,
.wt-trigger-actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 14px;
	padding: 13px 18px;
	color: #ffffff;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
}

.wt-cta-btn {
	background: var(--wt-cta-bg, #25D366);
}

.wt-trigger-popup {
	padding: 18px;
}

.wt-trigger-popup p {
	margin: 0 0 14px;
	color: #163829;
	font-size: 16px;
	line-height: 1.5;
}

.wt-trigger-actions {
	display: flex;
	gap: 10px;
}

#wt-trigger-engage {
	background: var(--wt-cta-bg, #25D366);
}

#wt-trigger-dismiss {
	background: #dde8e1;
	color: #163829;
}

.wt-anim-pulse {
	animation: wtPulse 2.1s infinite;
}

.wt-anim-bounce {
	animation: wtBounce 2.2s infinite;
}

.wt-anim-glow {
	animation: wtGlow 2.4s infinite;
}

@keyframes wtPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.06); }
}

@keyframes wtBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

@keyframes wtGlow {
	0%, 100% { box-shadow: 0 18px 44px rgba(16, 73, 54, 0.26); }
	50% { box-shadow: 0 18px 48px rgba(37, 211, 102, 0.46); }
}

@media (max-width: 767px) {
	#wt-waba-widget,
	#wt-waba-widget.wt-pos-bottom-right,
	#wt-waba-widget.wt-pos-bottom-left,
	#wt-waba-widget.wt-pos-right-center,
	#wt-waba-widget.wt-pos-left-center {
		right: 16px !important;
		left: auto !important;
		top: auto !important;
		bottom: 16px !important;
		transform: none !important;
	}

	.wt-card,
	.wt-trigger-popup {
		right: 0;
		bottom: 74px;
		width: min(92vw, 360px);
	}
}
