.tasting-card-swiper-slide {
  flex: 0 0 calc((100% - 60px) / 4);
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
}
.tasting-card-swiper-slide-top{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.tasting-card-card-image{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.tasting-card-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;      
}
.tasting-card-item-tag-price-wrapper{
  position: absolute;
  left: 140px;
  bottom: 140px;
  display: inline-block;
}
.tasting-card-item-tag-price-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
  color: var(--red-color);
  font-size: 16px;
  font-weight: bold;
  font-family: var(--font-main);
  pointer-events: none;
}
.tasting-card-item-tag-price-img {
    display: block;
    width: 100%;
    height: auto;
}
.tasting-card-hover-box  {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--red-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    color: white;
    font-family: var(--font-main);
    font-size: 16px;
  }
  .tasting-card-swiper-slide:hover .tasting-card-hover-box  {
    transform: translateY(0);
  }

