@keyframes frabinaFloatIn {
	from { opacity: 0; transform: translateX(-24px) scale(.94); }
	to { opacity: 1; transform: translateX(0) 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: none;
	z-index: 100000;
	display: flex;
	align-items: center;
	gap: 14px;
	width: max-content;
	min-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;
	opacity: 1;
	visibility: visible;
	transition: transform .3s ease;
}

.frabina-floating-contact:hover {
	transform: 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;
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	box-shadow: 0 4px 10px rgba(117, 43, 75, 0.25);
	cursor: pointer;
	overflow: hidden;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.frabina-floating-contact__icon img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.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);
	white-space: nowrap;
}

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

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

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

.frabina-close-btn:hover {
    background: rgba(0,0,0,.08);
}
.frabina-close-btn:focus,
.frabina-close-btn:focus-visible,
.frabina-floating-contact__icon:focus,
.frabina-floating-contact__icon:focus-visible{
	outline: none !important;
}
.frabina-floating-contact.closed {
	width: 56px;
	min-width: 0;
	min-height: 56px;
	padding: 4px;
	gap: 0;
	justify-content: center;
	border-radius: 50%;
}
.frabina-floating-contact.closed .frabina-floating-contact__text,
.frabina-floating-contact.closed .frabina-close-btn {
	display: none;
}
.frabina-floating-contact.closed .frabina-floating-contact__icon {
	cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
	.frabina-floating-contact {
		animation: none;
	}
}

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