/**
 * Ingredient Showcase Styles
 */
.muvd-ingredient-showcase {
  width: 100%;
  margin: 40px 0;
}
.muvd-ingredient-showcase .muvd-title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.muvd-ingredient-showcase .muvd-subtitle {
  font-size: 20px;
  font-weight: normal;
  text-transform: none;
  text-align: center;
}

.muvd-ingredient-grid {
  margin-top: 50px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 526px) {
  .muvd-ingredient-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 678px) {
  .muvd-ingredient-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .muvd-ingredient-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .muvd-ingredient-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.muvd-ingredient-item {
  perspective: 1000px;
  height: 100%;
}

.muvd-ingredient-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.muvd-ingredient-item:hover .muvd-ingredient-card-inner {
  transform: rotateY(180deg);
}

.muvd-ingredient-card-front, .muvd-ingredient-card-back {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.muvd-ingredient-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.muvd-ingredient-card-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.muvd-ingredient-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}

.muvd-ingredient-image {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.muvd-ingredient-description {
  padding: 10px;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}

.muvd-ingredient-name {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}

/*# sourceMappingURL=ingredient-showcase.css.map */
