/* Laraware Chatbot — premium widget styles.
 * Brand colors are injected at runtime via --lw-brand / --lw-accent on #lw-chatbot-root.
 */

#lw-chatbot-root {
	--lw-brand: #1B2A4A;
	--lw-accent: #C9A84C;
	--lw-brand-2: #2C4470;
	--lw-bg: #ffffff;
	--lw-user-grad-a: var(--lw-brand);
	--lw-user-grad-b: var(--lw-brand-2);
	--lw-bot-bg: #ffffff;
	--lw-text: #1d2433;
	--lw-muted: #8a93a6;
	--lw-surface: #f6f8fc;
	--lw-border: rgba(27, 42, 74, 0.08);
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 2147483000;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

#lw-chatbot-root *,
#lw-chatbot-root *::before,
#lw-chatbot-root *::after {
	box-sizing: border-box;
}

/* ============ LAUNCHER ============ */
#lw-chatbot-root .lw-launcher {
	position: relative;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	padding: 0;
	background: linear-gradient(135deg, var(--lw-brand-2) 0%, var(--lw-brand) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 28px rgba(27, 42, 74, 0.40), 0 2px 8px rgba(0, 0, 0, 0.16);
	transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

#lw-chatbot-root .lw-launcher::before {
	/* subtle gold rim */
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	padding: 1.5px;
	background: linear-gradient(135deg, var(--lw-accent), rgba(201, 168, 76, 0));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.9;
}

#lw-chatbot-root .lw-launcher:hover {
	transform: scale(1.08) translateY(-1px);
	box-shadow: 0 14px 34px rgba(27, 42, 74, 0.48), 0 3px 10px rgba(0, 0, 0, 0.20);
}

#lw-chatbot-root .lw-launcher:active {
	transform: scale(1.0);
}

#lw-chatbot-root .lw-launcher.lw-hidden {
	transform: scale(0);
	opacity: 0;
	pointer-events: none;
}

#lw-chatbot-root .lw-launcher-icon {
	display: flex;
	position: relative;
	z-index: 2;
}

/* pulsing ring */
#lw-chatbot-root .lw-launcher-pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--lw-brand);
	opacity: 0.5;
	z-index: 0;
	animation: lw-pulse 2.4s ease-out infinite;
}

@keyframes lw-pulse {
	0%   { transform: scale(1); opacity: 0.45; }
	70%  { transform: scale(1.7); opacity: 0; }
	100% { transform: scale(1.7); opacity: 0; }
}

/* online status dot on launcher */
#lw-chatbot-root .lw-launcher-dot {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #22c55e;
	border: 2.5px solid #fff;
	z-index: 3;
	box-shadow: 0 0 0 rgba(34, 197, 94, 0.5);
	animation: lw-online 2s infinite;
}

@keyframes lw-online {
	0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
	70%  { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
	100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ============ PANEL ============ */
#lw-chatbot-root .lw-panel {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 388px;
	max-width: calc(100vw - 32px);
	height: 600px;
	max-height: calc(100vh - 110px);
	background: var(--lw-bg);
	border-radius: 22px;
	box-shadow: 0 24px 70px rgba(17, 24, 44, 0.30), 0 6px 18px rgba(0, 0, 0, 0.10);
	border: 1px solid var(--lw-border);
	display: none;
	flex-direction: column;
	overflow: hidden;
	transform-origin: bottom right;
}

#lw-chatbot-root .lw-panel.lw-open {
	display: flex;
	animation: lw-pop 0.32s cubic-bezier(0.34, 1.4, 0.5, 1);
}

@keyframes lw-pop {
	from { opacity: 0; transform: translateY(20px) scale(0.94); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============ HEADER ============ */
#lw-chatbot-root .lw-header {
	position: relative;
	background:
		radial-gradient(120% 140% at 0% 0%, var(--lw-brand-2) 0%, var(--lw-brand) 55%);
	color: #fff;
	padding: 18px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
}

#lw-chatbot-root .lw-header::after {
	/* gold accent line */
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--lw-accent), rgba(201, 168, 76, 0.1));
}

#lw-chatbot-root .lw-header-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

#lw-chatbot-root .lw-avatar {
	width: 42px;
	height: 42px;
	border-radius: 13px;
	background: linear-gradient(135deg, var(--lw-accent), #e6c873);
	color: var(--lw-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}

#lw-chatbot-root .lw-header-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

#lw-chatbot-root .lw-header-title {
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.2px;
}

