.badge-name-product-card {
  min-height: 22px;
  border-radius: 8px !important;
  justify-content: center !important;
  align-items: center !important;
  white-space: pre-wrap !important;
  text-align: center !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  top: 16px !important;
  right: 16px !important;
}

@media (max-width: 768px) {
  .badge-name-product-card {
    top: 12px !important;
    right: 12px !important;
  }
}


/* POONE product card */
.poone-product-card {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.poone-product-card .product-item-media {
  transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.poone-product-card .poone-product-card-image-wrap {
  overflow: hidden;
}

.poone-product-card .poone-product-card-img {
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.poone-product-card .product-item-info {
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.poone-product-card .product-item-actions {
  display: flex;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  margin-top: 8px;
}

.poone-product-card .product-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid #264E36;
  background-color: #ffffff;
  color: #264E36;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.poone-product-card .product-action-btn:hover {
  background-color: #264E36;
  color: #ffffff;
}

.poone-product-card .product-action-btn:hover .icon-heart-mask {
  background-color: #ffffff;
}

.poone-product-card .product-action-wishlist {
  flex: 0 0 40px;
  width: 40px;
  min-width: 40px;
  padding: 0;
}

.poone-product-card .add-to-wishlist {
  position: static;
  right: auto;
  left: auto;
}

.poone-product-card .product-action-cart {
  flex: 1;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.poone-product-card .product-action-cart .add-to-cart-progress {
  margin-inline-start: 6px;
}

@media (min-width: 768px) {
  .poone-product-card .product-item-actions {
    margin-top: 10px;
  }

  .poone-product-card .product-action-cart {
    font-size: 12px;
  }

  .poone-product-card:hover {
    transform: translate3d(0, -4px, 0);
  }

  .poone-product-card:hover .product-item-media {
    box-shadow: 0 12px 32px rgba(38, 78, 54, 0.14);
  }

  .poone-product-card:hover .poone-product-card-img {
    transform: scale3d(1.06, 1.06, 1);
  }
}

@media (max-width: 767px) {
  .poone-product-card .product-item-actions {
    gap: 4px;
    margin-top: 6px;
  }

  .poone-product-card .product-action-btn {
    min-height: 30px;
  }

  .poone-product-card .product-action-wishlist {
    flex: 0 0 34px;
    width: 34px;
    min-width: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .poone-product-card,
  .poone-product-card .product-item-media,
  .poone-product-card .poone-product-card-img,
  .poone-product-card .product-item-info,
  .poone-product-card .product-action-btn {
    transition: none;
    transform: none;
  }

  .poone-product-card:hover .poone-product-card-img {
    transform: none;
  }
}
