.section-pdp-sticky-atc {
  position: sticky;
  bottom: 0;
  z-index: 3;
}

.product-sticky-atc {
  transform: translateY(100%);
  transition: 0.2s;
  padding: 20px;
}

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

.product-sticky-atc hh-button-wrapper {
  width: 100%;
  max-width: 300px;
}

.product-sticky-atc hh-button-wrapper button:disabled {
  opacity: 0.7;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .product-sticky-atc .product-info {
    display: none;
  }

  .product-sticky-atc hh-button-wrapper {
    max-width: unset;
  }
}


