.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.sticky-atc.active {
  transform: translateY(0);
}

.sticky-atc__inner {
  max-width: 1200px;
  margin: 0 auto;
}
