@media (max-width: 1024px) {
  #category-title {
    padding-bottom: 5px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid black;
  }
  #category-table-mobile {
    width: 100%;
  }
  #category-table-mobile img {
    max-width: 100%;
    max-height: 150px;
  }
  .product {
    border-bottom: 1px solid black;
    padding-left: 2%;
    padding-right: 2%;
  }
  .product>a {
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
  }
  .product-img {
    float: left;
    width: 30%;
    text-align: center;
  }
  .product-text {
    float: right;
    width: 67%;
    margin-left: 3%
  }
  .product-title {
    color: black;
    font-weight: bold;
    font-size: 14px;
    margin-top: .66em;
    margin-bottom: 0em;
  }
  #category-table-desktop {
    display: none;
  }
}
@media (min-width: 1025px) {
  #category-table-mobile {
    display: none;
  }
  #category-table-desktop {
    width: 100%;
  }
  #category-table-desktop td {
    font-size: 12px;
    width: 33%;
    text-align: center;
    vertical-align: top;
    position: relative;
    padding-top: 10px;
  }
  .product-overlay {
    position: absolute;
    width: 94%;
    height: 150px;
    background-color: transparent;
    color: transparent;
    z-index: 5;
    text-align: justify;
    display: block;
    padding: 5px 3%;
    opacity: 0;
  }
  .product-overlay:hover {
    text-decoration: none;
  }
  .product-overlay a {
    color: transparent;
  }
  .product-overlay:hover a {
    color: white;
  }
  #category-table-desktop img {
    height: 150px;
  }
  #category-table-desktop div {
    height: 30px;
    padding-top: 10px;
  }
}
