﻿

.statisticCards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 0;
  margin-top: 20px;
}

  .statisticCards .statCard {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: 1px solid var(--bs-border-color);
    padding: 0 5%;
  }

    .statisticCards .statCard:last-child {
      border-right: none;
    }

  .statisticCards .value {
    color: var(--rust-red);
    font-weight: bold;
    font-family: var(--roboto-condensed);
    line-height: 1.2;
    font-size: 1.3rem;
  }

  .statisticCards .label {
    font-family: var(--roboto-condensed);
    text-transform: uppercase;
    font-size: 0.85rem;
  }

/* Category List */

.categoryListWrap h2 {
  text-align: left;
  font-size: 1.3rem;
}

.categoryListWrap .categoryList {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

  .categoryListWrap .categoryList a {
    background: rgba(255, 255, 255, .03);
    border: 0.5px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    transition: border-color .2s;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

    .categoryListWrap .categoryList a:hover {
      border-color: rgba(232, 84, 10, .4);
    }

.categoryListWrap i {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}

  .categoryListWrap i svg {
    width: 24px;
  }

  .categoryListWrap i path[fill="none"],
  .categoryListWrap i g[fill="none"] {
    stroke: rgba(255,255,255, 0.5);
  }

  .categoryListWrap i path[stroke="none"],
  .categoryListWrap i g[stroke="none"],
  .categoryListWrap i path[fill="#fff"] {
    fill: rgba(255,255,255, 0.5);
  }

.categoryListWrap .name {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
  line-height: 1;
}

.categoryListWrap .productCount {
  line-height: 1;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .35);
}

@media (min-width: 600px) {
  .categoryListWrap .categoryList {
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  }
}

/* Creator List */

.creatorListWrap h2 {
  text-align: left;
  font-size: 1.3rem;
}

.creatorListWrap .creatorList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

  .creatorListWrap .creatorList a {
    background: rgba(255, 255, 255, .03);
    border: 0.5px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 14px;
    transition: border-color .2s;
  }

    .creatorListWrap .creatorList a:hover {
      border-color: rgba(232, 84, 10, .4);
    }

    .creatorListWrap .creatorList a .content {
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
    }

.creatorListWrap a img {
  border-radius: 50%;
}


.creatorListWrap a .name {
  color: #FFF;
  line-height: 1.2;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 3px;
}

.creatorListWrap a .subHeader {
  color: rgba(255,255,255,0.5);
  line-height: 1;
  font-size: 0.75rem;
}

.creatorListWrap .tags {
  display: inline-flex;
  gap: 5px;
}

  .creatorListWrap .tags span {
    color: rgba(255,255,255, 0.5);
    font-size: 0.65rem;
    line-height: 1;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 5px;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
  }

/* Most Used */

.mostUsedWrapper h2 {
  text-align: left;
  font-size: 1.3rem;
}

.mostUsedWrapper .mostUsedList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

  .mostUsedWrapper .mostUsedList a {
    background: rgba(255, 255, 255, .03);
    border: 0.5px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 20px;
    transition: border-color .2s;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

    .mostUsedWrapper .mostUsedList a:hover {
      border-color: rgba(232, 84, 10, .4);
    }

.mostUsedWrapper i path[fill="none"],
.mostUsedWrapper i g[fill="none"] {
  stroke: rgba(255,255,255, 0.5);
}

.mostUsedWrapper i path[stroke="none"],
.mostUsedWrapper i g[stroke="none"],
.mostUsedWrapper i path[fill="#fff"] {
  fill: rgba(255,255,255, 0.5);
}

.mostUsedWrapper i {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}

  .mostUsedWrapper i svg {
    width: 24px;
  }

.mostUsedWrapper .name {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
  line-height: 1;
}

.mostUsedWrapper .count {
  line-height: 1;
  font-size: 0.75rem;
  color: var(--rust-red);
}
