.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 0 3rem;
}
@media (min-width: 46rem) {
  .product-grid {
    gap: 3rem 3rem;
  }
}
.product-grid .product-container {
  border-radius: 1rem 1rem 0 0;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.product-grid .product-container .overlay {
  display: none;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (min-width: 460px) {
  .product-grid .product-container {
    border-radius: 1rem;
    border-bottom: none;
  }
  .product-grid .product-container:hover .overlay {
    display: block;
    background-color: rgba(0, 0, 0, 0.03);
  }
  .product-grid .product-container:hover h2 {
    color: #8ac640;
  }
}
.product-grid .product-container a {
  display: block;
}
.product-grid .product-container img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
.product-grid .product-container p {
  text-align: center;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin: 0 0 1.5rem 0;
}
.product-grid .product-container h2 {
  pointer-events: none;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}
.product-grid .product-container .name {
  text-align: center;
}
.product-grid .product-container .dimensions {
  font-size: 85%;
  margin-bottom: 0;
}
.product-grid .product-container .entries {
  font-size: 85%;
}
.product-grid .product-container .description {
  font-size: 85%;
}
.product-grid .product-container .swatches {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 0 1.5rem 0;
}
.product-grid .product-container .swatches .swatch {
  display: inline-block;
  width: 2.2356rem;
  height: 2.2356rem;
}
.product-grid .product-container .swatches .swatch.grey {
  background-color: #E3E3E3;
  border: 1px solid #d6d6d6;
}
.product-grid .product-container .swatches .swatch.white {
  background-color: #FFFFFF;
  border: 1px solid #f2f2f2;
}
.product-grid .product-container .swatches .swatch.black {
  background-color: #000000;
  border: 1px solid #000000;
}
.product-grid .product-container .swatches .swatch.black-clear {
  width: 0px;
  height: 0px;
  border-top: solid #e7e7e7 1.1178rem;
  border-left: solid #e7e7e7 1.1178rem;
  border-right: solid #000000 1.1178rem;
  border-bottom: solid #000000 1.1178rem;
  background-color: #F4F4F4;
}
.product-grid .product-container .swatches .swatch.grey-clear {
  width: 0px;
  height: 0px;
  border-top: solid #e7e7e7 1.1178rem;
  border-left: solid #e7e7e7 1.1178rem;
  border-right: solid #d6d6d6 1.1178rem;
  border-bottom: solid #d6d6d6 1.1178rem;
  background-color: #F4F4F4;
}
.product-grid .product-container .swatches .swatch.white-clear {
  width: 0px;
  height: 0px;
  border-top: solid #e7e7e7 1.1178rem;
  border-left: solid #e7e7e7 1.1178rem;
  border-right: solid #f2f2f2 1.1178rem;
  border-bottom: solid #f2f2f2 1.1178rem;
  background-color: #F4F4F4;
}
