/* ── SchmickZ Shared Styles ── */

:root {
  --bg:         #313338;
  --surface:    #2b2d31;
  --card:       #1e1f22;
  --border:     #3f4147;
  --accent:     #6db33f;
  --accent-dim: #4a7a2a;
  --up:         #57f287;
  --down:       #ed4245;
  --sale:       #fee75c;
  --flash:      #ed4245;
  --text:       #dbdee1;
  --text-muted: #949ba4;
  --white:      #ffffff;
  --mono:       'JetBrains Mono', monospace;
  --gold:       #FFD700;
  --silver:     #C0C0C0;
  --bronze:     #CD7F32;
  --green:      #57f287;
  --red:        #ed4245;
  --radius:     8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  min-height: 100vh;
}

/* ── HEADER ── */
header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.3);
}
.logo-wrap { display: flex; align-items: center; gap: .75rem; }
.logo-img  { height: 75px; }

/* ── NAV ── */
nav { display: flex; align-items: center; gap: 0.25rem; }
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  padding: .4rem .75rem;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
nav a:hover  { background: var(--surface); color: var(--white); }
nav a.active { background: var(--accent-dim); color: var(--white); }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--text-muted);
  font-size: .72rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}
footer a { color: var(--accent); text-decoration: none; }

/* ── MOBILE ── */
@media (max-width: 640px) {
  header {
    padding: .5rem 1rem;
    height: auto;
    flex-wrap: wrap;
    gap: .5rem;
  }
  nav { flex-wrap: nowrap; }
  nav a { font-size: .72rem; padding: .3rem .4rem; }
}