/* Wishlist Page Styles */
.wishlist-content {
  padding: 2rem 0;
  min-height: 60vh;
}

.wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.wishlist-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.wishlist-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.btn-refresh {
  background: transparent;
  border: 1px solid #007bff;
  color: #007bff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-refresh:hover {
  background: #007bff;
  color: white;
}

.btn-clear-all {
  background: transparent;
  border: 1px solid #dc3545;
  color: #dc3545;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-clear-all:hover {
  background: #dc3545;
  color: white;
}

/* Wishlist Grid */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Wishlist Item */
.wishlist-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.wishlist-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.wishlist-item-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.wishlist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wishlist-item:hover .wishlist-img {
  transform: scale(1.05);
}

.remove-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #dc3545;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  opacity: 0;
}

.wishlist-item:hover .remove-btn {
  opacity: 1;
}

.remove-btn:hover {
  background: #dc3545;
  color: white;
}

.wishlist-item-content {
  padding: 1.5rem;
}


.wishlist-item-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.wishlist-item-status {
  color: #6c757d;
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
}

.wishlist-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wishlist-item-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.wishlist-item-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-view-details {
  background: transparent;
  border: 1px solid  #e91e63;;
  color: #e91e63;;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-view-details:hover {
  background: #6c757d;
  color: white;
  text-decoration: none;
}

.btn-product {
  background:  #e91e63;;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-product:hover {
  background:#e91e63;;
}

/* Empty State */
.empty-wishlist {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-content {
  max-width: 400px;
  margin: 0 auto;
}

.empty-icon {
  font-size: 4rem;
  color: #dee2e6;
  margin-bottom: 1.5rem;
}

.empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1rem 0;
}

.empty-description {
  color: #6c757d;
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wishlist-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .wishlist-title {
    font-size: 1.5rem;
  }

  .wishlist-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .wishlist-item-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .wishlist-item-buttons {
    justify-content: center;
  }
}