/* ===========================
   GLOBAL VARIABLES
=========================== */
:root {
  --primary: #5e17eb;
  --accent: #c6e16c;
  --bg: #0b0b10;
  --text: #f7f7ff;
  --muted: #a0a0b8;
  --danger: #ff4b6b;
}

/* ===========================
   RESET + BASE
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: radial-gradient(circle at top, #1b1235, #05040a);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 1.5rem;
}

/* ===========================
   HEADER + NAV
=========================== */
.site-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5,4,10,0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid var(--accent);
}

.nav-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

.nav-links a:hover {
  background: rgba(198,225,108,0.12);
  color: var(--accent);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f7ff9c);
  color: #111;
  font-weight: 600;
}

/* ===========================
   HERO
=========================== */
.hero {
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--accent);
}

.hero-text {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.1s, box-shadow 0.15s, background 0.15s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #8b4bff);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(198,225,108,0.5);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
}

/* ===========================
   PRODUCT GRID
=========================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: rgba(10,8,20,0.95);
  border-radius: 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-image {
  border-radius: 0.8rem;
  overflow: hidden;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(5,4,10,0.85);
  color: var(--accent);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.product-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.price {
  font-weight: 600;
}

.sold-out {
  color: var(--danger);
  font-size: 0.8rem;
}

/* =================