.product-card-vertical {
  display: flex;
  flex-direction: column;
}
.product-card-vertical.reverse {
  flex-direction: column-reverse;
}
.product-card-vertical .product-image {
  display: block;
  width: 100%;
  overflow: hidden;
}
.product-card-vertical .product-image img,
.product-card-vertical .product-image video,
.product-card-vertical .product-image iframe {
  width: 100%;
  border-radius: var(--section-card-radius);
  object-fit: cover;
}
.product-card-vertical .product-image .second-image {
  display: none;
}
.product-card-vertical.hover_show_second_pic:hover .product-image .first-image {
  display: none;
}
.product-card-vertical.hover_show_second_pic:hover .product-image .second-image {
  display: block !important;
}
.product-card-vertical .product-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  color: var(--text-color);
}
.product-card-vertical .product-card-content .product-title {
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product-card-vertical .product-card-content .product-desc {
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.product-card-vertical .product-card-content.center {
  text-align: center;
  align-items: center;
}
.product-card-vertical .product-card-content.right {
  text-align: end;
  align-items: flex-end;
}

.product-card-vertical .product-card-content.left .button-list {
  justify-content: flex-start;
}

.product-card-vertical .product-card-content.center .button-list {
  justify-content: center;
}

.product-card-vertical .product-card-content.right .button-list {
  justify-content: flex-end;
}
