.mosaic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  perspective: 1000px;
}

.flip-wrapper {
  width: 100%;
  min-width: 300px;
  height: 300px;
  position: relative;
}

.flip-wrapper-disable {
  width: 100%;
  min-width: 300px;
  height: 300px;
  position: relative;
}

.flip-inner-disable {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-wrapper:hover .flip-inner {
  transform: rotateY(180deg);
}
.mosaic-gallery-grid {
    display: flex;
    height: 100%;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
}
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}

.flip-front img,
.flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.flip-back {
  transform: rotateY(180deg);
}

.product-title {
  margin-top: 8px;
  font-weight: 500;
  text-align: center;
}
