/* GrocerPro — layout fallbacks when Tailwind CSS fails to load */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0a0f0c;
  color: #f4f7f4;
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

#page-loader.gf-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #0a0f0c;
}

.gf-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 15, 12, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body > main {
  padding-top: 4.5rem;
}

a {
  color: #4ade80;
}

.gf-site-header a[href="#top"] {
  color: #f4f7f4;
  text-decoration: none;
}

.gf-site-header nav a {
  color: #94a89e;
  text-decoration: none;
}

.gf-site-header nav a:hover {
  color: #fff;
}
