/**
 * ProxiMatch mobile-first enhancements
 * Touch-friendly targets, spacing, and layout hints for elite UX
 */
.proximatch-mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .proximatch-mobile-only {
    display: block;
  }
  .touch-target,
  .proximatch-btn,
  button.proximatch-cta,
  a.proximatch-cta {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .proximatch-card {
    padding: 16px;
    margin-bottom: 12px;
  }
  .proximatch-nav-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  }
  .proximatch-nav-mobile a {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #374151;
  }
}
