.hb-offer-btn {
	display: inline-block;
	margin-top: 12px;
	padding: 10px 20px;
	background: #1f3864;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
}

.hb-offer-btn:hover {
	background: #2e74b5;
}

.hb-offer-btn:disabled,
.hb-offer-btn.hb-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

button.hb-offer-btn.hb-offer-float {
	position: fixed;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	z-index: 99998;
	margin: 0;
	border-radius: 0 0 8px 8px;
}

button.hb-offer-btn.hb-offer-float.hb-offer-float_left {
	left: 0;
	right: auto;
	transform-origin: left center;
	transform: translateY(-50%) rotate(90deg) translateX(-50%);
}

button.hb-offer-btn.hb-offer-float.hb-offer-float_right {
	right: 0;
	left: auto;
	transform-origin: right center;
	transform: translateY(-50%) rotate(-90deg) translateX(50%);
}

.hb-modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 340px;
	max-width: calc(100vw - 40px);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.2);
	display: none;
	flex-direction: column;
	overflow: hidden;
	z-index: 99999;
}

.hb-modal.hb-open {
	display: flex;
}

.hb-header {
	background: #1f3864;
	color: #fff;
	padding: 12px 16px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hb-close {
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
}

.hb-body {
	padding: 12px;
	height: 320px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hb-msg {
	padding: 8px 12px;
	border-radius: 10px;
	max-width: 80%;
	font-size: 14px;
	line-height: 1.4;
}

.hb-msg-bot {
	background: #f0f2f5;
	align-self: flex-start;
}

.hb-msg-user {
	background: #1f3864;
	color: #fff;
	align-self: flex-end;
}

.hb-footer {
	display: flex;
	border-top: 1px solid #eee;
	padding: 8px;
	gap: 6px;
}

.hb-input {
	flex: 1;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
}

.hb-send {
	padding: 8px 14px;
	background: #1f3864;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

.hb-typing {
	font-style: italic;
	color: #888;
	font-size: 13px;
}

.hb-deal {
	margin-top: 8px;
	text-align: center;
}

.hb-checkout {
	width: 100%;
	padding: 12px;
	background: #c45911;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
	font-weight: bold;
}

.hb-checkout:hover {
	background: #a84a0e;
}

.hb-urgency {
	background: #fff3cd;
	border: 1px solid #ffc107;
	color: #856404;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	margin-top: 4px;
}

@media ( max-width: 600px ) {
	button.hb-offer-btn.hb-offer-float {
		top: auto;
		bottom: 20px;
		transform: none;
		border-radius: 8px;
	}

	button.hb-offer-btn.hb-offer-float.hb-offer-float_left {
		left: 20px;
		right: auto;
		transform: none;
	}

	button.hb-offer-btn.hb-offer-float.hb-offer-float_right {
		right: 20px;
		left: auto;
		transform: none;
	}
}