/* WhatsApp Booking Widget styles */

.wabk-fab {
	position: fixed;
	bottom: 24px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.25);
	cursor: pointer;
	z-index: 9998;
	transition: transform 0.2s ease;
}
.wabk-fab:hover { transform: scale(1.08); }
.wabk-fab svg { width: 32px; height: 32px; fill: #fff; }
.wabk-bottom-right { right: 24px; }
.wabk-bottom-left  { left: 24px; }

.wabk-inline-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	border: none;
	padding: 12px 22px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}
.wabk-inline-btn:hover { opacity: 0.92; }

.wabk-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.wabk-overlay.wabk-active { display: flex; }

.wabk-modal {
	background: #fff;
	width: 100%;
	max-width: 340px;
	border-radius: 12px;
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.wabk-modal-header {
	background: #075E54;
	color: #fff;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.wabk-modal-header svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.wabk-modal-header h3 { margin: 0; font-size: 16px; font-weight: 600; }
.wabk-modal-header p { margin: 2px 0 0; font-size: 12px; opacity: 0.85; }
.wabk-close {
	margin-left: auto;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	opacity: 0.85;
}
.wabk-modal-body { padding: 18px 20px 20px; }
.wabk-modal-body label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin: 12px 0 4px;
}
.wabk-modal-body label:first-child { margin-top: 0; }
.wabk-modal-body input,
.wabk-modal-body textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 9px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
}
.wabk-modal-body textarea { resize: vertical; min-height: 60px; }
.wabk-submit {
	margin-top: 16px;
	width: 100%;
	color: #fff;
	border: none;
	padding: 12px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.wabk-submit:hover { opacity: 0.92; }
.wabk-submit svg { width: 18px; height: 18px; fill: #fff; }
