/**
 * Plantshub Leafy v2 -- front-end chat widget styles.
 *
 * All selectors are namespaced .leafy- (and scoped under #leafy-widget-root) so
 * the widget cannot collide with theme CSS. One brand colour drives everything
 * via the --leafy-brand custom property; swap it (and its darker hover shade) to
 * re-skin. No external fonts or images -- icons are inline SVG from the JS layer.
 */

#leafy-widget-root {
	--leafy-brand: #2e7d4f;
	--leafy-brand-dark: #256b42;
	--leafy-bot-bg: #f1f4f2;
	--leafy-bot-fg: #1f2a24;
	--leafy-error-bg: #fdecec;
	--leafy-error-fg: #8a1f1f;
	--leafy-border: #e2e8e4;
	--leafy-radius: 16px;
}

.leafy-hidden {
	display: none !important;
}

/* ===== Launcher bubble ===== */
.leafy-bubble {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 60px;
	height: 60px;
	border: none;
	border-radius: 50%;
	background: var(--leafy-brand);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	z-index: 99990;
	transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.leafy-bubble:hover {
	background: var(--leafy-brand-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.leafy-bubble:focus-visible {
	outline: 3px solid rgba(46, 125, 79, 0.4);
	outline-offset: 2px;
}

.leafy-bubble svg {
	width: 30px;
	height: 30px;
	fill: #fff;
}

/* ===== Chat window ===== */
.leafy-window {
	position: fixed;
	right: 22px;
	bottom: 94px;
	width: 360px;
	height: 520px;
	max-width: calc(100vw - 32px);
	max-height: calc(100vh - 120px);
	background: #fff;
	border-radius: var(--leafy-radius);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.26);
	display: none;
	flex-direction: column;
	overflow: hidden;
	z-index: 99991;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.45;
	color: #1f2a24;
}

.leafy-window.leafy-open {
	display: flex;
	animation: leafy-pop 0.16s ease-out;
}

@keyframes leafy-pop {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* ===== Header ===== */
.leafy-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background: var(--leafy-brand);
	color: #fff;
	flex: 0 0 auto;
}

.leafy-header-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.leafy-header-icon svg {
	width: 20px;
	height: 20px;
	fill: #fff;
}

.leafy-header-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1 1 auto;
}

.leafy-title {
	font-weight: 600;
	font-size: 15px;
}

.leafy-subtitle {
	font-size: 12px;
	opacity: 0.85;
}

#leafy-widget-root .leafy-subtitle::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 5px;
	border-radius: 50%;
	background: #4ade80;
	vertical-align: middle;
}

.leafy-close {
	border: none;
	background: transparent;
	color: #fff;
	cursor: pointer;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 0;
}

.leafy-close:hover {
	background: rgba(255, 255, 255, 0.18);
}

.leafy-close svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

/* ===== Messages ===== */
.leafy-messages {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #fff;
}

.leafy-msg {
	max-width: 82%;
	padding: 9px 12px;
	border-radius: 14px;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.leafy-msg-bot {
	align-self: flex-start;
	background: var(--leafy-bot-bg);
	color: var(--leafy-bot-fg);
	border-bottom-left-radius: 4px;
}

.leafy-msg-user {
	align-self: flex-end;
	background: var(--leafy-brand);
	color: #fff;
	border-bottom-right-radius: 4px;
}

.leafy-msg-error {
	align-self: flex-start;
	background: var(--leafy-error-bg);
	color: var(--leafy-error-fg);
	border-bottom-left-radius: 4px;
}

.leafy-msg a {
	color: inherit;
	text-decoration: underline;
}

.leafy-msg-bot a,
.leafy-msg-error a {
	color: var(--leafy-brand-dark);
}

.leafy-msg-user a {
	color: #fff;
}

/* ===== Typing indicator ===== */
.leafy-typing {
	align-self: flex-start;
	display: inline-flex;
	gap: 4px;
	align-items: center;
	background: var(--leafy-bot-bg);
	padding: 11px 14px;
	border-radius: 14px;
	border-bottom-left-radius: 4px;
}

.leafy-typing span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #9aa8a0;
	display: inline-block;
	animation: leafy-blink 1.2s infinite ease-in-out both;
}

