/* CSS file content */
.gallery-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.gallery-wrap-title {
  margin-bottom: 32px;
}

.gallery-wrap figure {
  --bs-aspect-ratio: calc((223 / 335) * 100%);
  height: 100%;
}

.gallery-wrap figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

@media (min-width: 500px) {
  .gallery-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .gallery-wrap-title {
    margin-bottom: 40px;
  }

  .gallery-wrap figure {
    --bs-aspect-ratio: calc((294 / 442) * 100%);
  }

  .gallery-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .gallery-wrap-title {
    margin-bottom: 50px;
  }
}

@media (min-width: 1500px) {
  .gallery-wrap-title {
    margin-bottom: 60px;
  }
}

.fs-28{
   font-size:  clamp(1.375rem, 1.2885rem + 0.3846vw, 1.75rem);
}

.product-card_title{
    text-transform: capitalize;
}
