/* ============================================
   WISHLIST PAGE SPECIFIC STYLES
   ============================================ */

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.wishlist-card {
  background: var(--bs-bg-card);
  border-radius: var(--bs-border-radius);
  padding: 16px;
  box-shadow: var(--bs-box-shadow);
  position: relative;
  animation: fadeIn 0.4s ease;
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
  margin-top: 32px;
}

.wishlist-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bs-box-shadow-sm);
}

.wishlist-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(var(--bs-danger-rgb), 0.15);
  color: var(--bs-danger);
  border: none;
  font-size: 1.1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}

.wishlist-remove:hover {
  background: rgba(var(--bs-danger-rgb), 0.25);
}

.wishlist-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: var(--bs-border-radius-sm);
  margin-bottom: 14px;
  cursor: pointer;
}

.wishlist-card-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  cursor: pointer;
}

.wishlist-category {
  font-size: 0.85rem;
  color: var(--bs-text-muted);
  margin-bottom: 4px;
}

.wishlist-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 10px;
}

.wishlist-add-cart {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--bs-border-radius-pill);
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-link-hover-color));
  color: var(--bs-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  margin-top: auto;
  box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), 0.35);
}

.wishlist-add-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(var(--bs-primary-rgb), 0.45);
}

.wishlist-add-cart:disabled {
  background: rgba(var(--bs-secondary-rgb), 0.3);
  color: var(--bs-text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 600px) {
  .wishlist-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

