.bundle-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08) !important;
}
.bundle-card__image {
  width: 100% !important;
  min-width: 100% !important;
  height: 200px !important;
  overflow: hidden;
  position: relative;
}
.bundle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bundle-card:hover .bundle-card__image img {
  transform: scale(1.05);
}
.bundle-card__content {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 16px 4px 4px 4px;
}
.bundle-card__title {
  font-weight: 700;
  line-height: 1.4;
}
.rtl .bundle-card .bundle-card__content {
  left: auto;
  right: auto;
}
@media (max-width: 991px) {
  .bundle-card {
    margin-bottom: 0;
  }
  .bundle-card__image {
    width: 100% !important;
    min-width: 100% !important;
    height: 190px !important;
  }
  .bundle-card__content {
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
  }
}
