/**
 * QSuli Mobile Sticky Add to Cart
 * Sticky przycisk ATC na mobile (single product)
 */
@media (max-width: 1024px) {
  .qs-atc-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9 !important;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .qs-atc-sticky.is-visible {
    transform: translateY(0);
    opacity: 1;
  }

  body.single-product.has-sticky-atc {
    padding-bottom: var(--qs-sticky-h, 92px);
  }

  .admin-bar .qs-atc-sticky {
    bottom: 46px;
  }
}
