/* ========================================
   CHATBOX WIDGET STYLES - CONSOLIDATED
   ======================================== */

/* Widget Container */
.chatbox-widget {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 9998;
}

/* Open Button - WhatsApp Style */
.chatbox-open {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	padding: 0;
	margin: 0;
}

.chatbox-open:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.chatbox-open img {
	width: 35px;
	height: 35px;
}

/* Close Button */
.chatbox-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.2);
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	z-index: 10000;
}

.chatbox-close:hover {
	background: rgba(0, 0, 0, 0.4);
	transform: scale(1.1);
}

/* Popup Container */
.chatbox-popup {
	position: fixed;
	bottom: 80px;
	right: 10px;
	width: 300px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	z-index: 9997;
	display: none;
}

/* Popup Header */
.chatbox-popup__header {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	padding: 15px;
	display: flex;
	align-items: center;
}

.chatbox-popup__header img {
	border-radius: 50%;
	border: 2px solid #fff;
}

.chatbox-popup__header p {
	margin: 0;
	text-align: left;
}

.chatbox-popup__header aside {
	font-size: 14px;
}

/* Popup Main Content */
.chatbox-popup__main {
	padding: 16px;
	text-align: center;
	line-height: 1.6;
	color: #333;
	background: #fff;
	border: 2px solid #eee;
	border-top: none;
	border-bottom: none;
}

/* Popup Footer */
.chatbox-popup__footer {
	padding: 12px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px solid #eee;
	background: #f9f9f9;
	border-radius: 0 0 15px 15px;
}

/* Button in Chatbox */
.btn-3 {
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	color: #fff !important;
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn-3:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Mobile Responsive */
@media (max-width: 480px) {
	.chatbox-open {
		width: 50px;
		height: 50px;
	}

	.chatbox-open img {
		width: 28px;
		height: 28px;
	}

	.chatbox-popup {
		width: 280px;
		bottom: 70px;
		right: 5px;
	}

}