#natasha-chatbot-root, #natasha-chatbot-root * {
	box-sizing: border-box;
	font-family: inherit; /* Always inherit the theme's font, no custom font-family */
}

#natasha-chatbot-root {
	position: fixed !important;
	bottom: 22px !important;
	right: 22px !important;
	left: auto !important;
	top: auto !important;
	z-index: 2147483000;
}
#natasha-chatbot-root[data-position="left"] {
	right: auto !important;
	left: 22px !important;
}

.natasha-icon { display: block; flex-shrink: 0; }

/* Launcher button */
.natasha-launcher {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--natasha-color, #e91e63), var(--natasha-color-dark, #ad1457));
	box-shadow: 0 8px 24px rgba(0,0,0,.28);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 3px solid #fff;
	overflow: visible;
	position: relative;
	transition: transform .2s ease;
}
.natasha-launcher:hover { transform: scale(1.06); }
.natasha-launcher.natasha-launcher-active .natasha-launcher-ring { display: none; }
.natasha-launcher img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.natasha-launcher-ring {
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid var(--natasha-color, #e91e63);
	opacity: .55;
	animation: natasha-pulse 2.2s ease-out infinite;
	pointer-events: none;
}
@keyframes natasha-pulse {
	0%   { transform: scale(1);   opacity: .55; }
	80%  { transform: scale(1.35); opacity: 0; }
	100% { transform: scale(1.35); opacity: 0; }
}
.natasha-launcher .natasha-online-dot {
	position: absolute;
	bottom: 3px;
	right: 3px;
	width: 13px;
	height: 13px;
	background: #3ccb5f;
	border: 2px solid #fff;
	border-radius: 50%;
}

/* Teaser popup */
.natasha-teaser {
	position: absolute;
	bottom: 78px;
	right: 0;
	width: 270px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 14px 36px rgba(0,0,0,.2);
	padding: 16px 18px;
	display: none;
	animation: natasha-fade-in .3s ease;
}
#natasha-chatbot-root[data-position="left"] .natasha-teaser {
	right: auto;
	left: 0;
}
.natasha-teaser.natasha-visible { display: block; }
.natasha-teaser .natasha-teaser-close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	color: #aaa;
	background: none;
	border: none;
	padding: 4px;
	line-height: 1;
	border-radius: 50%;
}
.natasha-teaser .natasha-teaser-close:hover { color: #666; background: #f1f1f1; }
.natasha-teaser-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
}
.natasha-teaser-row img {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.natasha-teaser p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.4;
	color: #222;
	padding-right: 10px;
}
.natasha-teaser .natasha-teaser-btn {
	display: inline-block;
	background: linear-gradient(135deg, var(--natasha-color, #e91e63), var(--natasha-color-dark, #ad1457));
	color: #fff;
	border: none;
	padding: 9px 20px;
	border-radius: 22px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	width: 100%;
}

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

/* Chat window */
.natasha-chat-window {
	position: absolute;
	bottom: 80px;
	right: 0;
	width: 370px;
	max-width: calc(100vw - 24px);
	height: 540px;
	max-height: 76vh;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(0,0,0,.28);
	display: none;
	flex-direction: column;
	overflow: hidden;
	opacity: 0;
	transform: translateY(16px) scale(.98);
	transition: opacity .18s ease, transform .18s ease;
}
#natasha-chatbot-root[data-position="left"] .natasha-chat-window {
	right: auto;
	left: 0;
}
.natasha-chat-window.natasha-open {
	display: flex;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.natasha-chat-header {
	background: linear-gradient(135deg, var(--natasha-color, #e91e63), var(--natasha-color-dark, #ad1457));
	color: #fff;
	display: flex;
	align-items: center;
	padding: 14px 16px;
	flex: 0 0 auto;
}
.natasha-chat-header img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 10px;
	border: 2px solid rgba(255,255,255,.65);
	flex-shrink: 0;
}
.natasha-header-text { flex: 1; min-width: 0; }
.natasha-chat-header .natasha-header-name {
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .1px;
}
.natasha-header-status {
	font-size: 11.5px;
	opacity: .85;
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 1px;
}
.natasha-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #3ccb5f;
	display: inline-block;
}
.natasha-chat-header .natasha-close-btn {
	background: rgba(255,255,255,.15);
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 6px;
	border-radius: 50%;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.natasha-chat-header .natasha-close-btn:hover { background: rgba(255,255,255,.28); }

.natasha-chat-body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 16px 14px;
	background: #f6f6f8;
}

.natasha-msg-row {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
	animation: natasha-fade-in .2s ease;
}
.natasha-msg-row.natasha-user {
	justify-content: flex-end;
}
.natasha-msg-row img {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 8px;
	flex-shrink: 0;
}
.natasha-bubble {
	background: #fff;
	border-radius: 14px;
	border-top-left-radius: 4px;
	padding: 10px 13px;
	font-size: 13.5px;
	line-height: 1.45;
	max-width: 78%;
	box-shadow: 0 1px 3px rgba(0,0,0,.07);
	color: #222;
}
.natasha-msg-row.natasha-user .natasha-bubble {
	background: linear-gradient(135deg, var(--natasha-color, #e91e63), var(--natasha-color-dark, #ad1457));
	color: #fff;
	border-radius: 14px;
	border-top-right-radius: 4px;
	border-top-left-radius: 14px;
}

.natasha-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 4px 0 14px 34px;
}
.natasha-option-btn {
	border: 1.5px solid var(--natasha-color, #e91e63);
	background: #fff;
	color: var(--natasha-color, #e91e63);
	padding: 9px 16px;
	border-radius: 22px;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	text-align: left;
	transition: background .15s ease, color .15s ease, transform .1s ease;
}
.natasha-option-btn:hover:not(:disabled) {
	background: var(--natasha-color, #e91e63);
	color: #fff;
	transform: translateY(-1px);
}
.natasha-option-btn:disabled { cursor: default; opacity: .55; }
.natasha-option-btn.natasha-selected {
	background: var(--natasha-color, #e91e63);
	color: #fff;
	opacity: 1;
}
.natasha-options.natasha-inline {
	flex-direction: row;
	flex-wrap: wrap;
}
.natasha-options.natasha-inline .natasha-option-btn {
	flex: 0 0 auto;
}

.natasha-brochure-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #eef0f2;
	padding: 9px 16px;
	border-radius: 22px;
	color: #333;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	margin-top: 8px;
	transition: background .15s ease;
}
.natasha-brochure-link:hover { background: #e2e5e9; }
.natasha-brochure-link .natasha-icon { color: var(--natasha-color, #e91e63); }

.natasha-chat-footer {
	flex: 0 0 auto;
	border-top: 1px solid #ececec;
	padding: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
}
.natasha-chat-footer input[type="text"],
.natasha-chat-footer input[type="tel"],
.natasha-chat-footer input[type="email"] {
	flex: 1;
	border: 1px solid #e2e2e2;
	background: #f6f6f8;
	border-radius: 22px;
	padding: 10px 16px;
	font-size: 13.5px;
	outline: none;
}
.natasha-chat-footer input:focus {
	border-color: var(--natasha-color, #e91e63);
	background: #fff;
}
.natasha-send-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--natasha-color, #e91e63), var(--natasha-color-dark, #ad1457));
	color: #fff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform .1s ease;
}
.natasha-send-btn:hover { transform: scale(1.06); }

/* Mobile responsiveness */
@media (max-width: 480px) {
	#natasha-chatbot-root {
		right: 14px !important;
		bottom: 14px !important;
	}
	#natasha-chatbot-root[data-position="left"] {
		left: 14px !important;
	}
	.natasha-chat-window {
		width: calc(100vw - 20px);
		height: 78vh;
		bottom: 76px;
	}
	.natasha-teaser {
		width: calc(100vw - 40px);
	}
	.natasha-launcher {
		width: 58px;
		height: 58px;
	}
}
@media (max-width: 768px) {
	#natasha-chatbot-root {
		bottom: 50px !important; /* 22px default + 100px clearance */
	}
}
@media (max-width: 480px) {
	#natasha-chatbot-root {
		bottom: 54px !important; /* 14px mobile default + 100px clearance */
	}
}

/* keeps floating Call/WhatsApp buttons sitting above the launcher after the shift */
@media (max-width: 768px) {
	.natasha-float-stack { bottom: 60px; }
}
@media (max-width: 480px) {
	.natasha-float-stack { bottom: 84px; }
	body.natasha-has-mobile-bar .natasha-float-stack { bottom: 80px; }
}
