/* Fimax — кастомный скроллбар */ ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: #1e2a3a; } ::-webkit-scrollbar-thumb { background: #d4a843; border-radius: 10px; } ::-webkit-scrollbar-thumb:hover { background: #b8913a; }
.fm-wa {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  z-index: 9999;
  transition: transform .2s;
}
.fm-wa:hover { transform: scale(1.12); }