/* =========================================================================
   КУЗНЯ КАВИ — плаваюча кнопка контактів
   ========================================================================= */

.kk-floater { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }

/* Кнопка-пузир */
.kk-floater__btn {
	width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer;
	background: #56694C; color: #F3EEE2; padding: 0;
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(0,0,0,.18); transition: transform .2s ease, background .2s ease;
}
.kk-floater__btn:hover,.kk-floater__btn:focus { transform: translateY(-2px);background: #56694C; }
.kk-floater__btn svg { width: 28px; height: 28px; }

/* Поповер */
.kk-floater__pop {
position: absolute;
	right: 0;
	bottom: 74px;              /* висота кнопки (62) + відступ */
	background: #fff; border-radius: 20px; padding: 18px; min-width: 300px;
	box-shadow: 0 16px 48px rgba(0,0,0,.16);
	display: flex; flex-direction: column;
	transform: translateY(10px); opacity: 0;
	visibility: hidden; pointer-events: none;
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.kk-floater.is-open .kk-floater__pop {
	transform: translateY(0); opacity: 1;
	visibility: visible; pointer-events: auto;
}

.kk-floater__item {
	display: flex; align-items: center; gap: 16px; padding: 12px 8px;
	text-decoration: none; color: #1B1A18; font-size: 17px;
	border-bottom: 1px solid rgba(27,26,24,.06);
}
.kk-floater__item:last-child { border-bottom: 0; }
.kk-floater__item:hover .kk-floater__label { color: #56694C; }

.kk-floater__ico {
	flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.kk-floater__ico svg { width: 22px; height: 22px; }

/* Кольори іконок */
.kk-floater__item--viber    .kk-floater__ico { background: #7360F2; }
.kk-floater__item--telegram .kk-floater__ico { background: #2AABEE; }
.kk-floater__item--email    .kk-floater__ico { background: #4C8BF5; }
.kk-floater__item--feedback .kk-floater__ico { background: #E0842F; }

.kk-floater__label { color: #1B1A18; transition: color .2s ease; }

@media (max-width: 480px) {
	.kk-floater { right: 16px; bottom: 16px; }
	.kk-floater__pop { min-width: 260px; }
	.kk-floater__btn { width: 56px; height: 56px; }
}
