.gut-fb {
	position: fixed;
	inset-inline: 0;
	bottom: 12px;
	z-index: 9990;
	padding: 0 12px;
	pointer-events: none;
}
@media (min-width: 768px) {
	.gut-fb { bottom: 24px; padding: 0 24px; }
}
.gut-fb__pill {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 40px;
	height: 56px;
	border-radius: 9999px;
	background: var(--gut-orange, #ec6436);
	overflow: hidden;
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	will-change: max-width, opacity, transform;
	transition: max-width .6s cubic-bezier(0.22,1,0.36,1), opacity .6s cubic-bezier(0.22,1,0.36,1), transform .6s cubic-bezier(0.22,1,0.36,1), box-shadow .6s;
}
@media (min-width: 768px) { .gut-fb__pill { height: 64px; } }
.gut-fb__pill.is-open {
	max-width: 1100px;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	box-shadow: var(--gut-shadow-xl, 0 24px 48px rgba(20,17,15,0.18));
}
.gut-fb__inner {
	position: absolute;
	inset-block: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(1100px, calc(100vw - 24px));
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 16px;
}
@media (min-width: 768px) { .gut-fb__inner { gap: 24px; padding: 0 28px; } }
.gut-fb__left { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
@media (min-width: 768px) { .gut-fb__left { gap: 28px; } }
.gut-fb__lead { color: #fff; font-family: var(--gut-font-body, sans-serif); font-weight: 600; font-size: 14px; white-space: nowrap; }
@media (max-width: 639px) { .gut-fb__lead { display: none; } }
@media (min-width: 768px) { .gut-fb__lead { font-size: 16px; } }
.gut-fb__social { display: flex; align-items: center; gap: 16px; color: #fff; flex-shrink: 0; }
.gut-fb__social a { display: inline-flex; align-items: center; height: 20px; color: #fff; transition: opacity .2s ease; }
@media (min-width: 768px) { .gut-fb__social a { height: 24px; } }
.gut-fb__social a:hover { opacity: 0.8; }
.gut-fb__social img, .gut-fb__social svg { height: 100%; width: auto; }
.gut-fb__right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
@media (min-width: 768px) { .gut-fb__right { gap: 12px; } }
.gut-fb__btn {
	display: inline-flex;
	align-items: center;
	padding: 8px 20px;
	border-radius: 9999px;
	background: var(--gut-cream, #f0eeea);
	color: var(--gut-ink, #14110f);
	font-family: var(--gut-font-body, sans-serif);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s ease;
}
@media (min-width: 768px) { .gut-fb__btn { padding: 10px 28px; font-size: 16px; } }
.gut-fb__btn:hover { background: #fff; }
@media (prefers-reduced-motion: reduce) { .gut-fb__pill { transition: opacity .3s ease; } }
