/* ==========================================================
   KallzStore — Design Tokens
   Palette : bg #0a0a0c | surface #141417 | surface-2 #1c1c20
             border #2a2a30 | red #e11d2e | red-glow #ff2d3a
             text #f4f4f5 | text-dim #9a9aa2
   Type    : 'Space Grotesk' (display) + 'Inter' (body/UI)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg: #0a0a0c;
  --surface: #141417;
  --surface-2: #1c1c20;
  --border: #2a2a30;
  --red: #e11d2e;
  --red-dim: #7a1019;
  --red-glow: #ff2d3a;
  --text: #f4f4f5;
  --text-dim: #9a9aa2;
  --radius: 14px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*{ box-sizing: border-box; margin:0; padding:0; }

html{ scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; text-decoration: none; }
ul{ list-style: none; }
img{ max-width: 100%; display:block; }
button{ font-family: inherit; cursor: pointer; }

.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,h2,h3,h4{ font-family: var(--font-display); letter-spacing: -0.01em; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(180deg, var(--red-glow), var(--red));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,45,58,.25), 0 8px 24px -8px rgba(225,29,46,.6);
}
.btn-primary:hover{ box-shadow: 0 0 0 1px rgba(255,45,58,.4), 0 10px 28px -6px rgba(225,29,46,.75); }

.btn-outline{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover{ border-color: var(--red); background: rgba(225,29,46,.08); }

.btn-block{ width: 100%; }

/* Focus visibility (a11y) */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline: 2px solid var(--red-glow);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}