#lw-chatbot-root .lw-header-status {
	font-size: 12px;
	opacity: 0.85;
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
}

#lw-chatbot-root .lw-status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #22c55e;
	display: inline-block;
	box-shadow: 0 0 6px #22c55e;
}

#lw-chatbot-root .lw-close {
	background: rgba(255, 255, 255, 0.12);
	border: none;
	color: #fff;
	cursor: pointer;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

#lw-chatbot-root .lw-close:hover {
	background: rgba(255, 255, 255, 0.24);
	transform: scale(1.08);
}

#lw-chatbot-root .lw-close:active {
	transform: scale(0.94);
}

/* ============ BODY ============ */
#lw-chatbot-root .lw-body {
	flex: 1;
	overflow-y: auto;
	padding: 18px 16px;
	background:
		radial-gradient(100% 60% at 50% 0%, rgba(27, 42, 74, 0.035), transparent 70%),
		var(--lw-surface);
	display: flex;
	flex-direction: column;
	gap: 12px;
	scroll-behavior: smooth;
}

#lw-chatbot-root .lw-body::-webkit-scrollbar { width: 6px; }
#lw-chatbot-root .lw-body::-webkit-scrollbar-thumb {
	background: rgba(27, 42, 74, 0.18);
	border-radius: 6px;
}

#lw-chatbot-root .lw-msg {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	max-width: 88%;
	flex: 0 0 auto;
	animation: lw-msg-in 0.3s ease;
}

@keyframes lw-msg-in {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

#lw-chatbot-root .lw-msg.lw-user {
	align-self: flex-end;
	flex-direction: row-reverse;
}

#lw-chatbot-root .lw-msg.lw-bot {
	align-self: flex-start;
}

#lw-chatbot-root .lw-msg-avatar {
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background: linear-gradient(135deg, var(--lw-accent), #e6c873);
	color: var(--lw-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-bottom: 2px;
}

#lw-chatbot-root .lw-bubble {
	padding: 11px 15px;
	border-radius: 16px;
	word-wrap: break-word;
	white-space: normal;
	font-size: 14.5px;
	box-shadow: 0 2px 8px rgba(17, 24, 44, 0.06);
}

#lw-chatbot-root .lw-bot .lw-bubble {
	background: var(--lw-bot-bg);
	color: var(--lw-text);
	border: 1px solid var(--lw-border);
	border-bottom-left-radius: 5px;
}

#lw-chatbot-root .lw-user .lw-bubble {
	background: linear-gradient(135deg, var(--lw-user-grad-b), var(--lw-user-grad-a));
	color: #fff;
	border-bottom-right-radius: 5px;
	box-shadow: 0 4px 14px rgba(27, 42, 74, 0.28);
}

/* ============ QUICK REPLY CHIPS ============ */
#lw-chatbot-root .lw-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 2px 0 2px 36px;
	flex: 0 0 auto;
	animation: lw-msg-in 0.35s ease;
}

#lw-chatbot-root .lw-chip {
	background: #fff;
	border: 1.5px solid var(--lw-border);
	color: var(--lw-brand);
	border-radius: 20px;
	padding: 9px 16px;
	min-height: 38px;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.18s ease;
	box-shadow: 0 1px 4px rgba(17, 24, 44, 0.05);
	-webkit-tap-highlight-color: transparent;
}

#lw-chatbot-root .lw-chip:hover {
	background: linear-gradient(135deg, var(--lw-brand-2), var(--lw-brand));
	color: #fff;
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(27, 42, 74, 0.28);
}

/* ============ TYPING ============ */
#lw-chatbot-root .lw-typing .lw-bubble {
	display: flex;
	gap: 5px;
	align-items: center;
	padding: 13px 16px;
}

#lw-chatbot-root .lw-typing .lw-bubble span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lw-brand);
	opacity: 0.4;
	display: inline-block;
	animation: lw-blink 1.3s infinite ease-in-out;
}

#lw-chatbot-root .lw-typing .lw-bubble span:nth-child(2) { animation-delay: 0.2s; }
#lw-chatbot-root .lw-typing .lw-bubble span:nth-child(3) { animation-delay: 0.4s; }

