/* ═══════════════════════════════════════════════════════════════
   SLOTENMAKER DANG — Google Stitch Design System Redesign
   Fonts: Inter (Display, UI, Buttons) & Source Serif 4 (Body)
   Colors: Charcoal (#333333) & Crimson (#DC143C)
   ═══════════════════════════════════════════════════════════════ */

/* --- Reset & Base Fallbacks --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background-color: #f9f9f7;
  color: #1a1c1b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* --- Material Symbols Outlined --- */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.filled {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Fallback transitions */
.transition-all {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reserve space for fixed mobile bottom nav to prevent layout shift */
@media (max-width: 767px) {
  body {
    padding-bottom: 70px;
  }
}

@media (min-width: 768px) {
  #mobile-sticky-bar {
    display: none !important;
  }
}
