/* Хера 44 — sticky mobile conversion bar. Mobile only, site-wide. */
#h44-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9990;
  display: none;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 1px;
  background: #dfe6da;
  box-shadow: 0 -6px 20px -8px rgba(0,0,0,.25);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
  padding-bottom: env(safe-area-inset-bottom, 0);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
#h44-bar.is-in { transform: translateY(0); }
#h44-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: 10px 6px; background: #fff; color: #337C45;
  font-size: .74rem; font-weight: 600; text-decoration: none; line-height: 1.1; text-align: center;
  transition: background .2s, color .2s;
}
#h44-bar a svg { width: 21px; height: 21px; }
#h44-bar a:active { background: #f0f6ee; }
#h44-bar .h44-bar__cta {
  background: linear-gradient(120deg,#337C45,#78C720); color: #fff;
}
#h44-bar .h44-bar__viber { color: #6a48b8; }

@media (max-width: 782px) {
  #h44-bar { display: grid; }
  /* keep the bar from covering footer content / theme's own scroll-top */
  body { padding-bottom: 62px; }
  /* lift the WP Social Ninja chat bubble above the sticky bar so they don't overlap */
  .wpsr-fm-chat-wrapper.wpsr-fm-bubble-position-bottom-right,
  .wpsr-fm-chat-wrapper { bottom: 74px !important; }
}
@media (prefers-reduced-motion: reduce) {
  #h44-bar { transition: none; }
}
