
    .sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: green;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: bold;
  z-index: 1;
}
.product {
  position: relative;
}
.hot-sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 3px;
  font-weight: bold;
  z-index: 1;
  text-transform: uppercase;
}
.product {
  position: relative;
}

/* Make sure icon and text are visible on hover */
.product_action_box .pr_action_btn li.add-to-cart a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white; /* White background */
    color: #333; /* Text color */
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.product_action_box .pr_action_btn li.add-to-cart a:hover {
    background-color: #f1f1f1; /* Slight hover effect if needed */
    color: #000;
}

.product_action_box .pr_action_btn li.add-to-cart i {
    margin-right: 5px; /* space between icon and text */
}

