@import url("fonts.css");
@import url("base.css");
@import url("blocks/typography.css");
@import url("blocks/buttons.css");
@import url("blocks/nav.css?v=3");
@import url("blocks/cta.css");
@import url("blocks/footer.css");
@import url("blocks/welcome-modal.css?v=2");

#site-header {
  min-height: 64px;
}

body > header {
  position: sticky;
  top: 0;
  z-index: 200;
}

/* Back to top — sits above JivoChat */
.gr__totop {
  position: fixed;
  right: 24px;
  bottom: 8px;
  z-index: 2147483000;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #0fa00f;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(15, 160, 15, 0.32);
  transition: background 0.2s, transform 0.2s;
}

.gr__totop[hidden] {
  display: none !important;
}

.gr__totop:hover {
  background: #0d8a0d;
  transform: translateY(-2px);
}

.gr__totop:focus-visible {
  outline: 3px solid #eaf5ea;
  outline-offset: 3px;
}

.gr__totop svg {
  width: 26px;
  height: 26px;
  display: block;
}

@media (max-width: 640px) {
  .gr__totop {
    right: 16px;
    bottom: 100px;
    width: 52px;
    height: 52px;
  }

  .gr__totop svg {
    width: 24px;
    height: 24px;
  }
}
