/**
 * Public site — fixed scroll-to-top button
 * Created by ui-components.js (class: .scroll-to-top)
 */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: var(--primary, #F35B25);
  color: var(--text-inverse, #fff);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.scroll-to-top i {
  color: inherit;
  font-size: inherit;
  line-height: 1;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  background: var(--primary-600, var(--primary-500, #D94E1D));
  color: var(--text-inverse, #fff);
}

.scroll-to-top:focus-visible {
  outline: 2px solid var(--primary, #F35B25);
  outline-offset: 3px;
}

@media (max-width: 576px) {
  .scroll-to-top {
    bottom: 20px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
}

.mobile-menu.active i {
  transform: rotate(90deg);
}

.mobile-menu i {
  transition: transform 0.3s ease;
}
