.wishlist-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.wishlist-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}



.wishlist-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


.wishlist-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.wishlist-details {
  flex: 1;
}

.wishlist-details h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #222;
}

.wishlist-actions .btn {
  margin-right: 10px;
}

.wishlist-empty {
  text-align: center;
  color: gray;
  font-size: 16px;
}

/* Wishlist Panel Base */
#wishlist-panel {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -20px);
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  padding: 20px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}

/* Active State */
#wishlist-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Inner content scroll if needed */
#wishlist-content {
  max-height: 400px;
  overflow-y: auto;
}

/* Optional: slide-in from top */
@keyframes slideDownFade {
  0% {
    opacity: 0;
    transform: translate(-50%, -30px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

#wishlist-panel.active {
  animation: slideDownFade 0.5s ease-out;
}


/* index.css or wishlist.css */
/* .wishlist-btn {
  margin-top: 10px;
  background-color: transparent;
  border: 1px solid #ff6b81;
  color: #ff6b81;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
} */
/* 
.wishlist-btn:hover {
  background-color: #ff6b81;
  color: #fff;
} */

.wishlist-btn {
  background: none;
  border: none;
  padding: 0;
  margin-left: 7px;
  font-size: 18px;
  cursor: pointer;
}

.wishlist-btn i {
  color: #000000;
  transition: color 0.3s;
}

.wishlist-btn:hover i {
  color: red;
}




