
.products {
  background-color: var(--fourth-color);
  text-align: center;
  padding: 4em 0;
}

.products .carousel {
    margin-top: 3em;
}

.products .product-card {
  background-color: var(--third-color);
  padding: 1em;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.product-card .product-availability {
  font-size: 0.85rem;
  font-weight: 600;
}
.products .product-card h3 {
  font-family: var(--font-main);
  max-width: 50%;
  text-transform: uppercase;
}
.products .product-card .product-image {
  margin: 1em 0;
}
.products .keen-slider__slide:not(:last-child) .product-card .product-image img {
  width: 80%;
}

.visually-hidden {border: 0; clip: rect(0 0 0 0); height: 1px; width: 1px; min-height: unset; min-width: unset; margin: -1px; overflow: hidden; padding: 0; position: absolute; appearance:none; -moz-appearance:none; -webkit-appearance:none; border: 0; padding: 0; border-radius: 0; background: transparent; box-shadow: none;}
.carousel-dots { display: flex; align-items: center; justify-content: between; margin-top: 1.5em; }
.carousel-dots .carousel-dot { flex-grow: 1; height: .5em; background-color: #dddddd; border-radius: 1em; border: 0; }
.carousel-dots .carousel-dot.active { background-color: var(--main-color); }
.carousel-dots .carousel-dot:not(:first-child) { margin-left: .75em; }

.products .carousel { align-items: stretch; }


@media all and (max-width: 33em) {
  .products .product-card { padding: 1em .5em; }
  .products .product-card h3 { max-width: unset;}
}