@keyframes frabinaFloatIn {
	from { opacity: 0; transform: translate(-24px, -50%) scale(.94); }
	to { opacity: 1; transform: translate(0, -50%) scale(1); }
}

@keyframes frabinaPulseRing {
	0% { box-shadow: 0 0 0 0 rgba(228, 112, 8, 0.55), 0 14px 34px rgba(117, 43, 75, 0.28), 0 3px 8px rgba(117, 43, 75, 0.15); }
	70% { box-shadow: 0 0 0 14px rgba(228, 112, 8, 0), 0 14px 34px rgba(117, 43, 75, 0.28), 0 3px 8px rgba(117, 43, 75, 0.15); }
	100% { box-shadow: 0 0 0 0 rgba(228, 112, 8, 0), 0 14px 34px rgba(117, 43, 75, 0.28), 0 3px 8px rgba(117, 43, 75, 0.15); }
}

.frabina-floating-contact {
	position: fixed;
	left: 16px;
	top: 180px;
	transform: translateY(-180px);
	z-index: 100000;
	display: flex;
	align-items: center;
	gap: 14px;
	width: 272px;
	min-height: 76px;
	padding: 12px 20px 12px 12px;
	background: #F5EDEF;
    border-radius: 18px;
    border: 1px solid rgb(117 43 75 / 40%);
	box-shadow: 0 14px 34px rgba(117, 43, 75, 0.28), 0 3px 8px rgba(117, 43, 75, 0.15);
	font-family: "Roboto", sans-serif;
	animation: frabinaFloatIn .6s ease-out both, frabinaPulseRing 2.2s ease-out .8s infinite;
	transition: transform .3s ease;
	opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.frabina-floating-contact:hover {
	transform: translateY(-50%) scale(1.035);
	animation-play-state: paused;
	box-shadow: 0 18px 40px rgba(117, 43, 75, 0.34), 0 4px 10px rgba(117, 43, 75, 0.18);
}

.frabina-floating-contact__icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--frabina-accent);
	background: linear-gradient(145deg, var(--frabina-accent), color-mix(in srgb, var(--frabina-accent) 80%, black));
	box-shadow: 0 4px 10px rgba(117, 43, 75, 0.35);
}
.frabina-floating-contact__icon svg{
	width: 30px; height: 30px;
}

.frabina-floating-contact__text {
	display: flex;
	flex-direction: column;
	line-height: 1.4;
}

.frabina-floating-contact__hours {
	font-weight: 700;
	font-size: 14px;
	color: var(--frabina-accent);
}

.frabina-floating-contact__line {
	font-size: 13px;
	color: var(--e-global-color-text);
	text-decoration: none;
	transition: opacity .2s ease;
}

.frabina-floating-contact__line:hover {
	opacity: .72;
	text-decoration: underline;
}

.frabina-close-btn {
    position: absolute;
    top: 1px;
    right: 6px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
}

.frabina-close-btn:hover {
    background: rgba(0,0,0,.08);
}
.frabina-close-btn:focus,
.frabina-close-btn:focus-visible{
	outline: none !important;
}
.frabina-floating-contact.closed {
    /* transform: translateX(-120%) !important;
    opacity: 0 !important;
    pointer-events: none; */
	opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
	.frabina-floating-contact {
		animation: none;
	}
}

@media (max-width: 600px) {
	.frabina-floating-contact {
		left: 8px;
		width: auto;
		max-width: 80vw;
		padding: 8px 14px 8px 8px;
	}
	.frabina-floating-contact__icon {
		width: 38px;
		height: 38px;
	}
	.frabina-floating-contact__hours {
		font-size: 12px;
	}
	.frabina-floating-contact__line {
		font-size: 11px;
	}
	.frabina-floating-contact__icon svg {
		width: 25px;
		height: 25px;
	}
}
