.wfb-widget {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.wfb-trigger {
	padding: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgb(112, 143, 198) !important;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
	transition: transform .2s;
}

.wfb-trigger svg {
	width: 40px !important;
	height: 40px !important;
}

.wfb-trigger:hover {
	transform: scale(1.08);
}

.wfb-trigger svg {
	width: 34px;
	height: 34px;
}

.wfb-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height .3s ease, opacity .2s ease;
}

.wfb-widget.open .wfb-buttons {
	max-height: 400px;
	opacity: 1;
}

.wfb-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
	text-decoration: none;
	transition: opacity .15s;
}

.wfb-btn:hover {
	opacity: .5;
}

.wfb-btn svg {
	width: 40px !important;
	height: 40px !important;
}

@media (max-width: 480px) {
	.wfb-widget {
		right: 12px;
		bottom: 12px;
	}
}

/* ── Viber QR Popover ───────────────────────────────────────────────────── */

.wfb-viber-popover {
	position: fixed;
	right: 20px;
	bottom: 90px;
	z-index: 10000;
	width: 260px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.wfb-viber-popover__header {
	background: #7360F2;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
}

.wfb-viber-popover__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
}

.wfb-viber-popover__close {
	background: none;
	border: none;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.wfb-viber-popover__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 14px;
}

.wfb-viber-popover__qr {
	width: 150px;
	height: 150px;
	margin-bottom: 14px;
}

.wfb-viber-popover__phone {
	font-size: 18px;
	font-weight: 700;
	color: #222;
	margin-bottom: 6px;
}

.wfb-viber-popover__link {
	font-size: 12px;
	color: #7360F2;
	text-decoration: underline;
}

@media (max-width: 480px) {
	.wfb-viber-popover {
		right: 12px;
		left: 12px;
		width: auto;
		bottom: 90px;
	}
}