.seedout-back-to-top {
  position: fixed;
  right: clamp(16px, 2vw, 24px);
  bottom: clamp(16px, 2vw, 24px);
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(54, 132, 32, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--seedout-chocolate, #368420);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 46, 26, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.seedout-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.seedout-back-to-top:hover,
.seedout-back-to-top:focus {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(54, 132, 32, 0.45);
  color: var(--seedout-chocolate-dark, #285a17);
  box-shadow: 0 6px 20px rgba(26, 46, 26, 0.14);
  outline: none;
}

.seedout-back-to-top:focus-visible {
  box-shadow: 0 0 0 3px rgba(54, 132, 32, 0.22), 0 6px 20px rgba(26, 46, 26, 0.14);
}

.seedout-back-to-top .fa {
  pointer-events: none;
}

@media (max-width: 575.98px) {
  .seedout-back-to-top {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seedout-back-to-top {
    transition: none;
  }
}
