@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Space+Mono:wght@400;700&display=swap');

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

:root {
  --bg: #080808;
  --surface: #0e0e0e;
  --surface-2: #141414;
  --text-primary: #ffffff;
  --text-secondary: #666666;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.35);
  --glow: rgba(255,255,255,0.10);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea { font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 48px;
  background: var(--text-primary);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 24px var(--glow);
}

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 48px;
}

.product-grid {
  display: grid;
  gap: 16px;
}
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }

.product-grid--featured {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

section { padding: 100px 0; }

@media (max-width: 1024px) {
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .product-grid--featured { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .product-grid--3,
  .product-grid--4 { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
}
