/* Button Styles */
.axoowa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	background-color: #25D366;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.2s;
	margin-top: 10px;
}
.axoowa-btn:hover {
	background-color: #128C7E;
	color: #fff;
}

/* Floating Admin Button */
.axoowa-float-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	cursor: pointer;
	z-index: 9999;
	transition: transform 0.2s;
	border: none;
}
.axoowa-float-btn:hover {
	transform: scale(1.05);
	color: #fff;
}

/* Popup Overlay */
.axoowa-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Popup Container */
.axoowa-popup-container {
	background-color: #E5DDD5; /* WA Chat Background */
	width: 100%;
	max-width: 400px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.axoowa-popup-header {
	background-color: #075E54;
	color: #fff;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.axoowa-popup-title {
	font-weight: 600;
	font-size: 16px;
}

.axoowa-popup-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
	padding: 0;
}

.axoowa-popup-body {
	padding: 20px;
	flex-grow: 1;
	min-height: 200px;
	background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
	background-size: cover;
}

.axoowa-chat-bubble {
	background-color: #fff;
	padding: 10px 15px;
	border-radius: 8px;
	border-top-left-radius: 0;
	font-size: 14px;
	color: #303030;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	margin-bottom: 15px;
	display: inline-block;
	max-width: 85%;
}

.axoowa-metadata-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.axoowa-meta-pill {
	background-color: #DCF8C6;
	color: #303030;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 500;
	box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.axoowa-popup-footer {
	background-color: #f0f0f0;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

#axoowa-chat-input {
	flex-grow: 1;
	border: none;
	padding: 12px 15px;
	border-radius: 20px;
	outline: none;
	resize: none;
	height: 44px;
	font-family: inherit;
	font-size: 14px;
}

#axoowa-chat-send {
	background-color: #128C7E;
	color: #fff;
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
#axoowa-chat-send:hover {
	background-color: #075E54;
}

/* ==========================================================================
   Admin Floating Chat Modal (Full Overlay)
   ========================================================================== */
.axoowa-admin-modal-overlay {
	background-color: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	padding: 16px;
	box-sizing: border-box;
}

.axoowa-admin-modal-container {
	max-width: 440px;
	max-height: 90vh;
	background-color: #f7f9f8;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.axoowa-admin-modal-header {
	background-color: #075E54;
	color: #ffffff;
	padding: 14px 18px;
}

.axoowa-admin-header-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.axoowa-admin-avatar {
	width: 38px;
	height: 38px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
}

.axoowa-admin-status {
	font-size: 11px;
	color: #d0f0c0;
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 1px;
}

.axoowa-status-dot {
	width: 7px;
	height: 7px;
	background-color: #25D366;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 6px #25D366;
}

.axoowa-admin-modal-body {
	padding: 16px 18px;
	overflow-y: auto;
	max-height: calc(90vh - 80px);
	box-sizing: border-box;
}

/* Product Badge in Modal */
.axoowa-product-badge {
	display: flex;
	align-items: center;
	gap: 12px;
	background-color: #ffffff;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	margin-bottom: 14px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.axoowa-badge-img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}

.axoowa-badge-info {
	flex-grow: 1;
	min-width: 0;
}

.axoowa-badge-title {
	font-size: 13px;
	font-weight: 600;
	color: #1e293b;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.axoowa-badge-price {
	font-size: 13px;
	margin-top: 2px;
}

.axoowa-badge-final-price {
	font-weight: 700;
	color: #059669;
}

.axoowa-badge-del-price {
	color: #94a3b8;
	font-size: 11px;
	margin-left: 6px;
}

/* Modal Form Elements */
.axoowa-modal-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.axoowa-form-group {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.axoowa-form-group label {
	font-size: 12px;
	font-weight: 600;
	color: #334155;
}

.axoowa-required {
	color: #e11d48;
	font-weight: bold;
}

.axoowa-form-control {
	width: 100% !important;
	box-sizing: border-box !important;
	padding: 8px 12px !important;
	font-size: 13px !important;
	color: #1e293b !important;
	background-color: #ffffff !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 8px !important;
	outline: none !important;
	font-family: inherit !important;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.axoowa-form-control:focus {
	border-color: #128C7E !important;
	box-shadow: 0 0 0 3px rgba(18, 140, 126, 0.15) !important;
}

textarea.axoowa-form-control {
	resize: vertical !important;
	min-height: 52px;
}

/* Modal Action Buttons */
.axoowa-modal-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 6px;
}

.axoowa-btn-submit {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #25D366;
	color: #ffffff;
	border: none;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.1s;
	box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}

.axoowa-btn-submit:hover {
	background-color: #128C7E;
	color: #ffffff;
}

.axoowa-btn-submit:active {
	transform: scale(0.99);
}

.axoowa-btn-cancel {
	width: 100%;
	background: transparent;
	color: #64748b;
	border: 1px solid #cbd5e1;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.axoowa-btn-cancel:hover {
	background-color: #f1f5f9;
	color: #334155;
	border-color: #94a3b8;
}

/* Shipping Info & Payment Description Card */
.axoowa-shipping-fee-info {
	font-size: 11px;
	color: #64748b;
	font-style: italic;
	font-weight: normal;
}

.axoowa-payment-desc-card {
	margin-top: 8px;
	padding: 10px 14px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font-size: 13px;
	color: #1e293b;
	line-height: 1.45;
	white-space: pre-wrap;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
	animation: axoowaFadeIn 0.2s ease-in-out;
}

@keyframes axoowaFadeIn {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