.leafy-typing span:nth-child(2) {
	animation-delay: 0.2s;
}

.leafy-typing span:nth-child(3) {
	animation-delay: 0.4s;
}

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

/* ===== Input row ===== */
/* The whole input row is ONE rounded pill (text + clip + mic + send all inside
 * it), matching the production widget. */
.leafy-input-row {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 10px 12px;
	padding: 4px 6px 4px 14px;
	border: 1px solid var(--leafy-border);
	border-radius: 26px;
	background: #fff;
	flex: 0 0 auto;
}

/* Textarea is borderless + transparent so it reads as part of the pill. */
.leafy-input {
	flex: 1 1 auto;
	resize: none;
	border: none;
	border-radius: 0;
	padding: 9px 6px;
	font: inherit;
	line-height: 1.4;
	max-height: 96px;
	min-height: 40px;
	overflow-y: auto;
	background: transparent;
	color: #1f2a24;
}

.leafy-input:focus {
	outline: none;
}

/* Focus ring lives on the pill, not the (borderless) textarea. */
.leafy-input-row:focus-within {
	border-color: var(--leafy-brand);
}

.leafy-input:disabled {
	background: #f3f5f4;
	cursor: not-allowed;
}

.leafy-send {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: var(--leafy-brand);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background 0.15s ease;
}

.leafy-send:hover:not(:disabled) {
	background: var(--leafy-brand-dark);
}

.leafy-send:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.leafy-send svg {
	width: 18px;
	height: 18px;
	fill: #fff;
}

/* ===== Footer note ===== */
.leafy-footer-note {
	padding: 6px 12px 10px;
	font-size: 11px;
	color: #8a958e;
	text-align: center;
	background: #fff;
	flex: 0 0 auto;
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
	.leafy-window {
		top: 8px;
		right: 8px;
		bottom: 8px;
		left: 8px;
		width: auto;
		height: auto;
		max-width: none;
		max-height: none;
	}
}

/* =====================================================================
 * Theme-override hardening (baked from Customizer Additional CSS).
 *
 * The WoodMart theme applies its own position/background rules to <button>
 * and global svg sizing, which out-cascades the plain selectors above.
 * These high-specificity, scoped, !important rules let the plugin win on
 * its own so the temporary Customizer Additional CSS can be removed.
 * Mirrors the verified staging override 1:1, plus a .leafy-send svg size
 * guard for the squashed send icon (see notes).
 * ===================================================================== */
#leafy-widget-root button.leafy-bubble {
	position: fixed !important;
	right: 22px !important;
	bottom: 22px !important;
	left: auto !important;
	top: auto !important;
	width: 60px !important;
	height: 60px !important;
	padding: 0 !important;
	background: #2e7d4f !important;
	background-color: #2e7d4f !important;
	color: #fff !important;
	border: none !important;
	border-radius: 50% !important;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22) !important;
	opacity: 1 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	z-index: 99990 !important;
	cursor: pointer !important;
}

#leafy-widget-root button.leafy-bubble svg {
	width: 30px !important;
	height: 30px !important;
	fill: #fff !important;
	opacity: 1 !important;
}

/* Hide guard: the !important rules above out-rank .leafy-hidden by
 * specificity, so without this the JS toggle (open() adds .leafy-hidden)
 * could not hide the bubble when the window opens. Higher specificity
 * restores the hide. */
#leafy-widget-root button.leafy-bubble.leafy-hidden {
	display: none !important;
}

#leafy-widget-root .leafy-window {
	position: fixed !important;
	right: 22px !important;
	bottom: 94px !important;
	left: auto !important;
	top: auto !important;
	z-index: 99991 !important;
	background: #fff !important;
}

#leafy-widget-root .leafy-header {
	background: #2e7d4f !important;
	color: #fff !important;
}

/* Close (X) button -- WoodMart styles bare <button>s into a white box and hides
 * the icon (looked like a faded square that wouldn't press). Scope + !important
 * to keep it a transparent, white-X, always-clickable control above the messages. */
