/* ==========================================================================
   STICKY-CTA.CSS — WESPENNESTVERWIJDEREN.NL
   Mobiele sticky balk — alleen zichtbaar op mobiel
   ========================================================================== */

.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(60px + env(safe-area-inset-bottom));
    display: flex;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08), 0 -1px 3px rgba(0, 0, 0, 0.04);
    padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
    gap: 6px;
  }

  .sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-body, 'Open Sans', sans-serif);
    font-size: 14px;
    gap: 8px;
    border-radius: 10px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .sticky-cta a:active {
    transform: scale(0.97);
  }

  .sticky-cta .btn-call {
    background: linear-gradient(135deg, #FFC107 0%, #E5AC00 100%);
    color: var(--color-secondary, #1A1A2E);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.35);
  }

  .sticky-cta .btn-call:active {
    background: linear-gradient(135deg, #E5AC00 0%, #CC9900 100%);
  }

  .sticky-cta .btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  }

  .sticky-cta .btn-wa:active {
    background: linear-gradient(135deg, #128C7E 0%, #0e7a6e 100%);
  }

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