.wishlist-heart {
  display: inline-block;
}
.wishlist-grid, 
.wishlist-grid * {
  font-family: 'yekanbakhR', sans-serif !important;
}
.wishlist-heart .heart-img {
  width: 24px;
  height: 24px;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.wishlist-heart .heart-img:hover {
  transform: scale(1.1);
}

/* Main wrapper */
.wishlist-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  font-family: 'yekanbakhR', sans-serif;
  margin: 30px 0;
}

@media (max-width: 1024px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wishlist-grid {
    grid-template-columns: 1fr;
  }
}

/* Each product box */
.wishlist-grid .product {
  border: 1px solid #C8C8C8;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
  transition: box-shadow 0.3s ease;
  position: relative;
}

/* Hover effect */
.wishlist-grid .product:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #B19276;
}

/* Remove add-to-cart button */
.wishlist-grid .product .button {
  display: none !important;
}

/* Product title */
.wishlist-grid .product .woocommerce-loop-product__title {
  font-family: 'yekanbakhR', sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
  color: #0B0C17;


}
.wishlist-grid .product .woocommerce-loop-product__title:hover {

    color: #B19276;

}

/* Product price */
.wishlist-grid .product .price {
  font-family: 'yekanbakhR', sans-serif;
  font-size: 14px;
  color: #3C3D45;
}

/* Product image */
.wishlist-grid .product img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Wishlist heart positioning inside product card */
//.wishlist-grid .product .wishlist-heart {
  //position: absolute;
  //top: 12px;
  //left: 12px;
 // z-index: 2;
//}




/* Force حراج! to black in all states */
.wishlist-grid .product span.onsale,
.wishlist-grid .product span.onsale:hover,
.wishlist-grid .product span.onsale:focus,
.wishlist-grid .product span.onsale:active,
.wishlist-grid .product span.onsale:visited {
  color: #000 !important;
}

/* Force نمره (rating stars) to black in all states */
.wishlist-grid .product .star-rating,
.wishlist-grid .product .star-rating:hover,
.wishlist-grid .product .star-rating:focus,
.wishlist-grid .product .star-rating:active,
.wishlist-grid .product .star-rating:visited {
  color: #000 !important;
  font-weight: normal;
}


.wishlist-grid .product .star-rating::before {
  content: "";
}
.wishlist-grid .product .star-rating::after {
  content: "";
}
.wishlist-grid .product .star-rating span {
  //display: none !important;
}
