.gooyacht-whatsapp-wrap {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9999;
}

.gooyacht-whatsapp-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-radius: 999px;
	text-decoration: none;
	background: rgba(17, 24, 39, 0.92);
	color: #ffffff;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.gooyacht-whatsapp-button:hover,
.gooyacht-whatsapp-button:focus {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
	background: rgba(17, 24, 39, 0.98);
	color: #ffffff;
	text-decoration: none;
}

.gooyacht-whatsapp-button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: #25d366;
	flex-shrink: 0;
}

.gooyacht-whatsapp-button__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.gooyacht-whatsapp-button__text {
	line-height: 1;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.gooyacht-whatsapp-wrap {
		right: 16px;
		bottom: 61px;
	}

	.gooyacht-whatsapp-button {
		padding: 14px;
		border-radius: 50%;
		width: 58px;
		height: 58px;
		justify-content: center;
		gap: 0;
	}

	.gooyacht-whatsapp-button__text {
		display: none;
	}

	.gooyacht-whatsapp-button__icon {
		width: 26px;
		height: 26px;
	}
}