.pivela-chat-button {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 12px 18px;
	border: 1px solid rgba(201, 169, 106, .55);
	border-radius: 999px;
	background: #3b2a1f;
	color: #fffaf1;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(39, 27, 18, .2);
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.pivela-chat-button:hover,
.pivela-chat-button:focus-visible {
	background: #5a402c;
	color: #fffaf1;
	transform: translateY(-2px);
	box-shadow: 0 11px 28px rgba(39, 27, 18, .26);
}

.pivela-chat-button:focus-visible {
	outline: 3px solid #c9a96a;
	outline-offset: 3px;
}

.pivela-chat-button__icon {
	flex: 0 0 25px;
	width: 25px;
	height: 25px;
}

.pivela-chat-button__label {
	white-space: nowrap;
}

.pivela-chat-button--floating {
	position: fixed;
	z-index: 9998;
	bottom: 24px;
}

.pivela-chat-button--right {
	right: 20px;
}

.pivela-chat-button--left {
	left: 20px;
}

.pivela-chat-button--inline {
	position: static;
}

@media (max-width: 767px) {
	.pivela-chat-button--floating {
		bottom: calc(74px + env(safe-area-inset-bottom, 0px));
		min-height: 50px;
		padding: 10px 15px;
		font-size: 14px;
	}

	.pivela-chat-button--right {
		right: 14px;
	}

	.pivela-chat-button--left {
		left: 14px;
	}

	.pivela-chat-button__icon {
		flex-basis: 23px;
		width: 23px;
		height: 23px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pivela-chat-button {
		transition: none;
	}
}
