.goreise-contact-buttons {
	position: fixed;
	right: 22px;
	bottom: 90px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
	pointer-events: none;
}

.goreise-contact-button {
	display: inline-flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	min-width: 48px;
	height: 48px;
	padding: 0;
	border-radius: 999px;
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(16, 34, 56, 0.22);
	overflow: hidden;
	pointer-events: auto;
	transition: max-width 180ms ease, padding 180ms ease, transform 180ms ease, box-shadow 180ms ease;
	max-width: 48px;
}

.goreise-contact-button:hover,
.goreise-contact-button:focus-visible {
	max-width: 190px;
	padding-left: 16px;
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(16, 34, 56, 0.28);
	color: #fff;
	text-decoration: none;
}

.goreise-contact-button--whatsapp {
	background: #25d366;
}

.goreise-contact-button--zalo {
	background: #0068ff;
}

.goreise-contact-button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
}

.goreise-contact-button__icon svg {
	display: block;
	width: 26px;
	height: 26px;
	fill: currentColor;
}

.goreise-contact-button__label {
	display: inline-block;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(6px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.goreise-contact-button:hover .goreise-contact-button__label,
.goreise-contact-button:focus-visible .goreise-contact-button__label {
	opacity: 1;
	transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
	.goreise-contact-button,
	.goreise-contact-button__label {
		transition: none;
	}
}

@media (max-width: 767px) {
	.goreise-contact-buttons {
		right: 14px;
		bottom: calc(76px + env(safe-area-inset-bottom));
		gap: 8px;
	}

	.goreise-contact-button,
	.goreise-contact-button__icon {
		width: 44px;
		height: 44px;
		min-width: 44px;
		max-width: 44px;
	}

	.goreise-contact-button {
		gap: 0;
		box-shadow: 0 10px 24px rgba(16, 34, 56, 0.22);
	}

	.goreise-contact-button:hover,
	.goreise-contact-button:focus-visible {
		max-width: 44px;
		padding-left: 0;
		transform: none;
	}

	.goreise-contact-button__icon {
		flex-basis: 44px;
	}

	.goreise-contact-button__icon svg {
		width: 24px;
		height: 24px;
	}

	.goreise-contact-button__label {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		padding: 0;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}
}
