﻿
.gearProductPageWrap h2 {
  text-align: left;
  font-size: 1.3rem;
}

/* Header Section */

.gearProductPageWrap .headerSection {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

  .gearProductPageWrap .headerSection .left {
    padding: 10px;
    background-color: #FFF;
    border-radius: 10px;
    border: 0.5px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
  }

  .gearProductPageWrap .headerSection .left img {
    margin: 0 auto;
    max-height: 500px;
    width: auto;
    }

  .gearProductPageWrap .headerSection .brand {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    font-weight: bold;
    color: var(--rust-red);
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .gearProductPageWrap .headerSection .usedByCount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 84, 10, .1);
    border: 0.5px solid rgba(232, 84, 10, .3);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.9rem;
    color: var(--rust-red-bright);
    margin-bottom: 25px;
  }

  .gearProductPageWrap .headerSection .description {
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255,255,255, 0.8);
  }

  .gearProductPageWrap .headerSection h1 {
    text-align: left;
    text-transform: initial;
    margin-bottom: 10px;
  }

@media (min-width: 900px) {
  .gearProductPageWrap .headerSection {
    flex-direction: row;
    justify-content: space-between;
  }

    .gearProductPageWrap .headerSection > .left {
      flex-basis: 35%;
    }

    .gearProductPageWrap .headerSection > .right {
      flex-basis: 60%;
    }
}

/* Key Specs */

.productKeySpecs .keySpecList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

  .productKeySpecs .keySpecList .keySpec {
    background: rgba(255, 255, 255, 0.1);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 14px 12px;
  }

  .productKeySpecs .keySpecList .label {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-family: var(--roboto-condensed);
    font-size: 0.9rem;
    font-weight: 600;
  }

  .productKeySpecs .keySpecList .value {
    font-family: var(--roboto-condensed);
    font-size: 1.2rem;
    margin-top: 5px;
    color: #FFF;
  }

  @media (min-width: 600px) {

    .productKeySpecs .keySpecList {
      flex-direction: row;
      justify-content: space-between;
    }

    .productKeySpecs .keySpecList .keySpec {
      flex: 1;
    }
  }

  /* Used By Creators */

.usedByCreatorsWrap .creatorList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.usedByCreatorsWrap .creator {
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 8px;
}

  .usedByCreatorsWrap .creator:hover {
    border-color: rgba(232, 84, 10, 0.5);
    background: rgba(232, 84, 10, 0.06);
  }

  .usedByCreatorsWrap .creator .top {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
  }

.usedByCreatorsWrap .creator img {
  border-radius: 50%;
}

.usedByCreatorsWrap .creator .name {
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
}

.usedByCreatorsWrap .creator .subCount {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  line-height: 1.2;
}

  .usedByCreatorsWrap .creator .bottom {
    text-align: right;
  }

  .usedByCreatorsWrap .creator .btn {
    font-size: 0.8rem;
    padding: 2px 5px;
  }

  @media (min-width: 550px) {
    .usedByCreatorsWrap .creatorList {
      grid-template-columns: repeat(2, 1fr);
    }
  }

