.fwc-mobile-contact,
.fwc-desktop-contact {
	box-sizing: border-box;
	position: fixed;
	z-index: var(--fwc-z-index, 9990);
	font-family: inherit;
}

.fwc-mobile-contact *,
.fwc-desktop-contact * {
	box-sizing: border-box;
}

.fwc-mobile-contact {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	margin: 0;
	padding: 13px 20px;
	border: 0;
	border-radius: 999px;
	background: var(--fwc-primary-color, #25d366);
	color: var(--fwc-text-color, #ffffff)!important;
	box-shadow: var(--fwc-shadow, 0 10px 30px rgba(0, 0, 0, 0.18));
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		filter 180ms ease;
	-webkit-tap-highlight-color: transparent;
}

.fwc-mobile-contact:hover,
.fwc-mobile-contact:focus {
	color: var(--fwc-text-color, #ffffff);
	text-decoration: none;
	filter: brightness(0.96);
	transform: translateY(-2px);
}

.fwc-mobile-contact:focus-visible {
	outline: 3px solid rgba(37, 211, 102, 0.35);
	outline-offset: 4px;
}

.fwc-mobile-contact--round {
	width: 60px;
	height: 60px;
	min-height: 60px;
	padding: 0;
	border-radius: 50%;
}

.fwc-mobile-contact__label {
	display: block;
	white-space: nowrap;
}

.fwc-whatsapp-icon {
	display: block;
	width: 28px;
	height: 28px;
	flex: 0 0 auto;
	color: currentColor;
}

.fwc-mobile-contact--round .fwc-whatsapp-icon {
	width: 32px;
	height: 32px;
}

.fwc-desktop-contact {
	display: none;
	width: var(--fwc-desktop-width, 260px);
	max-width: calc(100vw - 48px);
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	background: var(--fwc-card-background, #ffffff);
	color: var(--fwc-card-text-color, #1f2937);
	box-shadow: var(--fwc-shadow, 0 10px 30px rgba(0, 0, 0, 0.18));
}

.fwc-desktop-contact__header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 17px;
	background: var(--fwc-primary-color, #25d366);
	color: var(--fwc-text-color, #ffffff);
}

.fwc-desktop-contact__icon {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
}

.fwc-desktop-contact__icon .fwc-whatsapp-icon {
	width: 28px;
	height: 28px;
}

.fwc-desktop-contact__title {
	display: block;
	margin: 0;
	color: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.fwc-desktop-contact__body {
	padding: 18px;
	text-align: center;
}

.fwc-desktop-contact__qr {
	display: block;
	width: min(100%, var(--fwc-qr-size, 180px));
	height: auto;
	margin: 0 auto;
	padding: 7px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 10px;
	background: #ffffff;
	object-fit: contain;
}

.fwc-desktop-contact__text {
	margin: 14px 0 0;
	color: inherit;
	font-size: 14px;
	line-height: 1.5;
}

@media screen and (prefers-reduced-motion: reduce) {
	.fwc-mobile-contact {
		transition: none;
	}
}

@media print {
	.fwc-mobile-contact,
	.fwc-desktop-contact {
		display: none !important;
	}
}