#leafy-widget-root button.leafy-close {
	width: 32px !important;
	height: 32px !important;
	min-width: 32px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 8px !important;
	background: transparent !important;
	background-color: transparent !important;
	color: #fff !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	box-shadow: none !important;
	opacity: 1 !important;
	position: relative !important;
	z-index: 2 !important;
}

#leafy-widget-root button.leafy-close:hover {
	background: rgba(255, 255, 255, 0.18) !important;
}

#leafy-widget-root button.leafy-close svg {
	width: 16px !important;
	height: 16px !important;
	fill: #fff !important;
}

#leafy-widget-root button.leafy-close svg path {
	fill: #fff !important;
}

#leafy-widget-root .leafy-send {
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	flex: 0 0 auto !important;
	padding: 0 !important;
	border: none !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: #2e7d4f !important;
	color: #fff !important;
}

/* Force the arrow fill on both <svg> and <path>: a theme `svg path { fill }`
 * rule targets the path directly, so an svg-level fill alone loses (the path
 * keeps its own value instead of inheriting). Hardening both makes it white. */
#leafy-widget-root .leafy-send svg {
	width: 18px !important;
	height: 18px !important;
	fill: #fff !important;
}

#leafy-widget-root .leafy-send svg path {
	fill: #fff !important;
}

/* Composer pill: the whole input row is ONE rounded container; the textarea is
 * borderless/transparent inside it, the clip + mic sit flat (no circles) next to
 * a round send button -- matching the production widget. WoodMart styles form
 * rows + buttons, so scope + !important to win. */
#leafy-widget-root .leafy-input-row {
	display: flex !important;
	align-items: center !important;
	gap: 2px !important;
	margin: 10px 12px !important;
	padding: 4px 6px 4px 14px !important;
	border: 1px solid var(--leafy-border) !important;
	border-top: 1px solid var(--leafy-border) !important;
	border-radius: 26px !important;
	background: #fff !important;
	background-color: #fff !important;
	position: relative !important;
}

#leafy-widget-root .leafy-input-row:focus-within {
	border-color: var(--leafy-brand) !important;
}

/* Paperclip attachment menu (Gallery / Files, + Camera on mobile) -- a small popup
 * above the input pill. Buttons are <button>s so they need the same WoodMart
 * scoped/!important hardening as the other widget controls. */
#leafy-widget-root .leafy-clip-menu {
	position: absolute !important;
	bottom: calc(100% + 8px) !important;
	right: 8px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 2px !important;
	min-width: 150px !important;
	padding: 6px !important;
	background: #fff !important;
	border: 1px solid var(--leafy-border) !important;
	border-radius: 12px !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16) !important;
	z-index: 5 !important;
}

#leafy-widget-root .leafy-clip-menu.leafy-hidden {
	display: none !important;
}

#leafy-widget-root button.leafy-clip-menu-item {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	height: auto !important;
	margin: 0 !important;
	padding: 9px 12px !important;
	border: none !important;
	border-radius: 8px !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: #1f2a24 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	text-align: left !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	cursor: pointer !important;
}

#leafy-widget-root button.leafy-clip-menu-item:hover {
	background: #f3f5f4 !important;
	background-color: #f3f5f4 !important;
}

/* The WoodMart theme inflates form textareas (a large min-height) and gives them
 * a border/background. Force it compact + borderless/transparent so it reads as
 * part of the pill; the auto-grow JS sets an inline !important height [40-96px]. */
#leafy-widget-root textarea.leafy-input {
	min-height: 40px !important;
	max-height: 96px !important;
	box-sizing: border-box !important;
	line-height: 1.4 !important;
	resize: none !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 9px 6px !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

/* Voice-typing mic button -- flat icon inside the pill (turns red while recording). */
#leafy-widget-root button.leafy-mic {
	flex: 0 0 auto !important;
	width: 36px !important;
	height: 36px !important;
	min-width: 36px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 50% !important;
	background: transparent !important;
	background-color: transparent !important;
	color: var(--leafy-brand-dark) !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: none !important;
}

#leafy-widget-root button.leafy-mic svg {
	width: 18px !important;
	height: 18px !important;
	fill: var(--leafy-brand-dark) !important;
}

