  .page-header {
      text-align: center;
      padding: 4rem 2rem 2rem;
      background: linear-gradient(to bottom, rgba(212, 175, 55, 0.08), transparent);
  }

  .page-header h1 {
      font-size: 3.8rem;
      font-weight: 800;
      letter-spacing: 3px;
      margin-bottom: 1rem;
  }

  .page-header p {
      font-size: 1.3rem;
      color: var(--muted);
      max-width: 700px;
      margin: 0 auto;
  }

  /* CATEGORIES GRID */
  .categories-container {
      max-width: 1600px;
      margin: 0 auto;
      padding: 4rem 5rem 8rem;
  }

  .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 2.5rem;
  }

  .category-card {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: var(--card);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
      transition: all 0.5s ease;
      cursor: pointer;
  }

  .category-card:hover {
      transform: translateY(-15px) scale(1.03);
      box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
  }

  .category-card img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      transition: transform 0.7s ease;
  }

  .category-card:hover img {
      transform: scale(1.12);
  }

  .category-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 30%, transparent 70%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2.5rem 2rem 2rem;
      transition: all 0.4s ease;
  }

  .category-card:hover .category-overlay {
      background: linear-gradient(to top, rgba(212, 175, 55, 0.45) 30%, transparent 70%);
  }

  .category-title {
      font-size: 2.4rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
  }

  .category-desc {
      font-size: 1.1rem;
      color: #e0e0e0;
      opacity: 0.9;
      max-width: 90%;
  }

  .category-count {
      font-size: 0.95rem;
      color: var(--primary);
      margin-top: 1rem;
      font-weight: 500;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
      .categories-container {
          padding: 3rem 2.5rem 6rem;
      }

      .page-header h1 {
          font-size: 3rem;
      }
  }

  @media (max-width: 600px) {
      .page-header {
          padding: 3rem 1.5rem 1.5rem;
      }

      .page-header h1 {
          font-size: 2.4rem;
      }

      .page-header p {
          font-size: 1.05rem;
      }

      .categories-container {
          padding: 2.5rem 1.2rem 5rem;
      }

      .categories-grid {
          gap: 2rem;
      }

      .category-card img {
          height: 380px;
      }

      .category-title {
          font-size: 2rem;
      }

      .category-desc {
          font-size: 1rem;
      }
  }