/* Mobile-only sticky bottom CTA bar */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 82px;
  }

  /* Hide floating call bubble on mobile — replaced by sticky bar */
  .chat-bubble {
    display: none !important;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
  }

  .mobile-sticky-cta__btn {
    flex: 1;
    min-height: 48px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: 0;
  }

  .mobile-sticky-cta__btn--availability {
    background: #e8450a;
    color: #ffffff;
  }

  .mobile-sticky-cta__btn--call {
    background: #003da5;
    color: #ffffff;
  }

  .mobile-sticky-cta__btn--availability:active,
  .mobile-sticky-cta__btn--call:active {
    opacity: 0.88;
  }
}
