.product-actions-buttons a, .product-actions-buttons a.button, .product-actions-buttons .button, .th-woo-entry-summary .product-action-wishlist, .th-woo-entry-summary .product-action-compare {
  width: 45px;
  height: 45px;
  display: flex;
  background: rgb(var(--color-background));
  border: 0px solid rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
  margin-bottom: 0px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  /*box-shadow: 0 0 4px rgba(var(--color-foreground), 0.2);*/
}
.product-actions-buttons a.added, .th-woo-entry-summary .added-to-wishlist, .product-actions-buttons .added-to-wishlist, .th-woo-entry-summary .added-to-compare, .product-actions-buttons .added-to-compare {
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
}
.themeshawk-woo-product-list {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 15px;
  border: 1px solid #ddd;
  transition: all 0.3s ease-in-out;
}
.hover-buttons {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 20;
  display: block;
  max-width: 50px;
}
/* Default hover effect */
.themeshawk-woo-product-list:hover .hover-buttons {
  opacity: 1;
  visibility: visible;
}
/* Hover Direction: From Left */
.hover-from-left .hover-buttons {
  top: 10px;
  left: 0;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hover-from-left:hover .hover-buttons {
  transform: translateX(10px);
  left: 10px;
}
/* Hover Direction: From Right */
.hover-from-right .hover-buttons {
  top: 10px;
  right: 0;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hover-from-right:hover .hover-buttons {
  transform: translateX(20px);
  right: 30px;
}
/* Hover Direction: From Top */
.hover-from-top .hover-buttons {
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: auto;
  margin: 0 auto;
  justify-content: center;
}
.hover-from-top:hover .hover-buttons {
  transform: translateY(10px);
}
/* Hover Direction: From Bottom */
.hover-from-bottom .hover-buttons {
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: auto;
  margin: 0 auto;
  justify-content: center;
}
.hover-from-bottom:hover .hover-buttons {
  transform: translateY(10px);
  bottom: 30px;
}
.hover-buttons .button {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border: none;
  padding: 10px 15px;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 5px;
  margin: 5px;
  transition: 0.3s ease-in-out;
}
.hover-buttons .button:hover {
  background-color: rgb(var(--color-foreground));
}
.product-info {
  margin-top: 10px;
}
.product-image img {
  width: 100%;
  height: auto;
}
.hover-buttons .woocommerce-loop-product__link {
  display: none;
}
/* Mobile */
@media only screen and (max-width: 768px) {
  .product-actions-buttons a, .product-actions-buttons a.button, .product-actions-buttons .button, .th-woo-entry-summary .product-action-wishlist, .th-woo-entry-summary .product-action-compare {
    width: 30px;
    height: 30px;
    background: rgb(var(--color-background));
    border: 0px solid rgb(var(--color-foreground));
    color: rgb(var(--color-foreground));
    margin-bottom: 0px;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*box-shadow: 0 0 4px rgba(var(--color-foreground), 0.2);*/
  }
  .themeshawk-woo-product-list .hover-buttons, .themeshawk-woo-product-list:hover .hover-buttons {
    opacity: 1;
    visibility: visible;
    transform: none;
    left: auto;
    right: 10px;
    top: 5px;
  }
  .hover-from-left .hover-buttons, .hover-from-right .hover-buttons {
    top: 5px;
    gap: 5px;
  }
  .hover-from-top .hover-buttons, .hover-from-bottom .hover-buttons {
    gap: 5px;
  }
}
.spinner-icon {
  position: absolute;
}