/* ═══════════════════════════════════════════════════════════════
   BladeZ — Home Page Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(220,38,38,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,83,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: var(--space-6);
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}
.hero__title span {
  color: var(--color-accent);
}
.hero__text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  max-width: 500px;
}
.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ── Featured Categories ─────────────────────────────────────── */
.category-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  padding: var(--space-6);
  background-color: var(--color-bg-card);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.category-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.category-card__icon {
  font-size: 3rem;
  position: absolute;
  top: var(--space-6); left: var(--space-6);
  opacity: 0.3;
}
.category-card__content {
  position: relative;
  z-index: 2;
}
.category-card__name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-primary);
}
.category-card__count {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ── Showcase Products ───────────────────────────────────────── */
.showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}
.showcase-header .btn { flex-shrink: 0; }

/* ── Trust Badges ────────────────────────────────────────────── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding: var(--space-10) 0;
}
.trust-item {
  text-align: center;
}
.trust-item__icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
}
.trust-item__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}
.trust-item__text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 50vh; }
}
