:root {
  color-scheme: light;
}

/* Subtle “app-like” smoothing on mobile */
html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Make tap targets feel crisp */
button, a {
  -webkit-tap-highlight-color: transparent;
}

/* Better safe-area padding helper */
.safe-bottom {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Premium-feel tweaks */
.tp-glow {
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.06),
    0 10px 30px rgba(15, 23, 42, 0.10);
}

.tp-no-scrollbar::-webkit-scrollbar { display: none; }
.tp-no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Make embedded Google map controls blend in */
.gm-style .gm-style-iw-c { padding: 0 !important; border-radius: 16px !important; }
.gm-style .gm-style-iw-d { overflow: hidden !important; }

/* Line clamp utility (Tailwind CDN doesn’t include the plugin by default) */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Prevent accidental horizontal scroll on mobile */
body { overflow-x: hidden; }

