@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --primary-color: #6155f5;
  --secondary-color: #121212;
  --yellow-color: #ffcc00;
  --white-color: #ffffff;
}

* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  background-color: #f8f9fa;
  color: #121212;
}

/* Prevent double-tap to zoom on iOS for interactive elements */
a, button, input, [role="button"] {
  touch-action: manipulation;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

@media (max-width: 374px) {
  .service-home-text {
    font-size: 11.5px !important;
  }
}

@media (max-width: 393px) {
  .booking-card button {
    width: 74px !important;
    padding: 0 4px !important;
  }
  .booking-card h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px;
  }
}

/* Desktop Fallback Message */
/* @media (min-width: 769px) {
  body::before {
    content: "📱";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100px);
    font-size: 80px;
    z-index: 99999;
  }
  body::after {
    content: "It's a mobile app.\A Please use a mobile device to view this app.";
    white-space: pre-wrap;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20px);
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #121212;
    text-align: center;
    z-index: 99999;
    line-height: 1.5;
    width: 100%;
    padding: 0 20px;
  }
  body > * {
    display: none !important;
  }
  body {
    background-color: #F8F9FA !important;
    height: 100vh !important;
    overflow: hidden !important;
  }
} */