@keyframes lw-blink {
	0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
	40%           { opacity: 1; transform: translateY(-4px); }
}

/* ============ COMPOSER ============ */
#lw-chatbot-root .lw-composer {
	display: flex;
	align-items: flex-end;
	gap: 9px;
	padding: 12px 14px;
	border-top: 1px solid var(--lw-border);
	background: #fff;
}

#lw-chatbot-root .lw-input {
	flex: 1;
	resize: none;
	border: 1.5px solid var(--lw-border);
	border-radius: 14px;
	padding: 11px 14px;
	font-size: 14.5px;
	font-family: inherit;
	line-height: 1.45;
	max-height: 120px;
	outline: none;
	background: var(--lw-surface);
	color: var(--lw-text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#lw-chatbot-root .lw-input::placeholder { color: var(--lw-muted); }

#lw-chatbot-root .lw-input:focus {
	border-color: var(--lw-brand);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.10);
}

#lw-chatbot-root .lw-send {
	background: linear-gradient(135deg, var(--lw-brand-2), var(--lw-brand));
	color: #fff;
	border: none;
	border-radius: 13px;
	width: 46px;
	height: 46px;
	min-width: 46px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
	box-shadow: 0 4px 12px rgba(27, 42, 74, 0.28);
}

#lw-chatbot-root .lw-send:hover {
	filter: brightness(1.08);
	transform: translateY(-1px) scale(1.03);
	box-shadow: 0 7px 18px rgba(27, 42, 74, 0.36);
}

#lw-chatbot-root .lw-send:active { transform: scale(0.96); }

/* Force icon visibility — override any theme/Elementor global "button svg" rules. */
#lw-chatbot-root .lw-send svg {
	fill: #fff !important;
	stroke: none !important;
	width: 24px !important;
	height: 24px !important;
	display: block !important;
	pointer-events: none;
	opacity: 1 !important;
	visibility: visible !important;
}

#lw-chatbot-root .lw-avatar svg,
#lw-chatbot-root .lw-msg-avatar svg {
	fill: var(--lw-brand) !important;
	display: block !important;
}

#lw-chatbot-root .lw-launcher svg,
#lw-chatbot-root .lw-close svg {
	fill: none !important;
	stroke: currentColor !important;
}

/* Force close-icon visibility — override any theme/Elementor global "button svg" rules. */
#lw-chatbot-root .lw-close svg {
	width: 20px !important;
	height: 20px !important;
	display: block !important;
	pointer-events: none;
	opacity: 1 !important;
	visibility: visible !important;
}

/* ============ FOOTER ============ */
#lw-chatbot-root .lw-footer {
	text-align: center;
	font-size: 11px;
	color: var(--lw-muted);
	padding: 7px 10px 9px;
	background: #fff;
	letter-spacing: 0.2px;
}

#lw-chatbot-root .lw-footer strong {
	color: var(--lw-brand);
	font-weight: 600;
}

/* ============ DISCOVERY OFFER BUTTONS ============ */
#lw-chatbot-root .lw-discovery-offer {
	margin: 2px 0 2px 36px;
	padding: 0;
	flex: 0 0 auto;
	animation: lw-msg-in 0.35s ease;
}

#lw-chatbot-root .lw-discovery-offer .lw-btn-yes {
	background: linear-gradient(135deg, #22c55e, #16a34a) !important;
	color: #fff !important;
	border-color: transparent !important;
	box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

#lw-chatbot-root .lw-discovery-offer .lw-btn-yes:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(34, 197, 94, 0.42);
}

#lw-chatbot-root .lw-discovery-offer .lw-btn-no {
	background: #fff !important;
	color: #666 !important;
}

/* ============ RECOMMENDED BADGE + CTA HIGHLIGHT ============ */
#lw-chatbot-root .lw-chip-reco {
	position: relative;
	background: linear-gradient(135deg, #22c55e, #16a34a) !important;
	color: #fff !important;
	border-color: transparent !important;
	box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
	animation: lw-reco-pulse 2.2s ease-in-out infinite;
}

#lw-chatbot-root .lw-chip-reco:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(34, 197, 94, 0.5);
}

#lw-chatbot-root .lw-reco {
	display: inline-block;
	margin-left: 7px;
	padding: 2px 7px;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.24);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	vertical-align: middle;
	white-space: nowrap;
}

