﻿.gearCategoryPageHeader {
  padding-bottom: 40px;
}

  .gearCategoryPageHeader .headerTextWrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }

    .gearCategoryPageHeader .headerTextWrap h1 {
      text-align: left;
      margin-bottom: 0;
      font-size: 2rem;
      text-transform: initial;
    }

  .gearCategoryPageHeader .rteCopy {
    margin-bottom: 0;
  }

  .gearCategoryPageHeader i {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: rgba(232, 84, 10, .1);
    border: 0.5px solid rgba(232, 84, 10, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #e8540a;
  }

    .gearCategoryPageHeader i svg {
      width: 30px;
    }

    .gearCategoryPageHeader i path[fill="none"],
    .gearCategoryPageHeader i g[fill="none"] {
      stroke: var(--rust-red);
    }

    .gearCategoryPageHeader i path[stroke="none"],
    .gearCategoryPageHeader i g[stroke="none"],
    .gearCategoryPageHeader i path[fill="#fff"] {
      fill: var(--rust-red);
    }

/* Category Products */

.categoryProducts h2 {
  text-align: left;
  font-size: 1.3rem;
}


.categoryProducts .productList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.categoryProducts .product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .03);
  border: 0.5px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .2s;
  transition: 0.2s linear;
}

  .categoryProducts .product-row:hover {
    border-color: var(--rust-red);
  }

.categoryProducts .rank {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .3);
  width: 24px;
  flex-shrink: 0;
}


.categoryProducts .productList .product-img-box {
  background-color: #FFF;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255, 255, 255, .2);
  flex-shrink: 0;
}

.categoryProducts .product-img-box img {
  width: auto;
  max-width: 50px;
}

.categoryProducts .product-info {
  flex: 1;
  min-width: 0;
}

.categoryProducts .product-name {
  font-size: 0.9rem;
  margin-bottom: 5px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.categoryProducts .product-brand {
  font-size: 0.70rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1;
}

.categoryProducts .creator-avatars {
  display: flex;
  align-items: center;
}

.categoryProducts .mini-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  margin-left: -8px;
}

  .categoryProducts .mini-avatar:first-child {
    margin-left: 0;
  }

.categoryProducts .used-count {
  font-size: 12px;
  color: var(--rust-red);
  margin-left: 10px;
  white-space: nowrap;
}

.categoryProducts .mini-avatar img {
  border-radius: 50%;
}

/* Other Categories */

.otherCategoriesWrap h2 {
  text-align: left;
  font-size: 1.3rem;
}

.otherCategoriesWrap ul {
  display: inline-flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

  .otherCategoriesWrap ul li {
    padding: 0;
  }

    .otherCategoriesWrap ul li a {
      line-height: 1.3;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
      background-color: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 5px 10px;
      border-radius: 20px;
      display: block;
      transition: 0.2s linear;
    }

      .otherCategoriesWrap ul li a:hover {
        border-color: rgba(232, 84, 10, 0.5);
        background: rgba(232, 84, 10, 0.06);
      }
