
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: none;
    z-index: 10;
}
.product-card:hover .wishlist-btn {
    display: block;
}
.product-card {
    position: relative;
}
.wishlist-dropdown {
    max-height: 400px;
    overflow-y: auto;
}
#wishlistToggle:focus {
    outline: none;
    box-shadow: none;
}
.wishlist-prod-wrapprer{
    z-index: 20;
}
.wishlist-prod-btn{
    color: var(--bs-light) !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    border-radius: 0%;
    padding: 0 10px;
}
.dark-bg-card {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  overflow: hidden;
}

.dark-bg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7); 
  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px); 
  z-index: 1;
}
