/* ===============================
   CLEAN CATEGORIES PAGE
   Dark Orange Theme
   =============================== */

:root {
  --orange: #f97316;
  --orange-soft: #fb923c;
  --bg-main: #020617;
  --bg-card: #020617;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.categories-header {
  padding: 60px 0 30px;
  text-align: center;
}

.categories-header h1 {
  font-size: 42px;
  font-weight: 800;
}

.categories-header p {
  margin-top: 10px;
  color: var(--text-muted);
}

/* CATEGORY BLOCK */
.category-block {
  margin-bottom: 60px;
}

.category-block h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.category-block h2 a {
  color: var(--orange);
  text-decoration: none;
}

.category-block h2 a:hover {
  color: var(--orange-soft);
}

/* SUBCATEGORY GRID */
.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.subcategory-card {
  background: var(--bg-card);
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
  transition: all .25s ease;
}

.subcategory-card:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #020617;
  transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 768px) {
  .categories-header h1 {
    font-size: 30px;
  }
}
