.ctwl-widget {
	position: fixed;
	z-index: 999999;
	bottom: 24px;
}
.ctwl-position-bottom-right { right: 24px; }
.ctwl-position-bottom-left { left: 24px; }

.ctwl-toggle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	position: relative;
	animation: ctwl-pulse 2.4s infinite;
}
.ctwl-toggle:hover { filter: brightness(1.05); }

@keyframes ctwl-pulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
	70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.ctwl-bubble-text {
	position: absolute;
	right: 70px;
	bottom: 16px;
	background: #fff;
	color: #222;
	padding: 8px 14px;
	border-radius: 8px;
	white-space: nowrap;
	font-size: 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}
.ctwl-position-bottom-left .ctwl-bubble-text { right: auto; left: 70px; }
.ctwl-toggle:hover .ctwl-bubble-text { opacity: 1; }

.ctwl-panel {
	position: absolute;
	bottom: 76px;
	right: 0;
	width: 320px;
	max-width: 90vw;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.ctwl-position-bottom-left .ctwl-panel { right: auto; left: 0; }

.ctwl-panel-header {
	color: #fff;
	padding: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 15px;
}
.ctwl-panel-header button {
	background: transparent;
	border: none;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
}

.ctwl-panel-body {
	padding: 16px;
	max-height: 420px;
	overflow-y: auto;
}
.ctwl-step-title {
	font-size: 14px;
	color: #333;
	margin: 0 0 12px;
	font-weight: 600;
}

.ctwl-services-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.ctwl-service-option {
	width: 100%;
	text-align: left;
	padding: 10px 12px;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	background: #f7f7f7;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.15s ease;
}
.ctwl-service-option:hover { background: #eee; }

.ctwl-input {
	width: 100%;
	padding: 10px 12px;
	margin-bottom: 10px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	box-sizing: border-box;
}
.ctwl-error {
	color: #d33;
	font-size: 13px;
	margin: -4px 0 10px;
}

.ctwl-form-actions {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	margin-top: 4px;
}
.ctwl-btn-secondary {
	background: #eee;
	border: none;
	padding: 10px 14px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
}
.ctwl-btn-primary {
	color: #fff;
	border: none;
	padding: 10px 14px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	flex: 1;
}

#ctwl-step-thanks p {
	text-align: center;
	font-size: 14px;
	color: #333;
	padding: 20px 0;
}

@media (max-width: 480px) {
	.ctwl-panel {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: 92px;
		width: auto;
	}
}
