/* Floating add to cart on mobile product pages */

@media (max-width: 1023px) {
  body.zs-pdp-on .zs-bn,
  body.zs-pdp-on nav.mobile-bottom-nav {
    display: none !important;
  }

  body.zs-pdp-on {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .zs-pdp-atc {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    background: #fff;
    border-top: 1px solid #ececec;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    font-family: "Noto Sans", Inter, sans-serif;
  }

  .zs-pdp-atc button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
  }

  .zs-pdp-atc button.is-added {
    background: #46b275;
  }

  .zs-pdp-atc button:disabled {
    background: #c4c4c4;
    cursor: not-allowed;
  }
}

@media (min-width: 1024px) {
  .zs-pdp-atc {
    display: none !important;
  }
}
