.shop-products {
  padding: 48px;
  border-top: 1px solid #263646;
  scroll-margin-top: 24px;
}

.shop-products-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 36px;
  margin-bottom: 24px;
}

.shop-products-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.shop-products-heading > p {
  max-width: 360px;
  color: #bcc8d0;
  margin-bottom: 5px;
}

.product-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-type-grid button {
  min-height: 150px;
  padding: 22px;
  text-align: left;
  border: 1px solid #385065;
  border-radius: 10px;
  background: #101e2b;
  color: #f5f3e8;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.product-type-grid button:hover {
  border-color: #00d7ed;
  transform: translateY(-2px);
}

.product-type-grid button[aria-pressed="true"] {
  border-color: #d6ff00;
  box-shadow: inset 0 0 0 1px #d6ff00;
}

.product-type-grid button > span {
  font-family: FGT, Impact, sans-serif;
  font-size: 42px;
  line-height: 1;
  color: #00d7ed;
  margin-bottom: auto;
}

.product-type-grid button[aria-pressed="true"] > span {
  color: #d6ff00;
}

.product-type-grid strong {
  font-size: 18px;
  margin-top: 18px;
}

.product-type-grid small {
  color: #aebdc8;
  font-size: 14px;
  margin-top: 3px;
}

@media (max-width: 1000px) {
  .shop-products {
    padding: 32px 26px;
  }
}

@media (max-width: 700px) {
  .shop-products {
    padding: 30px 18px;
  }

  .shop-products-heading {
    display: block;
  }

  .shop-products-heading > p {
    margin-top: 12px;
  }

  .product-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-type-grid button {
    min-height: 135px;
    padding: 17px;
  }

  .product-type-grid button > span {
    font-size: 34px;
  }

  .product-type-grid strong {
    font-size: 16px;
  }

  .product-type-grid small {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .product-type-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-type-grid button:hover {
    transform: none;
  }
}
