/*
 * WGE single product page tweaks. Loaded on is_product() only.
 */

/*
 * Hide the "There are no reviews yet." empty state.
 *
 * It is the first thing under the Reviews tab on a product nobody has reviewed,
 * which reads as a negative signal for no benefit. The review form directly
 * below it is left alone, so a customer can still write the first one.
 */
.woocommerce-noreviews {
  display: none;
}

/* --- related products --- */

.wge-related {
  margin-top: 40px;
}

.wge-related > h2 {
  font-family: bebas neue, sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  margin: 0 0 16px;
}

.wge-related ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wge-related ul.products::before,
.wge-related ul.products::after {
  content: none;
}

.wge-related ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 8px 8px 12px;
}

/*
 * style.css pins .related .woocommerce-LoopProduct-link to a 380px min-height,
 * sized for the old 4-across row. With 8 products the cards are narrower, so
 * let them size to their content instead.
 */
.wge-related .woocommerce-LoopProduct-link.woocommerce-loop-product__link {
  min-height: 0 !important;
}

.wge-related h2.woocommerce-loop-product__title {
  min-height: 0;
  font-size: 14px;
  line-height: 1.25;
  margin: 0 0 6px;
}

@media only screen and (max-width: 800px) {

  .wge-related > h2 {
    font-size: 24px;
  }

  .wge-related ul.products {
    grid-template-columns: 1fr 1fr;
  }
}
