.product-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 50px;
}
/* Card Carousel Styles Start */
.product-cards.card-carousel {
  flex-direction: row;
  overflow: auto;
  margin: 0 -10px 0 -10px;
  padding: 50px 10px 10px 10px;
  scroll-snap-type: x mandatory;
}
.product-cards.card-carousel .product-card {
  min-width: 260px;
  padding: 30px 20px 20px 20px;
  grid-gap: 5px;
  scroll-snap-align: center;
  scroll-margin: 20px;
}
.product-cards.card-carousel .product-card .card-image img {
  max-width: 200px;
  max-height: 180px;
}
.product-cards.card-carousel .product-card .card-body {
  margin-bottom: 0;
}
/* Card Carousel Styles End */
.product-cards .product-card {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr 50px;
  grid-template-areas:
    "header"
    "body"
    "image"
    "button";
  grid-gap: 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.product-cards .product-card .card-banner {
  position: absolute;
  padding: 10px 20px;
  background-color: #00A3E0;
  color: #ffffff;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 220px;
  font-weight: 500;
  text-transform: uppercase;
}
.product-cards .product-card h3.card-header {
  grid-area: header;
  margin-bottom: 0;
  font-weight: 600;
}
.product-cards .product-card .card-body {
  grid-area: body;
}
.product-cards .product-card .card-image {
  grid-area: image;
  margin: 0 auto;
}
.product-cards .product-card a.card-button {
  grid-area: button;
  padding: 10px 20px;
  background-color: transparent;
  font-weight: 500;
  color: #333333;
  border: 1px solid #333333;
  text-align: center;
  text-transform: uppercase;
}
/* Column Styling (Mobile) */
.product-cards.column_one .product-card,
.product-cards.column_two .product-card,
.product-cards.column_three .product-card,
.product-cards.column_four .product-card {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .product-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .product-cards .product-card {
    margin-bottom: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr 50px;
    grid-template-areas:
      "header"
      "body"
      "image"
      "button";
  }
  .product-cards.card-carousel,
  .product-cards.card-carousel .carousel-wrapper {
    flex-direction: row;
  }
  /* Column Styling (Desktop) */
  .product-cards.column_one .product-card {
    width: 100%;
  }
  .product-cards.column_two .product-card {
    width: 49%;
  }
  .product-cards.column_three .product-card {
    width: 32%;
  }
  .product-cards.column_four .product-card {
    width: 24%;
  }
}
@media screen and (min-width: 1200px) {
  .product-cards .product-card {
    /* width: 33%; */
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr 50px;
    grid-template-areas:
      "header header"
      "body image"
      "button button";
  }
}
/* Card Carousel Styles Nav Start*/
.carousel__navigation {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  text-align: center;
}

.carousel__navigation-list,
.carousel__navigation-item {
  display: inline-block;
}
ol.carousel__navigation-list {
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .carousel__snapper {
    animation-name: none;
  }
}

.carousel:hover .carousel__snapper,
.carousel:focus-within .carousel__snapper {
  animation-name: none;
}
.carousel__navigation-button {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #333;
  background-clip: content-box;
  border: 0.25rem solid transparent;
  border-radius: 50%;
  font-size: 0;
  transition: transform 0.1s;
}
@media screen and (min-width: 840px) {
  .carousel__navigation {
    display: none;
  }
}
@keyframes snap {
  96% {
    scroll-snap-align: center;
  }
  97% {
    scroll-snap-align: none;
  }
  99% {
    scroll-snap-align: none;
  }
  100% {
    scroll-snap-align: center;
  }
}
/* Card Carousel Styles Nav End*/