/* Плаваюча кнопка Telegram */
.tg-float{
  position:fixed; right:24px; bottom:24px; z-index:900;
  display:flex; align-items:center; gap:0;
  height:56px; padding:0 16px;
  background:var(--green); color:#fff;
  border-radius:28px;
  box-shadow:0 8px 24px rgba(13,55,1,.25);
  overflow:hidden; max-width:56px;
  transition:max-width .3s ease, background .15s ease;
  white-space:nowrap;
}
.tg-float svg{ flex:none; }
.tg-float__label{ margin-left:12px; font-size:14px; font-weight:500; opacity:0; transition:opacity .2s ease; }
.tg-float:hover{ max-width:280px; background:var(--dark-green); }
.tg-float:hover .tg-float__label{ opacity:1; }

/* Іконка Telegram у контактах */
.tg-ico{ display:flex; color:var(--green); }