/* ============================================================================
   SellSeva — base element defaults + a few primitives used across cards/kits.
   Kept lightweight: sets the page background, body font, and sensible resets.
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-strong);
  margin: 0;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}

a { color: var(--text-link); text-decoration: none; }

::selection { background: var(--blue-100); color: var(--navy-900); }

/* Eyebrow / section label */
.ss-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-2xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* Numeric / money emphasis */
.ss-num { font-family: var(--font-numeric); font-feature-settings: 'tnum' 1; }

/* Thin custom scrollbar to match cool UI */
.ss-scroll::-webkit-scrollbar { width: 10px; height: 10px; }
.ss-scroll::-webkit-scrollbar-thumb {
  background: var(--slate-300); border-radius: 999px;
  border: 3px solid transparent; background-clip: padding-box;
}
.ss-scroll::-webkit-scrollbar-thumb:hover { background: var(--slate-400); }
