/* ==========================================================================
   STICKY-CTA.CSS — OranjeLift.nl
   Mobiele sticky balk — alleen zichtbaar op mobiel (max-width: 768px)
   ========================================================================== */

.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    display: flex;
    z-index: 999;
    transition: bottom 0.3s ease;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    gap: 8px;
    transition: opacity var(--transition-fast, 0.15s ease);
  }

  .sticky-cta a:active {
    opacity: 0.88;
  }

  .sticky-cta .btn-call {
    flex: 1.2;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  }

  .sticky-cta .btn-wa {
    background: linear-gradient(135deg, var(--color-wa) 0%, var(--color-wa-hover) 100%);
  }

  .sticky-cta svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
}