#leafy-widget-root button.leafy-mic svg path {
	fill: var(--leafy-brand-dark) !important;
}

#leafy-widget-root button.leafy-mic.leafy-mic-on {
	background: #fde8e8 !important;
	background-color: #fde8e8 !important;
	border-color: #e53935 !important;
}

#leafy-widget-root button.leafy-mic.leafy-mic-on svg,
#leafy-widget-root button.leafy-mic.leafy-mic-on svg path {
	fill: #e53935 !important;
}

/* Photo attachment (paperclip) button -- flat icon inside the pill, mirrors the mic. */
#leafy-widget-root button.leafy-clip {
	flex: 0 0 auto !important;
	width: 36px !important;
	height: 36px !important;
	min-width: 36px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 50% !important;
	background: transparent !important;
	background-color: transparent !important;
	color: var(--leafy-brand-dark) !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: none !important;
}

#leafy-widget-root button.leafy-clip svg {
	width: 18px !important;
	height: 18px !important;
	fill: var(--leafy-brand-dark) !important;
}

#leafy-widget-root button.leafy-clip svg path {
	fill: var(--leafy-brand-dark) !important;
}

#leafy-widget-root button.leafy-clip:disabled,
#leafy-widget-root button.leafy-clip.leafy-clip-busy {
	opacity: 0.5 !important;
	cursor: default !important;
}

/* Customer's attached-photo thumbnail bubble (inherits user alignment). */
#leafy-widget-root .leafy-msg-image {
	padding: 4px !important;
	background: #2e7d4f !important;
}

#leafy-widget-root .leafy-msg-image img.leafy-img {
	display: block !important;
	max-width: 180px !important;
	max-height: 180px !important;
	width: auto !important;
	height: auto !important;
	border-radius: 10px !important;
	object-fit: cover !important;
}

#leafy-widget-root .leafy-msg-user {
	background: #2e7d4f !important;
	color: #fff !important;
}

@media (max-width: 480px) {
	#leafy-widget-root .leafy-window {
		top: 8px !important;
		right: 8px !important;
		bottom: 8px !important;
		left: 8px !important;
	}
}

/* Raise the chat bubble above the site's mobile bottom navigation bar (Home /
 * Menu / You / Order / Wishlist) so they don't overlap. */
@media (max-width: 768px) {
	#leafy-widget-root button.leafy-bubble {
		bottom: 84px !important;
	}
}

/* ===== Order card (lookup-order) ===== */
#leafy-widget-root .leafy-order-card {
	align-self: flex-start;
	width: 88%;
	max-width: 88%;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid var(--leafy-border);
	border-radius: 14px;
	border-bottom-left-radius: 4px;
	padding: 12px 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	font-size: 14px;
	color: #1f2a24;
}

#leafy-widget-root .leafy-oc-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 8px;
}

#leafy-widget-root .leafy-oc-id {
	font-weight: 600;
}

#leafy-widget-root .leafy-oc-badge {
	font-size: 11px;
	font-weight: 600;
	padding: 3px 9px;
	border-radius: 999px;
	white-space: nowrap;
	color: #fff;
	background: #9aa8a0;
}

#leafy-widget-root .leafy-os-done {
	background: var(--leafy-brand);
}

#leafy-widget-root .leafy-os-shipped {
	background: #2563c9;
}

#leafy-widget-root .leafy-os-processing {
	background: #c98a16;
}

#leafy-widget-root .leafy-os-pending {
	background: #8a958e;
}

#leafy-widget-root .leafy-os-cancelled {
	background: #c0392b;
}

#leafy-widget-root .leafy-oc-row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 2px 0;
	color: #5b675f;
}

#leafy-widget-root .leafy-oc-val {
	color: #1f2a24;
	text-align: right;
}

#leafy-widget-root .leafy-oc-items-title {
	margin: 8px 0 4px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #8a958e;
	text-transform: uppercase;
}

#leafy-widget-root .leafy-oc-item {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 2px 0;
}

#leafy-widget-root .leafy-oc-item-name {
	overflow-wrap: anywhere;
}