/* Floating badge on the large book/proceed CTA */
#lw-chatbot-root .lw-btn-book {
	position: relative;
	overflow: visible;
}

#lw-chatbot-root .lw-reco-btn {
	position: absolute;
	top: -9px;
	right: 14px;
	margin: 0;
	padding: 3px 10px;
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #fff;
	box-shadow: 0 3px 8px rgba(217, 119, 6, 0.45);
}

@keyframes lw-reco-pulse {
	0%, 100% { box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4); }
	50%      { box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6); }
}

/* ============ PREMIUM PITCH CARD ============ */
#lw-chatbot-root .lw-pitch-card {
	margin: 8px 0 8px 0;
	max-width: 100%;
	align-self: stretch;
	flex: 0 0 auto;
	background: #ffffff;
	border: 1.5px solid rgba(201, 168, 76, 0.35);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 32px rgba(27, 42, 74, 0.14);
	animation: lw-pitch-in 0.45s cubic-bezier(0.34, 1.4, 0.5, 1);
	display: flex;
	flex-direction: column;
}

@keyframes lw-pitch-in {
	from { opacity: 0; transform: translateY(16px) scale(0.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

#lw-chatbot-root .lw-pitch-hero {
	background: linear-gradient(135deg, var(--lw-brand-2) 0%, var(--lw-brand) 60%, #1a3055 100%);
	color: #fff;
	padding: 16px 16px 14px;
	position: relative;
	overflow: hidden;
}

#lw-chatbot-root .lw-pitch-hero::after {
	content: "";
	position: absolute;
	top: -30px;
	right: -30px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(201, 168, 76, 0.15);
}

#lw-chatbot-root .lw-pitch-hero-tag {
	display: inline-block;
	background: rgba(201, 168, 76, 0.25);
	border: 1px solid rgba(201, 168, 76, 0.5);
	color: #f5e6b8;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 8px;
}

#lw-chatbot-root .lw-pitch-hero-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 4px;
}

#lw-chatbot-root .lw-pitch-hero-sub {
	font-size: 12px;
	opacity: 0.82;
	line-height: 1.4;
}

#lw-chatbot-root .lw-pitch-body {
	padding: 14px 14px 6px;
}

#lw-chatbot-root .lw-pitch-perk {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 12px;
	padding: 10px 11px;
	background: var(--lw-surface);
	border-radius: 12px;
	border: 1px solid var(--lw-border);
}

#lw-chatbot-root .lw-pitch-icon {
	font-size: 20px;
	line-height: 1;
	flex-shrink: 0;
	margin-top: 1px;
}

#lw-chatbot-root .lw-pitch-perk div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

#lw-chatbot-root .lw-pitch-perk strong {
	font-size: 13px;
	color: var(--lw-brand);
	font-weight: 700;
}

#lw-chatbot-root .lw-pitch-perk span {
	font-size: 12px;
	color: var(--lw-muted);
	line-height: 1.45;
}

#lw-chatbot-root .lw-pitch-perk span strong {
	font-size: 12px;
	color: var(--lw-text);
}

#lw-chatbot-root .lw-pitch-value {
	background: linear-gradient(135deg, rgba(201, 168, 76, 0.14), rgba(201, 168, 76, 0.06));
	border: 1.5px solid rgba(201, 168, 76, 0.45);
	border-radius: 12px;
	padding: 12px 14px;
	text-align: center;
	margin-bottom: 4px;
}

#lw-chatbot-root .lw-pitch-value-label {
	font-size: 11px;
	font-weight: 600;
	color: var(--lw-muted);
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin-bottom: 4px;
}

#lw-chatbot-root .lw-pitch-value-main {
	font-size: 14px;
	color: var(--lw-text);
	margin-bottom: 3px;
}

#lw-chatbot-root .lw-pitch-free {
	display: inline-block;
	background: #22c55e;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	padding: 1px 8px;
	border-radius: 6px;
	margin-right: 4px;
}

#lw-chatbot-root .lw-pitch-value-main strong {
	color: var(--lw-accent);
	font-size: 18px;
}

#lw-chatbot-root .lw-pitch-value-note {
	font-size: 11.5px;
	color: var(--lw-muted);
}

