/* GNV floating action icon - shared across every site page */
.gnv-floating-action {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  z-index: 2147483000;
  display: block;
  overflow: hidden;
  background: #123d27;
  border: 1px solid rgba(255, 188, 30, 0.72);
  box-shadow: 0 10px 26px rgba(11, 29, 51, 0.30), 0 0 0 1px rgba(255,188,30,0.08);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  text-decoration: none;
  touch-action: manipulation;
  pointer-events: auto;
}
.gnv-floating-action img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.gnv-floating-action:hover,
.gnv-floating-action:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(11, 29, 51, 0.38), 0 0 0 4px rgba(255, 188, 30, 0.22);
  filter: brightness(1.06);
  outline: none;
}
@media (max-width: 700px) {
  .gnv-floating-action {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gnv-floating-action { transition: none; }
}
