/**
 * PhotoEZ Theme — Mobile sticky CTA bar.
 */

.pez-mobile-cta {
  display: none;
}

@media (max-width: 767px) {
  .pez-mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(17, 17, 24, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
  }

  .pez-mobile-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    text-decoration: none;
    font-family: var(--pez-font-label);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  body.pez-has-mobile-cta {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  body.pez-has-mobile-cta .pez-footer {
    padding-bottom: calc(var(--pez-space-lg) + 12px);
  }
}
