.suitecall-call-button {
	position: fixed;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 64px;
	padding: 0 22px;
	border-radius: 999px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
		var(--suitecall-bg, #0d7c66);
	box-shadow:
		0 18px 40px rgba(6, 28, 33, 0.24),
		0 8px 18px rgba(6, 28, 33, 0.16);
	color: #ffffff;
	text-decoration: none;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		filter 0.2s ease;
}

.suitecall-call-button:hover,
.suitecall-call-button:focus-visible {
	transform: translateY(-2px);
	box-shadow:
		0 22px 44px rgba(6, 28, 33, 0.28),
		0 10px 22px rgba(6, 28, 33, 0.18);
	filter: saturate(1.05);
	color: #ffffff;
	text-decoration: none;
}

.suitecall-call-button:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.9);
	outline-offset: 3px;
}

.suitecall-call-button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(8px);
	flex: 0 0 auto;
}

.suitecall-call-button__icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.suitecall-call-button__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.15;
	white-space: nowrap;
}

.suitecall-call-button__headline {
	display: block;
}

.suitecall-call-button__number {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	font-weight: 600;
	opacity: 0.82;
}

@media (max-width: 767px) {
	.suitecall-call-button {
		width: 64px;
		min-width: 64px;
		height: 64px;
		min-height: 64px;
		padding: 0;
		border-radius: 50%;
	}

	.suitecall-call-button__icon {
		width: 64px;
		height: 64px;
		background: transparent;
	}

	.suitecall-call-button__icon svg {
		width: 26px;
		height: 26px;
	}

	.suitecall-call-button__text {
		display: none;
	}
}
