.product-category-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.product-category-item-type, .product-category-item-color {
  display: -webkit-box;
  height: 2.4em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-category-item-color {
  height: auto;
  white-space: nowrap;
}
.product-category-item-model {
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-category-item-image-link {
  color: #222222;
  display: inline-block;
  min-height: 150px;
  overflow: hidden;
  position: relative;
  vertical-align: bottom;
  width: 100%;
}
.product-category-item-image {
  aspect-ratio: 1;
  display: inline-block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.product-category-item-rating {
  line-height: 2;
  overflow: hidden;
  white-space: nowrap;
}
.product-category-item-rating .fa {
  background-color: #facc14;
  height: 12px;
  margin: 0 2px;
  vertical-align: bottom;
  width: 12px;
}
.product-category-item-rating-count {
  color: #555555;
  font-size: 13px;
  line-height: 1;
  vertical-align: top;
}
.product-category-item-rating-count .fa {
  background-color: #555555;
  height: 12px;
  vertical-align: top;
  width: 12px;
}
.product-category-item-href {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-category-related-items {
  background-color: #ffffff;
  border: 2px solid #dddddd;
  border-radius: 5px 0 0 5px;
  border-right: none;
  box-shadow: -3px -3px 10px #dddddd;
  box-sizing: border-box;
  display: none;
  font-size: 10px;
  height: calc(100% + 4px);
  overflow: auto;
  padding: 3rem 0;
  position: absolute;
  right: 100%;
  top: -2px;
}
.product-category-related-items-right-border {
  border-right: 2px solid #dddddd;
  height: 100%;
  padding: 0 2rem 0 2rem;
}
.product-category-related-item {
  display: block;
  margin-bottom: .5rem;
  height: 80px;
  width: 80px;
}
.product-category-related-item-image {
  height: 80px;
  object-fit: contain;
  width: 80px;
}
.product-category-item-price-box {
  display: flex;
  flex-direction: row;
}
.product-category-item-price {
  flex: 1;
}
.product-category-item-buy {
  align-items: center;
  background-color: var(--color-main);
  border-radius: 4px;
  color: var(--color-btn);
  display: flex;
  height: 32px;
  line-height: 32px;
  padding: 3px 25px;
}
.product-category-item-buy .product-category-item-buy-btn {
  background-color: var(--color-btn);
  cursor: pointer;
  height: 16px;
  width: 16px;
}

.product-category-payment-icons {
  display: flex;
  position: relative;
}
.product-category-payment-icon {
  height: 32px;
  margin: 5px;
  width: 32px;
}

.product-category-not-in-stock {
  border: 1px solid #dddddd;
  border-radius: 4px;
  box-shadow: 3px 3px 10px #dddddd;
  box-sizing: border-box;
  font-size: 13px;
  padding: 10px;
  text-align: center;
  width: 100%;
}

@media (min-width: 1281px) {
  .product-category-items {
    padding-left: calc(132px - (100vw - 1280px) / 2);
  }
}
@media (max-width: 1280px) and (min-width: 721px) {
  .product-category-items {
    padding-left: 124px;
  }
}
@media (max-width: 720px) {
  .product-category-related-items-right-border {
    display: none;
  }
  .product-category-item hr {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .product-category-related-items-right-border {
    display: none;
  }
  .product-category-item-image-link {
    text-align: center;
  }
}