.product-card-irregular {
  position: relative;
  display: flex;
  flex-direction: column;
  clip-path: var(--g-clipath);
  transition: clip-path 1.2s cubic-bezier(.17, .67, .83, .67);
}
.product-card-irregular .product-image {
  display: block;
  width: 100%;
  overflow: hidden;
}
.product-card-irregular .product-image img,
.product-card-irregular .product-image video,
.product-card-irregular .product-image iframe {
  width: 100%;
  object-fit: cover;
}
.product-card-irregular .product-image-second {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease;
}
.product-card-irregular .product-image-second img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-irregular .product-image-second::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-card-irregular:hover {
  --g-clipath: inset(0 round 50vw 50vw 0 0);
}
.product-card-irregular:hover .product-image-second {
  opacity: 1;
  visibility: visible;
}
.product-card-irregular:hover .product-card-content {
  z-index: 2;
}
.product-card-irregular .product-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card-irregular .product-card-content .product-title {
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product-card-irregular .product-card-content .product-desc {
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product-card-irregular .product-card-content.center {
  text-align: center;
  align-items: center;
}
.product-card-irregular .product-card-content.right {
  text-align: end;
  align-items: flex-end;
}

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

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

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