#lw-chatbot-root .lw-btn-book {
	margin: 12px 14px 8px;
	padding: 14px 18px;
	border: none;
	border-radius: 22px;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	letter-spacing: 0.2px;
	box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
	animation: lw-book-pulse 2.2s ease-in-out infinite;
	width: calc(100% - 28px);
}

@keyframes lw-book-pulse {
	0%, 100% { box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45); }
	50%       { box-shadow: 0 8px 28px rgba(34, 197, 94, 0.65); }
}

#lw-chatbot-root .lw-btn-book:hover {
	filter: brightness(1.07);
	transform: translateY(-2px);
	animation: none;
	box-shadow: 0 12px 28px rgba(34, 197, 94, 0.55);
}

#lw-chatbot-root .lw-btn-book:active {
	transform: scale(0.97);
}

#lw-chatbot-root .lw-btn-notserious {
	margin: 0 14px 14px;
	padding: 6px 8px;
	border: none;
	border-radius: 6px;
	background: transparent;
	color: #b0b8c8;
	font-size: 10.5px;
	font-family: inherit;
	font-style: italic;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	opacity: 0.65;
	transition: opacity 0.18s ease, color 0.18s ease;
	width: calc(100% - 28px);
	line-height: 1.4;
}

#lw-chatbot-root .lw-btn-notserious:hover {
	opacity: 0.85;
	color: #9099aa;
}

/* ============ SLOT PICKER ============ */
#lw-chatbot-root .lw-slot-picker {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin: 4px 0 6px 36px;
	padding: 2px;
	flex: 0 0 auto;
	animation: lw-msg-in 0.35s ease;
}

#lw-chatbot-root .lw-slot-chip {
	width: 100%;
	text-align: center;
	padding: 10px 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#lw-chatbot-root .lw-slot-chip:hover {
	background: linear-gradient(135deg, var(--lw-brand-2), var(--lw-brand));
	color: #fff;
	border-color: transparent;
	transform: translateY(-2px);
}

/* ============ PAID CARD — CONFIRMED SLOT BANNER ============ */
#lw-chatbot-root .lw-slot-confirmed {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 12px;
	padding: 11px 12px;
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.05));
	border: 1.5px solid rgba(34, 197, 94, 0.4);
	border-radius: 12px;
}

#lw-chatbot-root .lw-slot-confirmed div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

#lw-chatbot-root .lw-slot-confirmed strong {
	font-size: 12px;
	color: #16a34a;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

#lw-chatbot-root .lw-slot-confirmed span {
	font-size: 14.5px;
	color: var(--lw-text);
	font-weight: 600;
}

/* ============ TABLET ============ */
@media (max-width: 768px) and (min-width: 481px) {
	#lw-chatbot-root .lw-panel {
		width: 360px;
		height: min(600px, calc(100vh - 100px));
	}
}

/* ============ MOBILE ============ */
@media (max-width: 480px) {
	#lw-chatbot-root {
		bottom: 16px;
		right: 16px;
	}

	/* Full-screen, native-app-style chat panel. */
	#lw-chatbot-root .lw-panel {
		position: fixed;
		inset: 0;
		width: 100vw;
		max-width: 100vw;
		height: 100vh;
		height: 100dvh;
		max-height: none;
		border-radius: 0;
		border: none;
	}

	#lw-chatbot-root .lw-panel.lw-open {
		animation: lw-fade-in 0.28s ease;
	}

	#lw-chatbot-root .lw-header {
		padding: 16px 16px calc(16px + env(safe-area-inset-top, 0px));
		padding-top: max(16px, env(safe-area-inset-top, 0px));
	}

	#lw-chatbot-root .lw-body {
		padding: 16px 14px;
	}

	/* 16px input font-size stops iOS Safari from auto-zooming on focus. */
	#lw-chatbot-root .lw-input {
		font-size: 16px;
	}

	#lw-chatbot-root .lw-composer {
		padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
	}

	/* Comfortable touch targets on the booking flow. */
	#lw-chatbot-root .lw-slot-chip {
		min-height: 44px;
		font-size: 14px;
	}

	#lw-chatbot-root .lw-btn-book {
		padding: 15px 18px;
		font-size: 15.5px;
	}

	#lw-chatbot-root .lw-pitch-body {
		padding: 14px 12px 6px;
	}
}

@keyframes lw-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}
