.bundle-card__image {
  width: 192px;
  min-width: 192px;
  height: 228px;
  overflow: hidden;
}

.bundle-card__image img {
  transition: all 0.4s ease;
}

.bundle-card:hover .bundle-card__image img {
  transform: scale(1.1);
}

.bundle-card__content {
  position: absolute;
  top: 16px;
  bottom: 16px;
  right: 160px;
  left: 0;
  z-index: 1;
}

.bundle-card__title {
  max-height: 42px;
  font-weight: 700;
  line-height: 21px;
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
}

.product-card__title::after {
  content: attr(data-title);
  position: absolute;
  left: 0;
  right: 0;
  background: #fffffffc;
  padding: 4px 6px;
  font-weight: bold;
  font-size: 16px;
  color: #333;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  z-index: 10;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card__title:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .bundle-card {
    margin-bottom: 122px;
  }

  .bundle-card__image {
    width: 100%;
    min-width: 100%;
  }

  .bundle-card__content {
    left: 16px;
    right: 16px;
    top: 170px;
    bottom: auto;
  }
}