#leafy-widget-root .leafy-oc-item-amt {
	white-space: nowrap;
	color: #5b675f;
}

#leafy-widget-root .leafy-oc-total {
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--leafy-border);
	font-weight: 600;
}

#leafy-widget-root .leafy-oc-track {
	display: block;
	margin-top: 12px;
	padding: 9px 12px;
	border-radius: 10px;
	background: var(--leafy-brand);
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}

#leafy-widget-root .leafy-oc-track:hover {
	background: var(--leafy-brand-dark);
}

/* "View all orders" -- secondary (outlined) button under the order card, mirrors
 * the production widget; fills on hover. Links to My Account -> Orders. */
#leafy-widget-root .leafy-oc-orders {
	display: block;
	margin-top: 8px;
	padding: 9px 12px;
	border: 1px solid var(--leafy-brand);
	border-radius: 10px;
	background: transparent;
	color: var(--leafy-brand) !important;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}

#leafy-widget-root .leafy-oc-orders:hover {
	background: var(--leafy-brand) !important;
	color: #fff !important;
}

/* ===== Quick-reply chips (order actions, etc.) =====
 * Buttons, so the WoodMart theme styles them -- mirror the bubble/send
 * hardening with high-specificity, scoped, !important rules so the chips render
 * as outlined pills regardless of theme. */
#leafy-widget-root .leafy-chips {
	align-self: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: 88%;
	max-width: 88%;
	box-sizing: border-box;
	margin-top: 2px;
}

#leafy-widget-root button.leafy-chip {
	display: inline-flex !important;
	align-items: center !important;
	width: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	height: auto !important;
	margin: 0 !important;
	padding: 8px 14px !important;
	border: 1px solid var(--leafy-brand) !important;
	border-radius: 999px !important;
	background: #fff !important;
	background-color: #fff !important;
	color: var(--leafy-brand-dark) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	box-shadow: none !important;
	cursor: pointer !important;
	transition: background 0.15s ease, color 0.15s ease;
}

#leafy-widget-root button.leafy-chip:hover:not(:disabled) {
	background: var(--leafy-brand) !important;
	background-color: var(--leafy-brand) !important;
	color: #fff !important;
}

#leafy-widget-root button.leafy-chip:focus-visible {
	outline: 3px solid rgba(46, 125, 79, 0.4);
	outline-offset: 1px;
}

#leafy-widget-root .leafy-chips-used button.leafy-chip {
	opacity: 0.55;
	cursor: default !important;
	border-color: var(--leafy-border) !important;
	color: #8a958e !important;
	background: #fff !important;
	background-color: #fff !important;
}

/* ===== Live agent chat (human handoff) ===== */
#leafy-widget-root .leafy-note {
	align-self: center;
	max-width: 92%;
	margin: 6px auto;
	padding: 6px 12px;
	border-radius: 12px;
	background: #eef2f0;
	color: #5b675f;
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
}

#leafy-widget-root .leafy-agent-label {
	align-self: flex-start;
	margin: 2px 0 -2px 4px;
	font-size: 11px;
	font-weight: 600;
	color: #2563c9;
}

#leafy-widget-root .leafy-msg-agent {
	align-self: flex-start;
	background: #eaf1fb !important;
	color: #14233a !important;
	border: 1px solid #d3e2f7;
	border-bottom-left-radius: 4px;
}

#leafy-widget-root .leafy-msg-agent a {
	color: #1d4ed8;
}

/* Footer "back to Leafy bot" control (replaces the disclaimer in agent mode). */
#leafy-widget-root button.leafy-exit-agent {
	display: inline-block !important;
	width: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	height: auto !important;
	margin: 0 !important;
	padding: 6px 14px !important;
	border: 1px solid var(--leafy-brand) !important;
	border-radius: 999px !important;
	background: #fff !important;
	background-color: #fff !important;
	color: var(--leafy-brand-dark) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	box-shadow: none !important;
	cursor: pointer !important;
}

#leafy-widget-root button.leafy-exit-agent:hover {
	background: var(--leafy-brand) !important;
	background-color: var(--leafy-brand) !important;
	color: #fff !important;
}
